mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
added watched icon for folders
This commit is contained in:
parent
72ac2ba6af
commit
8039689501
2 changed files with 4 additions and 5 deletions
|
@ -151,9 +151,9 @@
|
||||||
|
|
||||||
.itemProgress {
|
.itemProgress {
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
font-size: 20px;
|
font-size: 19px;
|
||||||
color: #6FBD45;
|
margin-right: 15px;
|
||||||
margin-right: 10px;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.posterDetailViewItem {
|
.posterDetailViewItem {
|
||||||
|
@ -170,7 +170,6 @@
|
||||||
|
|
||||||
.posterDetailViewItem .itemProgress {
|
.posterDetailViewItem .itemProgress {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.posterDetailViewItem .starRating {
|
.posterDetailViewItem .starRating {
|
||||||
|
|
|
@ -580,7 +580,7 @@
|
||||||
itemId = item.Name;
|
itemId = item.Name;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (item.MediaType) {
|
if (item.MediaType || item.IsFolder) {
|
||||||
if (userData.Played) {
|
if (userData.Played) {
|
||||||
html += '<img data-type="' + type + '" data-itemid="' + itemId + '" class="imgUserItemRating imgPlayed" src="css/images/userdata/played.png" alt="Played" title="Played" onclick="LibraryBrowser.markPlayed(this);return false;" />';
|
html += '<img data-type="' + type + '" data-itemid="' + itemId + '" class="imgUserItemRating imgPlayed" src="css/images/userdata/played.png" alt="Played" title="Played" onclick="LibraryBrowser.markPlayed(this);return false;" />';
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue