1
0
mirror of https://github.com/gilbN/theme.park.git synced 2024-10-27 06:12:54 +01:00

Fixed start-button var in librespeed base (#215)

* Fixed start-button var in librespeed base

* Fix organizr-dark start-button var for librespeed
This commit is contained in:
Sid 2021-06-22 21:09:44 +05:30 committed by GitHub
parent b7542d8520
commit c7578dc29c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -40,12 +40,12 @@ div.meterText:empty:before {
}
#startStopBtn {
color: #ffffff;
background: var(--button-color);
border: 0.15em solid var(--button-color);
background: var(--start-button-color);
border: 0.15em solid var(--start-button-color);
}
#startStopBtn:hover {
border: 0.15em solid var(--button-color-hover);
background: var(--button-color-hover);
border: 0.15em solid var(--start-button-color-hover);
background: var(--start-button-color-hover);
}
#startStopBtn.running {
background: #FF3030 !important;

View File

@ -16,6 +16,6 @@
:root {
--main-bg-color: #1f1f1f;
--modal-bg-color: #1b1b1b;
--button-color: #2cabe3;
--button-color-hover: rgb(44 171 227 / .8);
--start-button-color: #2cabe3;
--start-button-color-hover: rgb(44 171 227 / .8);
}