fix ugly loading indicator

This commit is contained in:
MaZderMind 2014-12-13 01:16:26 +01:00
parent f22e26f0cb
commit 5fcd49ade5
3 changed files with 71 additions and 64 deletions

View file

@ -5603,7 +5603,6 @@ a.inverted {
opacity: 0; }
.mejs-container .mejs-subs-line.error .error {
opacity: 1; }
.mejs-container .mejs-controls {
visibility: visible !important;
height: 39px; }
@ -5632,6 +5631,8 @@ a.inverted {
left: 6px; }
.mejs-container .mejs-controls .mejs-fullscreen-button button {
background-position: -48px 0; }
.mejs-container .mejs-overlay-loading {
background: none !important; }
/* and now for medium screens: */
@media all and (min-width: 450px) and (max-width: 700px) {

File diff suppressed because one or more lines are too long

View file

@ -403,7 +403,8 @@ a.inverted {
}
}
.mejs-container .mejs-subs-line {
.mejs-container {
.mejs-subs-line {
position: absolute;
bottom: 50px;
height: 85px;
@ -428,9 +429,9 @@ a.inverted {
opacity: 0;
}
&.error .error { opacity: 1; }
}
}
.mejs-container .mejs-controls {
.mejs-controls {
$factor: 1.5;
visibility: visible !important;
@ -474,6 +475,11 @@ a.inverted {
.mejs-fullscreen-button button {
background-position: -32px * $factor 0;
}
}
.mejs-overlay-loading {
background: none !important;
}
}
/* and now for medium screens: */