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:
parent
c7aae76f72
commit
af26d6f9cb
3 changed files with 24 additions and 4 deletions
13
dashboard-ui/css/materialize.css
vendored
13
dashboard-ui/css/materialize.css
vendored
|
@ -54,10 +54,13 @@
|
||||||
-o-transition: 0.2s ease-out;
|
-o-transition: 0.2s ease-out;
|
||||||
-ms-transition: 0.2s ease-out;
|
-ms-transition: 0.2s ease-out;
|
||||||
transition: 0.2s ease-out;
|
transition: 0.2s ease-out;
|
||||||
cursor: pointer;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn:not(.btnStatic), .btn-large:not(.btnStatic) {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
.btn-floating {
|
.btn-floating {
|
||||||
-webkit-border-radius: 2px;
|
-webkit-border-radius: 2px;
|
||||||
-moz-border-radius: 2px;
|
-moz-border-radius: 2px;
|
||||||
|
@ -152,6 +155,14 @@
|
||||||
background-color: #52B54B;
|
background-color: #52B54B;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btnWarningAccent {
|
||||||
|
background-color: #FF6A00;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btnDarkAccent {
|
||||||
|
background-color: #666;
|
||||||
|
}
|
||||||
|
|
||||||
.btn, .btn-large {
|
.btn, .btn-large {
|
||||||
color: #fff !important;
|
color: #fff !important;
|
||||||
font-weight: 500 !important;
|
font-weight: 500 !important;
|
||||||
|
|
|
@ -1073,3 +1073,12 @@ h1 + .accentButton {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.disabledUser {
|
||||||
|
-webkit-filter: grayscale(100%);
|
||||||
|
filter: grayscale(100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.disabledUserBanner {
|
||||||
|
margin: 0 0 2em;
|
||||||
|
}
|
||||||
|
|
|
@ -1950,12 +1950,12 @@
|
||||||
if (item.CriticRating != null) {
|
if (item.CriticRating != null) {
|
||||||
|
|
||||||
if (item.CriticRating >= 60) {
|
if (item.CriticRating >= 60) {
|
||||||
html += '<div class="fresh rottentomatoesicon"></div>';
|
html += '<div class="fresh rottentomatoesicon" title="Rotten Tomatoes"></div>';
|
||||||
} else {
|
} 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) {
|
if (item.Metascore && metascore !== false) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue