mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
change IsRecording filter to IsInProgress
This commit is contained in:
parent
ccc7823449
commit
817effb7d8
3 changed files with 11 additions and 12 deletions
|
@ -221,7 +221,7 @@
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -2px;
|
top: -1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.halfStarRating {
|
.halfStarRating {
|
||||||
|
@ -236,7 +236,7 @@
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-left: 1px;
|
margin-left: 1px;
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -2px;
|
top: -1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.rottentomatoesicon {
|
.rottentomatoesicon {
|
||||||
|
@ -248,7 +248,7 @@
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -2px;
|
top: -1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.starRatingValue + .rottentomatoesicon {
|
.starRatingValue + .rottentomatoesicon {
|
||||||
|
@ -266,25 +266,24 @@
|
||||||
.metascore {
|
.metascore {
|
||||||
font-family: Arial;
|
font-family: Arial;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-weight: bold;
|
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 2px 4px;
|
padding: 2px 4px;
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -2px;
|
top: -1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.metascorehigh {
|
.metascorehigh {
|
||||||
background-color: rgba(102, 204, 51, .75);
|
background-color: rgba(102, 204, 51, .65);
|
||||||
}
|
}
|
||||||
|
|
||||||
.metascoremid {
|
.metascoremid {
|
||||||
background-color: rgba(255, 204, 51, .75);
|
background-color: rgba(255, 204, 51, .65);
|
||||||
}
|
}
|
||||||
|
|
||||||
.metascorelow {
|
.metascorelow {
|
||||||
background-color: rgba(240, 0, 0, .75);
|
background-color: rgba(240, 0, 0, .65);
|
||||||
}
|
}
|
||||||
|
|
||||||
.criticRating + .metascore, .starRatingValue + .metascore {
|
.criticRating + .metascore, .starRatingValue + .metascore {
|
||||||
|
@ -311,7 +310,7 @@
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-left: 1px;
|
margin-left: 1px;
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -2px;
|
top: -1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.criticRatingSummary {
|
.criticRatingSummary {
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
right: 0;
|
right: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
background-color: rgba(0, 0, 0, .9);
|
background-color: rgba(0, 0, 0, .85);
|
||||||
z-index: 999;
|
z-index: 999;
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,7 +68,7 @@
|
||||||
apiClient.getLiveTvRecordings({
|
apiClient.getLiveTvRecordings({
|
||||||
|
|
||||||
userId: Dashboard.getCurrentUserId(),
|
userId: Dashboard.getCurrentUserId(),
|
||||||
isRecording: true
|
IsInProgress: true
|
||||||
|
|
||||||
}).done(function (result) {
|
}).done(function (result) {
|
||||||
|
|
||||||
|
@ -80,7 +80,7 @@
|
||||||
|
|
||||||
userId: Dashboard.getCurrentUserId(),
|
userId: Dashboard.getCurrentUserId(),
|
||||||
limit: 12,
|
limit: 12,
|
||||||
isRecording: false
|
IsInProgress: false
|
||||||
|
|
||||||
}).done(function (result) {
|
}).done(function (result) {
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue