|
@@ -12,6 +12,7 @@
|
|
|
<template #icon>
|
|
|
<ui-icon
|
|
|
ctrl
|
|
|
+ :class="{active: showSearch}"
|
|
|
type="search"
|
|
|
@click="showSearch = !showSearch"
|
|
|
style="margin-right: 10px"
|
|
@@ -102,4 +103,10 @@ const fixedTagging = async (tagging: Tagging) => {
|
|
|
|
|
|
const selectTagging = ref<Tagging | null>(null)
|
|
|
useViewStack(autoSaveTaggings)
|
|
|
-</script>
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped>
|
|
|
+ .active {
|
|
|
+ color: var(--color-main-normal) !important;
|
|
|
+ }
|
|
|
+</style>
|