1
0
mirror of https://github.com/koloml/furbooru-tagging-assistant.git synced 2025-12-23 23:02:58 +00:00

Added styling for active/missing tags for maintenance popup

This commit is contained in:
2024-04-04 02:36:17 +04:00
parent 599f25e003
commit e8e8ab7a59

View File

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