mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fixes #943 - Add web client filtering by genres, parental ratings, tags and years
This commit is contained in:
parent
31c16972b0
commit
a1535a341b
30 changed files with 592 additions and 394 deletions
|
@ -91,7 +91,7 @@
|
|||
|
||||
.visualCardBox-b {
|
||||
border-radius: 3px;
|
||||
background: #111;
|
||||
background: rgb(51, 51, 51);
|
||||
}
|
||||
|
||||
.cardScalable {
|
||||
|
@ -130,18 +130,6 @@
|
|||
right: 0;
|
||||
}
|
||||
|
||||
/*.cardContent:hover {
|
||||
-moz-box-shadow: 0 0 0 5px #38c;
|
||||
-webkit-box-shadow: 0 0 0 5px #38c;
|
||||
box-shadow: 0 0 0 5px #38c;
|
||||
}*/
|
||||
|
||||
.alternateHover:hover .cardContent {
|
||||
-moz-box-shadow: none;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.cardContent:hover .cardImage {
|
||||
opacity: .5;
|
||||
}
|
||||
|
|
|
@ -85,14 +85,6 @@
|
|||
top: 8px;
|
||||
}
|
||||
|
||||
.viewPanel {
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
.viewPanelModelOpen {
|
||||
right: 250px !important;
|
||||
}
|
||||
|
||||
.viewPanelTabs {
|
||||
margin-bottom: 2em;
|
||||
}
|
||||
|
@ -977,7 +969,7 @@ a.itemTag:hover {
|
|||
}
|
||||
|
||||
.itemSelectionPanel .ui-checkbox {
|
||||
max-width: 90px;
|
||||
max-width: 130px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
@ -1039,24 +1031,6 @@ a.itemTag:hover {
|
|||
}
|
||||
}
|
||||
|
||||
.playerSelectionPanel {
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
.playerSelectionPanel + .ui-panel-dismiss {
|
||||
right: 250px;
|
||||
}
|
||||
|
||||
@media all and (min-width: 600px) {
|
||||
.playerSelectionPanel {
|
||||
width: 300px;
|
||||
}
|
||||
|
||||
.playerSelectionPanel + .ui-panel-dismiss {
|
||||
right: 300px;
|
||||
}
|
||||
}
|
||||
|
||||
.spotlight {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
|
|
|
@ -1,12 +1,4 @@
|
|||
.notificationsFlyout {
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
.notificationsPanelModelOpen {
|
||||
right: 250px !important;
|
||||
}
|
||||
|
||||
.btnNotifications {
|
||||
.btnNotifications {
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,12 +1,4 @@
|
|||
.searchPanel {
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
.searchPanelModelOpen {
|
||||
right: 250px!important;
|
||||
}
|
||||
|
||||
.searchHints {
|
||||
.searchHints {
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
|
|
|
@ -135,11 +135,24 @@ h1 a:hover {
|
|||
-ms-overflow-style: none;
|
||||
overflow: -moz-scrollbars-none;
|
||||
}
|
||||
|
||||
.ui-panel-inner::-webkit-scrollbar {
|
||||
width: 0 !important;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.largePanel {
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
/* Make panels larger */
|
||||
.largePanelModalOpen.ui-panel-dismiss-position-right {
|
||||
right: 250px !important;
|
||||
}
|
||||
.largePanelModalOpen.ui-panel-dismiss-position-left {
|
||||
left: 250px !important;
|
||||
}
|
||||
|
||||
|
||||
pre, textarea.pre {
|
||||
display: block;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue