mirror of
https://github.com/mwalbeck/nextcloud-breeze-dark.git
synced 2024-11-12 19:26:42 +00:00
51 lines
1.1 KiB
SCSS
51 lines
1.1 KiB
SCSS
/***
|
|
* @copyright Copyright (c) 2017, Magnus Walbeck <mw@mwalbeck.org>
|
|
*
|
|
* @license GNU AGPL version 3 or any later version, see COPYING file for more.
|
|
*/
|
|
|
|
/* 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;
|
|
}
|
|
}
|
|
}
|