mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add mono CreateWebRequest workaround
This commit is contained in:
parent
386e63ee64
commit
ec469a7b05
18 changed files with 184 additions and 106 deletions
|
@ -69,7 +69,7 @@
|
|||
}
|
||||
|
||||
.bottomPaddedCard .cardBox {
|
||||
margin-bottom: 5px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.visualCardBox {
|
||||
|
@ -85,7 +85,7 @@
|
|||
}
|
||||
|
||||
.ui-page-theme-b .visualCardBox {
|
||||
background: rgba(45,45,45,.85);
|
||||
background: rgba(40,40,40,.85);
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
|
@ -174,7 +174,7 @@
|
|||
}
|
||||
|
||||
.visualCardBox .outerCardFooter {
|
||||
padding: 5px;
|
||||
padding: 3px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
|
@ -195,6 +195,12 @@
|
|||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.cardButtonContainer {
|
||||
text-align: right;
|
||||
float: right;
|
||||
padding: 5px 0 2px;
|
||||
}
|
||||
|
||||
.cardContent .cardFooter .cardText {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
@ -220,7 +226,6 @@
|
|||
}
|
||||
|
||||
.cardBox:not(.visualCardBox) .outerCardFooter .cardText:last-child {
|
||||
margin-bottom: 2em;
|
||||
}
|
||||
|
||||
@media all and (max-width: 600px) {
|
||||
|
|
|
@ -1367,13 +1367,6 @@ span.itemCommunityRating:not(:empty) + .userDataIcons {
|
|||
margin: 0 auto !important;
|
||||
}
|
||||
|
||||
.itemsListview .ui-li-aside {
|
||||
right: 70px;
|
||||
font-size: 13px;
|
||||
top: 35%;
|
||||
font-weight: 300 !important;
|
||||
}
|
||||
|
||||
.itemsListview .ui-li-count {
|
||||
right: 1em;
|
||||
top: 70%;
|
||||
|
@ -1409,11 +1402,20 @@ span.itemCommunityRating:not(:empty) + .userDataIcons {
|
|||
background-position: center center;
|
||||
}
|
||||
|
||||
.listViewMoreButton {
|
||||
.listViewAside {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 10%;
|
||||
padding: 15px 20px;
|
||||
}
|
||||
|
||||
.listViewAside button {
|
||||
padding: 15px 10px;
|
||||
margin: 0 !important;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.listViewMoreButton {
|
||||
padding-left: 20px !important;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
|
@ -1475,9 +1477,27 @@ span.itemCommunityRating:not(:empty) + .userDataIcons {
|
|||
color: #2ad;
|
||||
}
|
||||
|
||||
.listViewUserDataButtons {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
@media all and (min-width: 1200px) {
|
||||
|
||||
li:hover .listViewUserDataButtons {
|
||||
visibility: visible !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media all and (max-width: 1200px) {
|
||||
|
||||
.listViewUserDataButtons {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media all and (max-width: 600px) {
|
||||
|
||||
.itemsListview .ui-li-aside {
|
||||
.listViewAsideText {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue