forked from e621ng/e621ng
[CSS] Give active buttons their own background color
Using the same color as the active links caused issues with the bloodlust theme, making the active buttons literally no different than the non-active ones.
This commit is contained in:
parent
6e3d837829
commit
4443639cac
@ -17,7 +17,7 @@ div#c-uploads {
|
||||
.toggle-button:last-child { margin-right: 0; }
|
||||
|
||||
.toggle-button.active {
|
||||
@include themable { background-color: themed("color-link-active"); }
|
||||
@include themable { background-color: themed("color-button-active"); }
|
||||
}
|
||||
|
||||
.rating-e.active {
|
||||
|
@ -21,6 +21,7 @@ $theme_bloodlust: (
|
||||
"color-link": $bloodlust-color-link,
|
||||
"color-link-hover": $bloodlust-color-link-hover,
|
||||
"color-link-active": #ffffff,
|
||||
"color-button-active": #e8c446,
|
||||
|
||||
"color-link-last-page": $bloodlust-color-text-muted,
|
||||
"color-link-last-hover": $bloodlust-color-link-hover,
|
||||
|
@ -25,6 +25,7 @@ $theme_hexagon: (
|
||||
"color-link": $hexagon-color-link,
|
||||
"color-link-hover": $hexagon-color-link-hover,
|
||||
"color-link-active": #e8c446,
|
||||
"color-button-active": #e8c446,
|
||||
|
||||
"color-link-last-page": $hexagon-color-text-muted,
|
||||
"color-link-last-hover": $hexagon-color-link-hover,
|
||||
|
@ -12,6 +12,7 @@ $theme_hotdog: (
|
||||
"color-link": #000000,
|
||||
"color-link-hover": #666666,
|
||||
"color-link-active": #ffe380,
|
||||
"color-button-active": #ffe380,
|
||||
|
||||
"color-success": darkgreen,
|
||||
"color-danger": maroon,
|
||||
|
@ -13,6 +13,7 @@ $theme_pony: (
|
||||
"color-link": #b4c7d9,
|
||||
"color-link-hover": #e9f2fa,
|
||||
"color-link-active": #e8c446,
|
||||
"color-button-active": #e8c446,
|
||||
|
||||
"color-success": darkgreen,
|
||||
"color-danger": maroon,
|
||||
|
@ -13,6 +13,7 @@ $theme_serpent: (
|
||||
"color-link": #005500,
|
||||
"color-link-hover": #3A8F3A,
|
||||
"color-link-active": #e8c446,
|
||||
"color-button-active": #e8c446,
|
||||
|
||||
"color-success": darkgreen,
|
||||
"color-danger": maroon,
|
||||
|
Loading…
Reference in New Issue
Block a user