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