2018-10-23 01:13:23 +03:00
|
|
|
.itemProgressBar {
|
|
|
|
background: #333;
|
2020-01-19 14:52:38 +01:00
|
|
|
background: rgba(51, 51, 51, .8);
|
2018-10-23 01:13:23 +03:00
|
|
|
position: relative;
|
2019-01-10 15:39:37 +03:00
|
|
|
height: .28em;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.itemProgressBarForeground {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2019-01-10 15:39:37 +03:00
|
|
|
bottom: 0;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.indicator {
|
|
|
|
border-radius: 100em;
|
2020-01-09 19:35:19 +01:00
|
|
|
display: -webkit-flex;
|
2018-10-23 01:13:23 +03:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-weight: 500;
|
|
|
|
width: 2em;
|
2019-01-10 15:39:37 +03:00
|
|
|
height: 2em;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.timerIndicator {
|
2020-01-19 14:40:08 +01:00
|
|
|
color: #cb272a;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.timerIndicator-inactive {
|
2019-01-10 15:39:37 +03:00
|
|
|
color: #888;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2019-01-10 15:39:37 +03:00
|
|
|
.indicator + .indicator {
|
|
|
|
margin-left: .25em;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.indicatorIcon {
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
2019-01-10 15:39:37 +03:00
|
|
|
font-size: 1.6em;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.countIndicator {
|
|
|
|
border-radius: 100em;
|
2020-01-09 19:35:19 +01:00
|
|
|
display: -webkit-flex;
|
2018-10-23 01:13:23 +03:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-weight: 500;
|
|
|
|
color: #fff;
|
2019-01-10 15:39:37 +03:00
|
|
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
|
|
|
|
font-size: 88%;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.playedIndicator {
|
|
|
|
border-radius: 100em;
|
2020-01-09 19:35:19 +01:00
|
|
|
display: -webkit-flex;
|
2018-10-23 01:13:23 +03:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
color: #fff;
|
2019-01-10 15:39:37 +03:00
|
|
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
|
|
|
|
font-size: 80%;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.videoIndicator {
|
|
|
|
background: #444;
|
|
|
|
border-radius: 100em;
|
2020-01-09 19:35:19 +01:00
|
|
|
display: -webkit-flex;
|
2018-10-23 01:13:23 +03:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
color: #fff;
|
2019-01-10 15:39:37 +03:00
|
|
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
|
|
|
|
font-size: 88%;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.syncIndicator {
|
2019-01-10 15:39:37 +03:00
|
|
|
border-radius: 100em;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.emptySyncIndicator {
|
|
|
|
background: #ccc;
|
2019-01-10 15:39:37 +03:00
|
|
|
color: #333;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2019-01-10 15:39:37 +03:00
|
|
|
.missingIndicator, .unairedIndicator {
|
2020-01-19 14:40:47 +01:00
|
|
|
background: #c33;
|
2018-10-23 01:13:23 +03:00
|
|
|
padding: .25em .5em;
|
|
|
|
border-radius: 100em;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 84%;
|
|
|
|
font-weight: 500;
|
2019-01-10 15:39:37 +03:00
|
|
|
margin: 0 .25em;
|
2020-01-19 14:59:39 +01:00
|
|
|
}
|