diff --git a/src/App.vue b/src/App.vue index b6dd75210b..96e475cc2e 100644 --- a/src/App.vue +++ b/src/App.vue @@ -775,6 +775,31 @@ h2 { color: $blue; } +.tags { + .tag { + background: var(--background-tag); + color: var(--text); + + a { + color: var(--text); + } + + .action { + cursor: pointer; + background: $light-grey; + color: white; + + .dark & { + background: $dark-grey; + } + + &:hover { + background: $dark-grey-lighter; + } + } + } +} + .timecode { border: 1px solid $blue; border-radius: 5px; diff --git a/src/components/lists/TaskStatusList.vue b/src/components/lists/TaskStatusList.vue index 48b7082dc4..e37034d6b5 100644 --- a/src/components/lists/TaskStatusList.vue +++ b/src/components/lists/TaskStatusList.vue @@ -28,6 +28,9 @@