1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix declaration-block-trailing-semicolon (CSS)

This commit is contained in:
MrTimscampi 2020-01-19 14:49:56 +01:00
parent b2e2cf2012
commit f290604615
21 changed files with 1227 additions and 789 deletions

View file

@ -11,7 +11,7 @@
.videoOsdBottom {
bottom: 0;
left: 0;
right: 0
right: 0;
}
.osdHeader {
@ -27,11 +27,11 @@
}
.osdHeader-hidden {
opacity: 0
opacity: 0;
}
.osdHeader .headerButton:not(.headerBackButton):not(.headerCastButton) {
display: none
display: none;
}
.chapterThumbContainer {
@ -40,7 +40,7 @@
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
flex-grow: 1;
position: relative
position: relative;
}
.chapterThumb {
@ -50,20 +50,20 @@
background-repeat: no-repeat;
border: 0;
height: 20vh;
min-width: 20vh
min-width: 20vh;
}
@media all and (orientation:portrait) {
.chapterThumb {
height: 30vw;
min-width: 30vw
min-width: 30vw;
}
}
@media all and (max-height:50em) and (orientation:landscape) {
.chapterThumb {
height: 30vh;
min-width: 30vh
min-width: 30vh;
}
}
@ -74,17 +74,17 @@
right: 0;
background: rgba(0, 0, 0, .7);
padding: .25em .5em;
user-select: none
user-select: none;
}
.chapterThumbText {
padding: .25em 0;
margin: 0;
opacity: 1
opacity: 1;
}
.chapterThumbText-dim {
opacity: .6
opacity: .6;
}
.videoOsdBottom {
@ -104,17 +104,17 @@
transition: opacity 0.3s ease-out;
color: #fff;
user-select: none;
-webkit-touch-callout: none
-webkit-touch-callout: none;
}
.videoOsdBottom-hidden {
opacity: 0
opacity: 0;
}
.osdControls {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
flex-grow: 1
flex-grow: 1;
}
.videoOsdBottom .buttons {
@ -126,14 +126,14 @@
flex-wrap: wrap;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center
align-items: center;
}
.osdVolumeSliderContainer {
width: 9em;
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
flex-grow: 1
flex-grow: 1;
}
.osdMediaInfo,
@ -149,7 +149,7 @@
margin: 0 .5em 0 auto;
display: flex;
-webkit-align-items: center;
align-items: center
align-items: center;
}
.osdTimeText {
@ -157,13 +157,13 @@
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
user-select: none;
}
.osdPoster {
width: 10%;
position: relative;
margin-right: .5em
margin-right: .5em;
}
.osdPoster img {
@ -178,22 +178,22 @@
-moz-user-select: none;
-webkit-user-drag: none;
-webkit-user-select: none;
-ms-user-select: none
-ms-user-select: none;
}
.osdTitle,
.osdTitleSmall {
margin: 0 1em 0 0
margin: 0 1em 0 0;
}
.osdMediaInfo {
display: flex;
-webkit-align-items: center;
align-items: center
align-items: center;
}
.osdSecondaryMediaInfo {
padding-left: .6em !important
padding-left: .6em !important;
}
.osdTextContainer {
@ -208,13 +208,13 @@
-ms-user-select: none;
user-select: none;
margin-bottom: .7em;
padding-left: .5em
padding-left: .5em;
}
.osdMainTextContainer {
-webkit-box-align: baseline;
-webkit-align-items: baseline;
align-items: baseline
align-items: baseline;
}
.osdMediaStatus {
@ -248,7 +248,7 @@
.pageContainer {
top: 0;
position: fixed
position: fixed;
}
@media all and (max-width:30em) {
@ -257,31 +257,31 @@
.btnRewind,
.osdMediaInfo,
.osdPoster {
display: none !important
display: none !important;
}
}
@media all and (max-width:33.75em) {
.videoOsdBottom .paper-icon-button-light {
margin: 0
margin: 0;
}
}
@media all and (max-width:43em) {
.videoOsdBottom .volumeButtons,
.osdMediaStatus span {
display: none !important
display: none !important;
}
}
@media all and (max-width:50em) {
.videoOsdBottom .btnFastForward, .videoOsdBottom .btnRewind {
display: none !important
display: none !important;
}
}
@media all and (max-width:75em) {
.videoOsdBottom .endsAtText {
display: none !important
display: none !important;
}
}