2022-01-11 17:18:42 -06:00
|
|
|
* {
|
|
|
|
scrollbar-width: thin;
|
|
|
|
}
|
|
|
|
|
2018-10-23 01:13:23 +03:00
|
|
|
.skinHeader,
|
|
|
|
html {
|
|
|
|
color: #222;
|
2020-01-19 15:00:37 +01:00
|
|
|
color: rgba(0, 0, 0, 0.87);
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2019-01-02 12:27:27 -05:00
|
|
|
.wizardStartForm,
|
|
|
|
.ui-corner-all,
|
|
|
|
.ui-shadow {
|
2020-01-25 11:42:43 +01:00
|
|
|
background-color: #303030;
|
2019-01-02 12:27:27 -05:00
|
|
|
}
|
|
|
|
|
2018-10-23 01:13:23 +03:00
|
|
|
.emby-collapsible-button {
|
|
|
|
border-color: #ccc;
|
2020-01-19 15:00:37 +01:00
|
|
|
border-color: rgba(0, 0, 0, 0.158);
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.collapseContent {
|
2020-01-19 14:49:56 +01:00
|
|
|
background-color: #eaeaea;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.skinHeader-withBackground {
|
|
|
|
background-color: #303030;
|
|
|
|
color: #ccc;
|
2020-01-22 21:40:45 +01:00
|
|
|
color: rgba(255, 255, 255, 0.87);
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.osdHeader {
|
2020-01-19 14:49:56 +01:00
|
|
|
box-shadow: none !important;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2019-07-04 00:27:42 -07:00
|
|
|
.skinHeader.semiTransparent {
|
2018-10-23 01:13:23 +03:00
|
|
|
backdrop-filter: none !important;
|
2019-07-04 00:27:42 -07:00
|
|
|
background-color: rgba(0, 0, 0, 0.4);
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2020-08-26 21:29:10 +02:00
|
|
|
.layout-tv .skinHeader.semiTransparent {
|
|
|
|
background: none;
|
2022-01-20 20:10:09 +03:00
|
|
|
color: inherit;
|
2020-08-26 21:29:10 +02:00
|
|
|
}
|
|
|
|
|
2018-10-23 01:13:23 +03:00
|
|
|
.pageTitleWithDefaultLogo {
|
2020-01-19 14:49:56 +01:00
|
|
|
background-image: url(../../assets/img/banner-light.png);
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2020-08-26 19:58:21 +02:00
|
|
|
.layout-tv .pageTitleWithDefaultLogo {
|
|
|
|
background-image: url(../../assets/img/icon-transparent.png);
|
|
|
|
}
|
|
|
|
|
2018-10-23 01:13:23 +03:00
|
|
|
.backgroundContainer,
|
|
|
|
html {
|
2020-01-19 14:49:56 +01:00
|
|
|
background-color: #f2f2f2;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.backgroundContainer.withBackdrop {
|
2020-01-19 15:01:18 +01:00
|
|
|
background-color: rgba(255, 255, 255, 0.8);
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2020-04-16 15:45:32 -04:00
|
|
|
.dialog,
|
|
|
|
.nowPlayingPlaylist,
|
|
|
|
.nowPlayingContextMenu {
|
2020-01-19 14:49:56 +01:00
|
|
|
background-color: #f0f0f0;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2020-07-06 11:37:29 +01:00
|
|
|
.emby-scrollbuttons .paper-icon-button-light {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
2020-09-02 10:05:51 +01:00
|
|
|
@media (hover: hover) and (pointer: fine) {
|
2020-08-31 10:02:25 +01:00
|
|
|
.paper-icon-button-light:hover:not(:disabled) {
|
|
|
|
color: #00a4dc;
|
|
|
|
background-color: rgba(0, 164, 220, 0.2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.paper-icon-button-light:active:not(:disabled) {
|
2019-05-13 12:56:44 -07:00
|
|
|
color: #00a4dc;
|
2020-01-19 15:00:37 +01:00
|
|
|
background-color: rgba(0, 164, 220, 0.2);
|
2019-05-13 12:56:44 -07:00
|
|
|
}
|
|
|
|
|
2019-09-06 22:33:15 -07:00
|
|
|
.paper-icon-button-light.show-focus:focus {
|
2019-01-06 20:45:38 -05:00
|
|
|
color: #00a4dc;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.fab,
|
|
|
|
.raised {
|
|
|
|
background: #d8d8d8;
|
2020-01-19 14:49:56 +01:00
|
|
|
color: inherit;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.fab:focus,
|
|
|
|
.raised:focus {
|
2020-01-19 14:49:56 +01:00
|
|
|
background: #ccc;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2022-02-07 00:12:33 +03:00
|
|
|
a[data-role=button] {
|
|
|
|
background: #d8d8d8 !important;
|
|
|
|
}
|
|
|
|
|
2018-10-23 01:13:23 +03:00
|
|
|
.button-submit {
|
2019-01-06 20:45:38 -05:00
|
|
|
background: #00a4dc;
|
2020-01-19 14:49:56 +01:00
|
|
|
color: #fff;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.button-submit:focus {
|
2020-01-19 14:49:56 +01:00
|
|
|
background: #0cb0e8;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2019-09-01 18:24:56 +03:00
|
|
|
.button-delete {
|
|
|
|
background: rgb(247, 0, 0);
|
2020-01-19 15:00:37 +01:00
|
|
|
color: rgba(255, 255, 255, 0.87);
|
2019-09-01 18:24:56 +03:00
|
|
|
}
|
|
|
|
|
2018-10-23 01:13:23 +03:00
|
|
|
.checkboxLabel {
|
2020-01-19 14:49:56 +01:00
|
|
|
color: inherit;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.checkboxListLabel,
|
|
|
|
.inputLabel,
|
|
|
|
.inputLabelUnfocused,
|
|
|
|
.paperListLabel,
|
|
|
|
.textareaLabelUnfocused {
|
2020-01-19 14:49:56 +01:00
|
|
|
color: #555;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.button-link,
|
|
|
|
.inputLabelFocused,
|
|
|
|
.selectLabelFocused,
|
|
|
|
.textareaLabelFocused {
|
2020-02-29 20:17:22 +01:00
|
|
|
color: #00a4dc;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.checkboxOutline {
|
2020-01-19 14:49:56 +01:00
|
|
|
border-color: currentColor;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.paperList,
|
|
|
|
.visualCardBox {
|
2020-01-19 14:49:56 +01:00
|
|
|
background-color: #fff;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.defaultCardBackground1 {
|
2020-01-19 14:49:56 +01:00
|
|
|
background-color: #009688;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.defaultCardBackground2 {
|
2020-01-19 14:49:56 +01:00
|
|
|
background-color: #d32f2f;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.defaultCardBackground3 {
|
2020-01-19 14:49:56 +01:00
|
|
|
background-color: #0288d1;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.defaultCardBackground4 {
|
2020-01-19 14:49:56 +01:00
|
|
|
background-color: #388e3c;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.defaultCardBackground5 {
|
2020-01-19 14:49:56 +01:00
|
|
|
background-color: #f57f17;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.formDialogHeader:not(.formDialogHeader-clear) {
|
2019-01-06 20:45:38 -05:00
|
|
|
background-color: #00a4dc;
|
2020-01-19 14:49:56 +01:00
|
|
|
color: #fff;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.formDialogFooter:not(.formDialogFooter-clear) {
|
|
|
|
background-color: #f0f0f0;
|
|
|
|
border-top: 1px solid #ddd;
|
2020-01-19 15:00:37 +01:00
|
|
|
border-top: 1px solid rgba(0, 0, 0, 0.08);
|
2020-01-19 14:49:56 +01:00
|
|
|
color: inherit;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2021-09-01 00:43:44 -04:00
|
|
|
.layout-tv .formDialogFooter:not(.formDialogFooter-clear) {
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2018-10-23 01:13:23 +03:00
|
|
|
.cardText-secondary,
|
|
|
|
.fieldDescription,
|
|
|
|
.guide-programNameCaret,
|
|
|
|
.listItem .secondary,
|
|
|
|
.nowPlayingBarSecondaryText,
|
|
|
|
.programSecondaryTitle,
|
|
|
|
.secondaryText {
|
2020-01-19 14:49:56 +01:00
|
|
|
color: #888;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.actionsheetDivider {
|
|
|
|
background: #ddd;
|
2020-01-19 15:00:37 +01:00
|
|
|
background: rgba(0, 0, 0, 0.14);
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.cardFooter-vibrant .cardText-secondary {
|
|
|
|
color: inherit;
|
2020-01-19 15:00:37 +01:00
|
|
|
opacity: 0.5;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.formDialogHeader a,
|
|
|
|
.toast {
|
2020-01-19 14:49:56 +01:00
|
|
|
color: #fff;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.toast {
|
|
|
|
background: #303030;
|
2020-01-19 15:00:37 +01:00
|
|
|
color: rgba(255, 255, 255, 0.87);
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2020-04-16 19:14:40 -04:00
|
|
|
.appfooter,
|
|
|
|
.playlistSectionButton {
|
2018-10-23 01:13:23 +03:00
|
|
|
background: #282828;
|
|
|
|
color: #ccc;
|
2020-01-19 15:00:37 +01:00
|
|
|
color: rgba(255, 255, 255, 0.78);
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.nowPlayingBarSecondaryText {
|
2020-01-19 14:49:56 +01:00
|
|
|
color: #999;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.itemSelectionPanel {
|
2020-01-19 14:49:56 +01:00
|
|
|
border: 1px solid #00a4dc;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.selectionCommandsPanel {
|
2019-01-06 20:45:38 -05:00
|
|
|
background: #00a4dc;
|
2020-01-19 14:49:56 +01:00
|
|
|
color: #fff;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.upNextDialog-countdownText {
|
2020-01-19 14:49:56 +01:00
|
|
|
color: #00a4dc;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.alphaPickerButton {
|
|
|
|
color: #555;
|
2020-01-19 15:00:37 +01:00
|
|
|
color: rgba(0, 0, 0, 0.7);
|
2020-01-19 14:49:56 +01:00
|
|
|
background-color: transparent;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.alphaPickerButton-selected,
|
|
|
|
.alphaPickerButton-tv:focus {
|
2019-01-06 20:45:38 -05:00
|
|
|
background-color: #00a4dc;
|
2020-01-19 14:49:56 +01:00
|
|
|
color: #fff !important;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2020-05-10 13:36:26 +02:00
|
|
|
.detailRibbon {
|
2020-02-04 21:25:00 +01:00
|
|
|
background-color: #303030;
|
|
|
|
color: #ccc;
|
|
|
|
color: rgba(255, 255, 255, 0.87);
|
|
|
|
}
|
|
|
|
|
2020-08-26 21:29:10 +02:00
|
|
|
.layout-tv .detailRibbon {
|
|
|
|
background: none;
|
2022-01-20 20:10:09 +03:00
|
|
|
color: inherit;
|
2020-08-26 21:29:10 +02:00
|
|
|
}
|
|
|
|
|
2018-10-23 01:13:23 +03:00
|
|
|
.detailTableBodyRow-shaded:nth-child(even) {
|
2020-01-19 14:49:56 +01:00
|
|
|
background: #f8f8f8;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.listItem-border {
|
2020-07-06 11:26:40 +01:00
|
|
|
border-color: #a7a7a7 !important;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.listItem:focus {
|
2022-02-09 21:01:49 +01:00
|
|
|
background: #bbb;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listItem:hover {
|
2020-01-19 14:49:56 +01:00
|
|
|
background: #ddd;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.progressring-spiner {
|
2020-01-19 14:49:56 +01:00
|
|
|
border-color: #00a4dc;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.mediaInfoText {
|
|
|
|
color: #333;
|
2020-01-19 14:49:56 +01:00
|
|
|
background: #fff;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.emby-input,
|
|
|
|
.emby-textarea {
|
|
|
|
color: inherit;
|
|
|
|
background: #fff;
|
2020-01-27 23:08:17 +09:00
|
|
|
border: 0.16em solid rgba(0, 0, 0, 0.158);
|
|
|
|
border-radius: 0.2em;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.emby-input:focus,
|
|
|
|
.emby-textarea:focus {
|
2020-01-19 14:49:56 +01:00
|
|
|
border-color: #00a4dc;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.emby-select-withcolor {
|
|
|
|
color: inherit;
|
|
|
|
background: #fff;
|
2020-01-19 15:00:37 +01:00
|
|
|
border: 0.07em solid rgba(0, 0, 0, 0.158);
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2020-01-19 15:04:19 +01:00
|
|
|
.emby-checkbox:checked + span + .checkboxOutline,
|
2018-10-23 01:13:23 +03:00
|
|
|
.emby-select-withcolor:focus {
|
2020-01-19 14:49:56 +01:00
|
|
|
border-color: #00a4dc;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2020-01-19 15:04:19 +01:00
|
|
|
.emby-checkbox:focus + span + .checkboxOutline {
|
2019-05-16 18:23:46 -04:00
|
|
|
border-color: #000;
|
|
|
|
}
|
|
|
|
|
2020-01-19 15:04:19 +01:00
|
|
|
.emby-checkbox:checked + span + .checkboxOutline,
|
2020-01-19 14:29:41 +01:00
|
|
|
.itemProgressBarForeground {
|
2020-01-19 14:49:56 +01:00
|
|
|
background-color: #00a4dc;
|
2020-01-19 14:29:41 +01:00
|
|
|
}
|
|
|
|
|
2020-01-19 15:04:19 +01:00
|
|
|
.emby-checkbox:focus:not(:checked) + span + .checkboxOutline {
|
2019-05-16 18:23:46 -04:00
|
|
|
border-color: #00a4dc;
|
|
|
|
}
|
|
|
|
|
2020-01-19 15:04:19 +01:00
|
|
|
.emby-select-withcolor > option {
|
2018-10-23 01:13:23 +03:00
|
|
|
color: #000;
|
2020-01-19 14:49:56 +01:00
|
|
|
background: #fff;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.emby-select-tv-withcolor:focus {
|
2019-01-06 20:45:38 -05:00
|
|
|
background-color: #00a4dc;
|
2020-01-19 14:49:56 +01:00
|
|
|
color: #fff;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.itemProgressBarForeground-recording {
|
2020-01-19 14:49:56 +01:00
|
|
|
background-color: #cb272a;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.countIndicator,
|
|
|
|
.fullSyncIndicator,
|
2021-09-09 22:38:54 -04:00
|
|
|
.mediaSourceIndicator,
|
2018-10-23 01:13:23 +03:00
|
|
|
.playedIndicator {
|
2020-01-19 14:49:56 +01:00
|
|
|
background: #00a4dc;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.fullSyncIndicator {
|
2020-01-19 14:49:56 +01:00
|
|
|
color: #fff;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.mainDrawer {
|
2020-01-19 14:49:56 +01:00
|
|
|
background: #fff;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.navMenuOption:hover {
|
2020-01-19 14:49:56 +01:00
|
|
|
background: #f2f2f2;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.navMenuOption-selected {
|
2019-01-06 20:45:38 -05:00
|
|
|
background: #00a4dc !important;
|
2020-01-19 14:49:56 +01:00
|
|
|
color: #fff;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2019-09-06 22:33:15 -07:00
|
|
|
.emby-button.show-focus:focus {
|
2019-01-06 20:45:38 -05:00
|
|
|
background: #00a4dc;
|
2020-01-19 14:49:56 +01:00
|
|
|
color: #fff;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.emby-tab-button {
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.emby-tab-button-active {
|
2019-09-06 22:33:15 -07:00
|
|
|
color: #00a4dc;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2019-09-06 22:33:15 -07:00
|
|
|
.emby-tab-button.show-focus:focus {
|
|
|
|
color: #00a4dc;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2019-09-06 22:33:15 -07:00
|
|
|
.emby-tab-button:hover {
|
2019-01-06 20:45:38 -05:00
|
|
|
color: #00a4dc;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.channelPrograms,
|
|
|
|
.guide-channelHeaderCell,
|
|
|
|
.programCell {
|
2020-01-19 15:00:37 +01:00
|
|
|
border-color: rgba(0, 0, 0, 0.12);
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.programCell-sports {
|
2020-01-19 14:49:56 +01:00
|
|
|
background: #3949ab !important;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.programCell-movie {
|
2020-01-19 14:49:56 +01:00
|
|
|
background: #5e35b1 !important;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.programCell-kids {
|
2020-01-19 14:49:56 +01:00
|
|
|
background: #039be5 !important;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.programCell-news {
|
2020-01-19 14:49:56 +01:00
|
|
|
background: #43a047 !important;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.programCell-active {
|
2020-01-19 15:00:37 +01:00
|
|
|
background: rgba(0, 0, 0, 0.1) !important;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.guide-channelHeaderCell:focus,
|
|
|
|
.programCell:focus {
|
2019-01-06 20:45:38 -05:00
|
|
|
background-color: #00a4dc !important;
|
2020-01-19 14:49:56 +01:00
|
|
|
color: #fff !important;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.guide-programTextIcon {
|
|
|
|
color: #1e1e1e;
|
2020-01-19 14:49:56 +01:00
|
|
|
background: #555;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.guide-headerTimeslots {
|
2020-01-19 14:49:56 +01:00
|
|
|
color: inherit;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.guide-date-tab-button {
|
|
|
|
color: #555;
|
2020-01-19 15:00:37 +01:00
|
|
|
color: rgba(0, 0, 0, 0.54);
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.guide-date-tab-button.emby-tab-button-active,
|
|
|
|
.guide-date-tab-button:focus {
|
2020-01-19 14:49:56 +01:00
|
|
|
color: #00a4dc;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2019-09-06 22:33:15 -07:00
|
|
|
.guide-date-tab-button.show-focus:focus {
|
2019-01-06 20:45:38 -05:00
|
|
|
background-color: #00a4dc;
|
2020-01-19 14:49:56 +01:00
|
|
|
color: #fff;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.infoBanner {
|
|
|
|
color: #000;
|
|
|
|
background: #fff3a5;
|
|
|
|
padding: 1em;
|
2020-01-22 21:40:45 +01:00
|
|
|
border-radius: 0.25em;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.ratingbutton-icon-withrating {
|
2020-01-19 14:49:56 +01:00
|
|
|
color: #c33;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.downloadbutton-icon-complete,
|
|
|
|
.downloadbutton-icon-on {
|
2020-01-19 14:49:56 +01:00
|
|
|
color: #4285f4;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.playstatebutton-icon-played {
|
2020-01-19 14:49:56 +01:00
|
|
|
color: #c33;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2020-07-12 06:09:57 +09:00
|
|
|
.buttonActive {
|
2020-07-13 01:21:46 +09:00
|
|
|
color: #00a4dc !important;
|
2020-06-18 01:19:59 +02:00
|
|
|
}
|
|
|
|
|
2020-06-21 17:04:08 +02:00
|
|
|
.cardBox:not(.visualCardBox) .cardPadder {
|
2020-05-02 19:40:04 +02:00
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
2022-02-12 23:44:50 +03:00
|
|
|
.cardPadder .cardImageIcon {
|
|
|
|
color: #ddd;
|
|
|
|
}
|
|
|
|
|
2019-11-11 12:28:27 +03:00
|
|
|
.card:focus .cardBox.visualCardBox,
|
|
|
|
.card:focus .cardBox:not(.visualCardBox) .cardScalable {
|
2020-01-19 14:49:56 +01:00
|
|
|
border-color: #00a4dc !important;
|
2019-01-02 12:27:27 -05:00
|
|
|
}
|
2019-09-01 17:06:28 +03:00
|
|
|
|
2022-01-11 17:18:42 -06:00
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.layout-desktop ::-webkit-scrollbar,
|
|
|
|
.layout-tv ::-webkit-scrollbar {
|
|
|
|
width: 0.4em;
|
|
|
|
height: 0.4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:horizontal,
|
|
|
|
::-webkit-scrollbar-thumb:vertical {
|
|
|
|
border-radius: 2px;
|
|
|
|
background: center no-repeat #999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeslotHeaders-desktop::-webkit-scrollbar {
|
|
|
|
height: 0.7em;
|
|
|
|
}
|
|
|
|
|
2019-09-01 17:06:28 +03:00
|
|
|
.metadataSidebarIcon {
|
2020-01-19 14:49:56 +01:00
|
|
|
color: #00a4dc;
|
2019-09-01 17:06:28 +03:00
|
|
|
}
|