mirror of
https://github.com/mwalbeck/nextcloud-breeze-dark.git
synced 2024-11-10 02:07:13 +00:00
45 lines
982 B
SCSS
45 lines
982 B
SCSS
/* Radio -------------------------------------------------------------------- */
|
|
|
|
.app-radio #app-navigation #app-settings {
|
|
|
|
#volumeslider {
|
|
|
|
.ui-slider-range {
|
|
background-color: var(--color-primary-element);
|
|
}
|
|
|
|
.ui-slider-handle.ui-state-focus {
|
|
background-color: var(--color-main-background);
|
|
}
|
|
}
|
|
|
|
#playbutton {
|
|
|
|
&:hover, &:active, &:focus {
|
|
&:not(:disabled):not(.primary):not(#quota) {
|
|
border: none;
|
|
background-color: inherit;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.app-radio #app-content #app-content-files #filestable {
|
|
|
|
th, td {
|
|
border-color: var(--color-border);
|
|
}
|
|
|
|
thead th {
|
|
background-color: var(--color-main-background);
|
|
}
|
|
|
|
tbody tr {
|
|
background-color: var(--color-main-background) !important;
|
|
|
|
&:hover {
|
|
background-color: var(--color-background-hover) !important;
|
|
}
|
|
}
|
|
}
|