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

cloud sync updates

This commit is contained in:
Luke Pulverenti 2015-02-28 08:42:47 -05:00
parent c7aae76f72
commit af26d6f9cb
3 changed files with 24 additions and 4 deletions

View file

@ -54,10 +54,13 @@
-o-transition: 0.2s ease-out;
-ms-transition: 0.2s ease-out;
transition: 0.2s ease-out;
cursor: pointer;
position: relative;
}
.btn:not(.btnStatic), .btn-large:not(.btnStatic) {
cursor: pointer;
}
.btn-floating {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
@ -152,6 +155,14 @@
background-color: #52B54B;
}
.btnWarningAccent {
background-color: #FF6A00;
}
.btnDarkAccent {
background-color: #666;
}
.btn, .btn-large {
color: #fff !important;
font-weight: 500 !important;

View file

@ -1073,3 +1073,12 @@ h1 + .accentButton {
margin: 0;
}
}
.disabledUser {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
.disabledUserBanner {
margin: 0 0 2em;
}

View file

@ -1950,12 +1950,12 @@
if (item.CriticRating != null) {
if (item.CriticRating >= 60) {
html += '<div class="fresh rottentomatoesicon"></div>';
html += '<div class="fresh rottentomatoesicon" title="Rotten Tomatoes"></div>';
} else {
html += '<div class="rotten rottentomatoesicon"></div>';
html += '<div class="rotten rottentomatoesicon" title="Rotten Tomatoes"></div>';
}
html += '<div class="criticRating">' + item.CriticRating + '%</div>';
html += '<div class="criticRating" title="Rotten Tomatoes">' + item.CriticRating + '%</div>';
}
if (item.Metascore && metascore !== false) {