custom-btn-secondary hover state

This commit is contained in:
perennial
2024-10-08 15:24:31 +11:00
parent 09652440b8
commit 77581d7b30
2 changed files with 11 additions and 0 deletions
+5
View File
@@ -12929,6 +12929,11 @@ textarea.form-control-lg {
display: none !important;
}
}
.custom-btn-secondary:hover, .custom-btn-secondary-flex:hover, .custom-btn-secondary:focus, .custom-btn-secondary-flex:focus, .custom-btn-secondary:active, .custom-btn-secondary-flex:active {
background-color: #2d2d2d !important;
color: white;
}
.custom-novel-nav {
max-height: 40vh;
}
+6
View File
@@ -137,6 +137,12 @@ $utilities: map-merge(
@extend .border-0;
@extend .py-2;
@extend .px-3;
&:hover,
&:focus,
&:active {
background-color: darken(map-get($custom-colors, charcoal-surface2), 5%) !important;
color: white; // Ensure text remains white on hover
}
}
.custom-btn-secondary-flex {