From e8e8ab7a591fb10484abf61b6d286419a650f0c9 Mon Sep 17 00:00:00 2001 From: KoloMl Date: Thu, 4 Apr 2024 02:36:17 +0400 Subject: [PATCH] Added styling for active/missing tags for maintenance popup --- src/styles/content/listing.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/styles/content/listing.scss b/src/styles/content/listing.scss index 26de213..2131c98 100644 --- a/src/styles/content/listing.scss +++ b/src/styles/content/listing.scss @@ -55,7 +55,19 @@ } .tag { + cursor: pointer; padding: 0 6px; + user-select: none; + + &:hover { + background: colors.$tag-text; + color: colors.$tag-background; + } + + &.is-missing:not(.is-added), + &.is-present.is-removed { + opacity: 0.5; + } } }