1
0
mirror of https://github.com/gilbN/theme.park.git synced 2024-10-04 14:37:14 +02:00
theme.park/CSS/themes/emby/emby-base.css

699 lines
16 KiB
CSS
Raw Normal View History

2021-07-19 19:39:44 +02:00
/*TP CUSTOM */
2021-07-25 13:43:36 +02:00
h1,
h2,
h3,
h4,
h5,
h6,
.inputLabel,
label {
2021-07-19 19:39:44 +02:00
color: var(--text-hover);
}
a:not(.emby-button),
2021-07-25 13:43:36 +02:00
.cardText.cardTextCentered.cardText-first>button {
2021-07-19 19:39:44 +02:00
color: var(--link-color) !important;
}
a:hover:not(.emby-button),
2021-07-25 13:43:36 +02:00
.cardText.cardTextCentered.cardText-first>button:hover {
2021-07-19 19:39:44 +02:00
color: var(--link-color-hover) !important;
}
/*TP END*/
2021-05-24 19:56:46 +02:00
html {
color: var(--theme-text-color);
scrollbar-color: var(--scrollbar-thumb-background) transparent
}
.emby-collapsible-button {
2021-07-25 13:43:36 +02:00
border-color: var(--line-background) !important
2021-05-24 19:56:46 +02:00
}
.skinHeader-withBackground.skinHeader-withfulldrawer {
border-bottom: .08em solid var(--line-background)
}
.skinHeader-withBackground {
background: var(--header-background);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-05-24 19:56:46 +02:00
}
2021-07-25 13:43:36 +02:00
.appfooter,
.formDialogFooter:not(.formDialogFooter-clear) {
background: var(--footer-background);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-05-24 19:56:46 +02:00
}
2021-07-25 13:43:36 +02:00
2021-07-19 19:39:44 +02:00
.formDialogHeader:not(.formDialogHeader-clear) {
background: var(--modal-header-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
}
.dialog {
background: var(--modal-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
}
2021-05-24 19:56:46 +02:00
@supports (backdrop-filter: blur(1em)) or (-webkit-backdrop-filter:blur(1em)) {
.skinHeader-withBackground {
2021-07-25 13:43:36 +02:00
background: var(--header-blur-background);
2021-05-24 19:56:46 +02:00
-webkit-backdrop-filter: saturate(1.8) blur(1.5em);
backdrop-filter: saturate(1.8) blur(1.5em)
}
.appfooter-withbackdropfilter {
background: var(--footer-blur-background);
-webkit-backdrop-filter: saturate(1.8) blur(1.5em);
backdrop-filter: saturate(1.8) blur(1.5em)
}
}
.skinHeader.semiTransparent {
2021-07-25 13:43:36 +02:00
-webkit-backdrop-filter: none !important;
backdrop-filter: none !important;
background-color: rgba(0, 0, 0, .3);
background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .6)), to(rgba(0, 0, 0, 0)));
background: -webkit-linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
background: -o-linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
-webkit-box-shadow: none !important;
box-shadow: none !important;
2021-05-24 19:56:46 +02:00
border-bottom: 0;
2021-07-25 13:43:36 +02:00
color: rgba(255, 255, 255, .87)
2021-05-24 19:56:46 +02:00
}
.pageTitleWithDefaultLogo {
2021-05-24 21:06:15 +02:00
background-image: url(https://theme-park.dev/Resources/emby/logowhite.png)
2021-05-24 19:56:46 +02:00
}
2021-07-25 13:43:36 +02:00
.backgroundContainer,
html {
background: var(--theme-background);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-05-24 19:56:46 +02:00
}
.backgroundContainer.withBackdrop {
2021-07-25 13:43:36 +02:00
background-color: rgba(0, 0, 0, .83)
2021-05-24 19:56:46 +02:00
}
@media not all and (min-width: 50em) {
.itemBackgroundContainer.withBackdrop {
2021-07-25 13:43:36 +02:00
background: var(--theme-background);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-05-24 19:56:46 +02:00
}
}
2021-07-25 13:43:36 +02:00
.paper-icon-button-light-tv:focus,
.paper-icon-button-light:active {
2021-07-19 19:39:44 +02:00
color: rgb(var(--theme-primary-color));
2021-05-24 19:56:46 +02:00
background-color: var(--theme-icon-focus-background)
}
@media(hover: hover) and (pointer:fine) {
.paper-icon-button-light:focus {
2021-07-25 13:43:36 +02:00
color: rgb(var(--theme-primary-color));
2021-05-24 19:56:46 +02:00
background-color: var(--theme-icon-focus-background)
}
}
2021-07-25 13:43:36 +02:00
.detailButton-icon,
.fab,
.raised {
2021-07-19 19:39:44 +02:00
background: var(--button-color);
color: var(--button-text);
2021-05-24 19:56:46 +02:00
}
.detailButton-icon {
2021-07-25 13:43:36 +02:00
border-color: rgba(255, 255, 255, .3)
2021-05-24 19:56:46 +02:00
}
.emby-select-withcolor {
color: inherit;
2021-07-19 19:39:44 +02:00
background: rgba(0, 0, 0, 0.25);
2021-05-24 19:56:46 +02:00
border: var(--line-size) solid transparent
}
.toast {
background: var(--button-background);
color: var(--theme-text-color)
}
@supports (backdrop-filter: blur(1em)) or (-webkit-backdrop-filter:blur(1em)) {
2021-07-25 13:43:36 +02:00
.detailButton-icon,
.emby-select-withcolor.detailTrackSelect,
.fab,
.raised:not(.nobackdropfilter) {
background: rgba(85, 85, 85, .3);
2021-05-24 19:56:46 +02:00
-webkit-backdrop-filter: saturate(1.8) blur(1.5em);
backdrop-filter: saturate(1.8) blur(1.5em)
}
2021-07-25 13:43:36 +02:00
.dialog-blur,
.toast {
2021-05-24 19:56:46 +02:00
color: #fff;
2021-07-25 13:43:36 +02:00
background: rgba(56, 56, 56, .76);
2021-05-24 19:56:46 +02:00
-webkit-backdrop-filter: blur(2.5em) saturate(1.8);
backdrop-filter: blur(2.5em) saturate(1.8);
2021-07-25 13:43:36 +02:00
-webkit-box-shadow: none !important;
box-shadow: none !important
2021-05-24 19:56:46 +02:00
}
.toast-large {
2021-07-25 13:43:36 +02:00
color: rgba(255, 255, 255, .87)
2021-05-24 19:56:46 +02:00
}
}
2021-07-25 13:43:36 +02:00
.fab:focus,
.raised:focus {
2021-07-19 19:39:44 +02:00
background: var(--button-color-hover);
color: var(--button-text-hover);
2021-05-24 19:56:46 +02:00
}
.button-submit:not(.emby-button-tv) {
2021-07-19 19:39:44 +02:00
background: var(--button-color);
color: var(--button-text)
2021-05-24 19:56:46 +02:00
}
2021-07-22 18:34:37 +02:00
.button-submit:not(.emby-button-tv):focus,
.button-submit:not(.emby-button-tv):hover {
2021-07-19 19:39:44 +02:00
background: var(--button-color-hover);
color: var(--button-text-hover)
2021-05-24 19:56:46 +02:00
}
.emby-select-withcolor>option {
color: inherit;
background: var(--button-background)
}
.emby-select-withcolor:focus {
2021-07-25 13:43:36 +02:00
border-color: rgb(var(--theme-primary-color)) !important
2021-05-24 19:56:46 +02:00
}
.emby-select-tv-withcolor:focus {
2021-07-25 13:43:36 +02:00
background-color: rgb(var(--theme-primary-color)) !important;
color: #fff !important
2021-05-24 19:56:46 +02:00
}
.checkboxLabel {
color: inherit
}
.emby-checkbox-focusring:focus:before {
background-color: var(--theme-icon-focus-background)
}
2021-07-25 13:43:36 +02:00
.inputLabelFocused,
.selectLabelFocused,
.textareaLabelFocused {
2021-07-19 19:39:44 +02:00
color: rgb(var(--accent-color))
2021-05-24 19:56:46 +02:00
}
.button-link {
2021-07-19 19:39:44 +02:00
color: var(--link-color)
2021-05-24 19:56:46 +02:00
}
.button-flat-accent {
2021-07-19 19:39:44 +02:00
color: rgb(var(--accent-color))
2021-05-24 19:56:46 +02:00
}
2021-07-25 13:43:36 +02:00
.paperList,
.visualCardBox {
2021-05-24 19:56:46 +02:00
background-color: var(--card-background)
}
.collapseContent {
border: var(--line-size) solid var(--line-background)
}
2021-07-25 13:43:36 +02:00
.fieldDescription,
.listItemBodyText-secondary,
.secondaryText {
2021-05-24 19:56:46 +02:00
color: var(--theme-body-secondary-text-color)
}
2021-07-25 13:43:36 +02:00
2021-07-19 19:39:44 +02:00
.cardText-secondary {
color: var(--text)
}
2021-07-25 13:43:36 +02:00
2021-05-24 19:56:46 +02:00
.cardText-first {
color: var(--theme-text-color-opaque)
}
.actionsheetDivider {
background: var(--line-background)
}
@media(hover: hover) and (pointer:fine) {
.actionSheetMenuItem:hover {
2021-07-25 13:43:36 +02:00
background-color: rgba(255, 255, 255, .2)
2021-05-24 19:56:46 +02:00
}
}
.selectionCommandsPanel {
2021-07-19 19:39:44 +02:00
background: rgb(var(--theme-primary-color));
color: var(--label-text-color);
}
2021-07-25 13:43:36 +02:00
2021-07-19 19:39:44 +02:00
.itemSelectionCount {
2021-07-25 13:43:36 +02:00
color: var(--label-text-color) !important;
2021-07-19 19:39:44 +02:00
2021-05-24 19:56:46 +02:00
}
.upNextDialog-countdownText {
2021-07-19 19:39:44 +02:00
color: rgb(var(--theme-primary-color))
2021-05-24 19:56:46 +02:00
}
.alphaPickerButton {
color: var(--theme-body-secondary-text-color);
background-color: transparent
}
.alphaPickerButton-selected {
color: var(--theme-text-color-opaque)
}
.alphaPickerButton-tv:focus {
2021-07-19 19:39:44 +02:00
background-color: rgb(var(--theme-primary-color));
2021-07-25 13:43:36 +02:00
color: #fff !important
2021-05-24 19:56:46 +02:00
}
.detailTableBodyRow-shaded:nth-child(even) {
background: #1c1c1c;
2021-07-25 13:43:36 +02:00
background: rgba(30, 30, 30, .9)
2021-05-24 19:56:46 +02:00
}
.listItem-border {
2021-07-25 13:43:36 +02:00
border-color: var(--line-background) !important
2021-05-24 19:56:46 +02:00
}
.listItem-focusscale:focus {
2021-07-25 13:43:36 +02:00
background: rgba(54, 54, 54, .8)
2021-05-24 19:56:46 +02:00
}
.progressring-spiner {
2021-07-19 19:39:44 +02:00
border-color: rgb(var(--theme-primary-color))
2021-05-24 19:56:46 +02:00
}
.mediaInfoText {
background: var(--button-background)
}
.starIcon {
color: #cb272a
}
.mediaInfoTimerIcon {
color: #cb272a
}
2021-07-25 13:43:36 +02:00
.emby-input,
.emby-textarea {
2021-05-24 19:56:46 +02:00
color: inherit;
2021-07-19 19:39:44 +02:00
background: rgb(0 0 0 / 25%);
border: var(--line-size) solid rgba(255, 255, 255, 0.1)
2021-05-24 19:56:46 +02:00
}
2021-07-25 13:43:36 +02:00
.emby-input:focus,
.emby-textarea:focus {
2021-07-19 19:39:44 +02:00
border-color: rgb(var(--theme-primary-color))
2021-05-24 19:56:46 +02:00
}
.emby-checkbox:checked+span:before {
border-color: currentColor
}
.emby-checkbox:checked+span:before {
2021-07-19 19:39:44 +02:00
border-color: rgb(var(--theme-primary-color)) !important;
background-color: rgb(var(--theme-primary-color)) !important;
2021-07-25 13:43:36 +02:00
2021-07-19 19:39:44 +02:00
}
2021-07-25 13:43:36 +02:00
2021-07-19 19:39:44 +02:00
.checkboxLabel::after {
color: var(--label-text-color);
2021-05-24 19:56:46 +02:00
}
.itemProgressBarForeground {
2021-07-19 19:39:44 +02:00
background-color: rgb(var(--theme-primary-color))
2021-05-24 19:56:46 +02:00
}
.itemProgressBarForeground-recording {
background-color: #cb272a
}
.countIndicator {
2021-07-19 19:39:44 +02:00
background: rgb(var(--theme-primary-color));
color: var(--label-text-color);
2021-05-24 19:56:46 +02:00
}
.playedIndicator {
2021-07-19 19:39:44 +02:00
background: rgb(var(--theme-primary-color))
2021-05-24 19:56:46 +02:00
}
.mainDrawer {
background: var(--drawer-background)
}
.drawer-docked {
background: var(--docked-drawer-background);
border-right: var(--line-size) solid var(--line-background)
}
@media(hover: hover) and (pointer:fine) {
.navMenuOption:hover {
2021-07-25 13:43:36 +02:00
background: #303030
2021-05-24 19:56:46 +02:00
}
}
.navMenuOption-selected {
2021-07-25 13:43:36 +02:00
background-color: var(--theme-icon-focus-background) !important;
2021-07-19 19:39:44 +02:00
color: rgb(var(--accent-color))
2021-05-24 19:56:46 +02:00
}
2021-07-25 13:43:36 +02:00
.emby-button-focusscale:focus,
.emby-button-focusscale:focus .detailButton-icon {
2021-07-19 19:39:44 +02:00
background: rgb(var(--theme-primary-color));
2021-05-24 19:56:46 +02:00
color: #fff
}
.emby-tab-button {
color: var(--theme-body-secondary-text-color)
}
.emby-tab-button-active {
2021-07-19 19:39:44 +02:00
color: rgb(var(--accent-color))
2021-05-24 19:56:46 +02:00
}
.emby-tab-button-active.emby-button-tv {
color: var(--theme-text-color-opaque)
}
.emby-tab-button.emby-button-tv:focus {
2021-07-19 19:39:44 +02:00
color: rgb(var(--accent-color));
2021-05-24 19:56:46 +02:00
background: 0 0
}
.emby-button {
2021-07-19 19:39:44 +02:00
outline-color: rgb(var(--theme-primary-color))
2021-05-24 19:56:46 +02:00
}
2021-07-25 13:43:36 +02:00
.channelCell,
.guide-headerTimeslots,
.timeslotHeaders {
background: var(--theme-background);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-05-24 19:56:46 +02:00
}
@media (pointer: coarse) {
.channelCell-mobilefocus {
2021-07-25 13:43:36 +02:00
background: var(--theme-background) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-05-24 19:56:46 +02:00
}
}
.channelCell-mobilefocus:not(:focus-visible) {
2021-07-25 13:43:36 +02:00
background: var(--theme-background) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-05-24 19:56:46 +02:00
}
.channelCell-mobilefocus:not(:-moz-focusring) {
2021-07-25 13:43:36 +02:00
background: var(--theme-background) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-05-24 19:56:46 +02:00
}
2021-07-25 13:43:36 +02:00
.channelCell,
.epgRow,
.programCell {
border-color: rgba(255, 255, 255, .05)
2021-05-24 19:56:46 +02:00
}
.guide-currentTimeIndicatorDot {
border-right-color: var(--theme-icon-focus-background)
}
.guide-currentTimeIndicatorDot:after {
2021-07-19 19:39:44 +02:00
border-top-color: rgb(var(--theme-primary-color))
2021-05-24 19:56:46 +02:00
}
.firstChannelCell {
border-color: transparent
}
.programCell-sports {
2021-07-25 13:43:36 +02:00
background: #3949ab !important
2021-05-24 19:56:46 +02:00
}
.programCell-movie {
2021-07-25 13:43:36 +02:00
background: #5e35b1 !important
2021-05-24 19:56:46 +02:00
}
.programCell-kids {
2021-07-25 13:43:36 +02:00
background: #039be5 !important
2021-05-24 19:56:46 +02:00
}
.programCell-news {
2021-07-25 13:43:36 +02:00
background: #43a047 !important
2021-05-24 19:56:46 +02:00
}
2021-07-25 13:43:36 +02:00
.channelCell:focus,
.programCell:focus {
2021-07-19 19:39:44 +02:00
background-color: rgb(var(--theme-primary-color));
2021-05-24 19:56:46 +02:00
color: #fff
}
.guide-programTextIcon {
color: #1e1e1e;
background: #555
}
.infoBanner {
background: var(--card-background);
padding: 1em;
-webkit-border-radius: .3em;
border-radius: .3em
}
.ratingbutton-icon-withrating {
2021-07-25 13:43:36 +02:00
color: #c33 !important
2021-05-24 19:56:46 +02:00
}
.downloadbutton-icon-on {
color: #4285f4
}
.downloadbutton-icon-complete {
color: #4285f4
}
.playstatebutton-icon-played {
2021-07-25 13:43:36 +02:00
color: #c33 !important
2021-05-24 19:56:46 +02:00
}
.repeatButton-active {
color: #4285f4
}
.card:focus .card-focuscontent {
2021-07-19 19:39:44 +02:00
border-color: rgb(var(--theme-primary-color))
2021-05-24 19:56:46 +02:00
}
.cardContent-button {
background-color: transparent
}
.cardContent-shadow {
background-color: var(--card-background)
}
.defaultCardBackground0 {
background-color: var(--card-background)
}
.defaultCardBackground1 {
background-color: #d2b019
}
.defaultCardBackground2 {
background-color: #338abb
}
.defaultCardBackground3 {
background-color: #6b689d
}
.defaultCardBackground4 {
background-color: #dd452b
}
.defaultCardBackground5 {
background-color: #5ccea9
}
.cardOverlayButtonIcon {
2021-07-19 19:39:44 +02:00
background-color: rgb(var(--theme-primary-color))
}
2021-07-25 13:43:36 +02:00
.cardScalable.cardPadder-portrait>div>button>i {
2021-07-19 19:39:44 +02:00
color: var(--label-text-color) !important;
2021-05-24 19:56:46 +02:00
}
::-webkit-scrollbar-track-piece {
background-color: transparent
}
::-webkit-scrollbar-thumb {
background: var(--scrollbar-thumb-background)
}
.emby-slider-background {
background: var(--scrollbar-thumb-background)
}
.emby-slider {
2021-07-19 19:39:44 +02:00
color: rgb(var(--theme-primary-color))
2021-05-24 19:56:46 +02:00
}
.emby-slider::-moz-range-track {
background: #444
}
.emby-slider::-moz-range-progress {
2021-07-19 19:39:44 +02:00
background: rgb(var(--theme-primary-color))
2021-05-24 19:56:46 +02:00
}
.emby-slider::-webkit-slider-thumb {
2021-07-19 19:39:44 +02:00
background: rgb(var(--theme-primary-color))
2021-05-24 19:56:46 +02:00
}
.emby-slider::-moz-range-thumb {
2021-07-19 19:39:44 +02:00
background: rgb(var(--theme-primary-color))
2021-05-24 19:56:46 +02:00
}
.emby-slider::-ms-thumb {
2021-07-19 19:39:44 +02:00
background: rgb(var(--theme-primary-color))
2021-05-24 19:56:46 +02:00
}
.emby-slider-background-lower {
2021-07-19 19:39:44 +02:00
background-color: rgb(var(--theme-primary-color))
2021-05-24 19:56:46 +02:00
}
.scrollbuttoncontainer {
color: #fff;
2021-07-25 13:43:36 +02:00
background: rgba(20, 20, 20, .5)
2021-05-24 19:56:46 +02:00
}
.recordingIcon-active {
2021-07-25 13:43:36 +02:00
color: #c33 !important
2021-05-24 19:56:46 +02:00
}
.drawerLogo {
2021-05-24 21:06:15 +02:00
background-image: url(https://theme-park.dev/Resources/emby/logowhite.png);
2021-05-24 19:56:46 +02:00
border-bottom-color: var(--line-background)
}
.searchTabsContainer {
border-bottom: var(--line-size) solid var(--line-background)
}
.emby-search-tab-button.emby-tab-button-active {
2021-07-25 13:43:36 +02:00
background: rgb(var(--accent-color)) !important
2021-05-24 19:56:46 +02:00
}
.textActionButton.dragging {
2021-07-25 13:43:36 +02:00
background: var(--button-background) !important
2021-05-24 19:56:46 +02:00
}
.dragging-over.full-drop-target {
2021-07-25 13:43:36 +02:00
background: rgb(var(--theme-primary-color)) !important;
color: #fff !important
2021-05-24 19:56:46 +02:00
}
.dragging-over-top:before {
2021-07-19 19:39:44 +02:00
background: rgb(var(--accent-color))
2021-05-24 19:56:46 +02:00
}
.dragging-over-bottom:after {
2021-07-19 19:39:44 +02:00
background: rgb(var(--accent-color))
2021-05-24 19:56:46 +02:00
}
2021-05-24 21:06:15 +02:00
@media (hover: hover) and (pointer: fine) {
2021-07-19 19:39:44 +02:00
.navMenuOption:hover:not(.navMenuOption-selected) {
background: 0 !important;
color: var(--accent-color-hover);
}
2021-07-25 13:43:36 +02:00
}
.mainDrawer {
background: var(--header-blur-background);
-webkit-backdrop-filter: saturate(1.8) blur(1.5em);
backdrop-filter: saturate(1.8) blur(1.5em);
}
.jstree-default .jstree-clicked {
background: rgb(var(--accent-color));
-webkit-border-radius: 2px;
border-radius: 2px;
color: var(--label-text-color) !important;
}