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

Renaming booru colors to vars, adding several new variables

This commit is contained in:
2025-02-16 03:17:32 +04:00
parent a99e4d286a
commit ff79e0b7fc
2 changed files with 7 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
$background-color: var(--background-color);
$media-border: var(--media-border);
$media-box-color: var(--media-box-color);
// These variables are defined dynamically based on the category of the tag
$resolved-tag-background: var(--tag-background);
$resolved-tag-border: var(--tag-border);

View File

@@ -1,5 +1,5 @@
@use '$styles/colors';
@use '$styles/booru-colors';
@use '$styles/booru-vars';
// This will fix wierd misplacing of the modified media boxes in the listing.
.js-resizable-media-container {
@@ -67,8 +67,8 @@
user-select: none;
&:hover {
background: booru-colors.$resolved-tag-color;
color: booru-colors.$resolved-tag-background;
background: booru-vars.$resolved-tag-color;
color: booru-vars.$resolved-tag-background;
}
&.is-missing:not(.is-added),