light theme primary button bg

This commit is contained in:
Martti Malmi 2024-01-12 15:13:41 +02:00
parent 775ee6423f
commit a9405388c0

View File

@ -102,6 +102,7 @@ html.light {
--bg-secondary: #f5f5f5;
--sub-bg: #fff;
--btn-color: #fff;
--primary-bg: #ff3f15;
}
body {
@ -264,7 +265,7 @@ button.primary {
}
button.primary:hover {
box-shadow: 0px 0px 10px #ff3f15 !important;
box-shadow: 0px 0px 10px var(--primary-bg) !important;
background: var(--primary-bg) !important;
}
@ -898,11 +899,20 @@ svg.repeat {
border: 1px solid var(--border-color);
box-shadow: rgba(0, 0, 0, 0.08) 0 1px 1px;
}
.light button.primary {
background: var(--primary-bg);
color: #fff;
border: none;
box-shadow: rgba(0, 0, 0, 0.08) 0 1px 1px;
}
.light button:hover,
.light button.secondary:hover {
box-shadow: rgba(0, 0, 0, 0.2) 0 1px 3px !important;
}
.light button.primary:hover {
box-shadow: 0px 0px 10px var(--primary-bg) !important;
}
.light .modal button.secondary:hover {
background: #fff !important;