mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update icons
This commit is contained in:
parent
7cf86e9e30
commit
f54889cb16
8 changed files with 40 additions and 167 deletions
|
@ -73,10 +73,10 @@
|
|||
var review = positive[i];
|
||||
|
||||
html += "<div>";
|
||||
html += "<span class='storeItemReviewText'>";
|
||||
html += "<span class='storeItemReviewText' style='display:inline-flex;align-items:center;'>";
|
||||
html += new Date(review.timestamp).toDateString();
|
||||
if (review.rating) {
|
||||
html += '<iron-icon icon="star" style="color:#666;height:20px;width:20px;min-height:20px;min-width:20px;margin-right:.25em;"></iron-icon>';
|
||||
html += '<i class="md-icon" style="color:#cc3333;height:auto;width:auto;margin-left:.5em;">star</i>';
|
||||
html += review.rating.toFixed(1);
|
||||
}
|
||||
html += " " + review.title;
|
||||
|
@ -138,7 +138,7 @@
|
|||
//Ratings and Reviews
|
||||
var ratingHtml = '';
|
||||
if (pkg.avgRating) {
|
||||
ratingHtml += '<iron-icon icon="star" style="color:#666;height:20px;width:20px;min-height:20px;min-width:20px;margin-right:.25em;"></iron-icon>';
|
||||
ratingHtml += '<i class="md-icon" style="color:#cc3333;height:auto;width:auto;">star</i>';
|
||||
ratingHtml += pkg.avgRating.toFixed(1);
|
||||
}
|
||||
ratingHtml += "<span>";
|
||||
|
|
|
@ -1504,9 +1504,6 @@ var AppInfo = {};
|
|||
define("cryptojs-sha1", [sha1Path]);
|
||||
define("cryptojs-md5", [md5Path]);
|
||||
|
||||
// Done
|
||||
define("emby-icons", ['webcomponentsjs', "html!" + bowerPath + "/emby-icons/emby-icons.html"]);
|
||||
|
||||
define("paper-button", ["html!" + bowerPath + "/paper-button/paper-button.html"]);
|
||||
define("paper-icon-button", ["html!" + bowerPath + "/paper-icon-button/paper-icon-button.html"]);
|
||||
|
||||
|
|
|
@ -138,7 +138,7 @@
|
|||
html += '<div class="cardFooter">';
|
||||
|
||||
html += '<div style="text-align:right; float:right;padding:0;">';
|
||||
html += '<button type="button" is="paper-icon-button-light" class="btnUserMenu autoSize"><i class="md-icon">' + AppInfo.moreIcon.replace('-', '_') + '</i></button>';
|
||||
html += '<button type="button" is="paper-icon-button-light" class="btnUserMenu autoSize"><i class="md-icon">more_vert</i></button>';
|
||||
html += "</div>";
|
||||
|
||||
html += '<div class="cardText" style="padding-top:10px;padding-bottom:10px;">';
|
||||
|
@ -257,7 +257,7 @@
|
|||
html += '<div class="cardFooter">';
|
||||
|
||||
html += '<div class="cardText" style="text-align:right; float:right;padding:0;">';
|
||||
html += '<button type="button" is="paper-icon-button-light" class="btnUserMenu"><iron-icon icon="' + AppInfo.moreIcon + '"></iron-icon></button>';
|
||||
html += '<button type="button" is="paper-icon-button-light" class="btnUserMenu"><i class="md-icon">more_vert</i></button>';
|
||||
html += "</div>";
|
||||
|
||||
html += '<div class="cardText" style="padding-top:10px;padding-bottom:10px;">';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue