Browse Source

Added blurred sidemenu on Plex

pull/292/head
GilbN 3 years ago
parent
commit
0ef0e54c3c
  1. 11
      css/base/plex/plex-base.css

11
css/base/plex/plex-base.css

@ -155,7 +155,7 @@ html body,
}
[class*="SourceSidebar-expandedSidebar-"][class*="SourceSidebar-sidebar-"] {
background: var(--modal-bg-color) !important;
background: var(--modal-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
@ -165,6 +165,15 @@ html body,
-o-background-size: auto, cover;
}
@supports (backdrop-filter: blur(1em)) or (-webkit-backdrop-filter:blur(1em)) {
[class*="SourceSidebar-expandedSidebar-"][class*="SourceSidebar-sidebar-"] {
background: var(--header-blur-background);
-webkit-backdrop-filter: saturate(1.8) blur(1.5em);
backdrop-filter: saturate(1.8) blur(1.5em);
background-color: rgba(0, 0, 0, .5);
}
}
[class*="DisclosureArrow-isSelected-"] {
border-color: rgb(var(--accent-color));
}

Loading…
Cancel
Save