bill %!s(int64=3) %!d(string=hai) anos
pai
achega
5ec7294e7b
Modificáronse 1 ficheiros con 8 adicións e 1 borrados
  1. 8 1
      src/views/tagging/index.vue

+ 8 - 1
src/views/tagging/index.vue

@@ -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>