1
0
mirror of https://github.com/gilbN/theme.park.git synced 2024-08-18 16:09:36 +02:00

Added blurred sidemenu on Plex

This commit is contained in:
GilbN 2021-11-13 11:38:52 +01:00
parent dfee8c3333
commit 0ef0e54c3c

View File

@ -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));
}