blob: a64f9b89a535302381add57f0de364ed56e4d235 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#aboutPage {
-webkit-user-select: text;
}
.loading {
font-style: italic;
}
#channelSelect {
margin-bottom: 5px;
}
#channelWarning {
color: red;
font-weight: bold;
}
.update-icon {
width: 17px;
height: 17px;
display: inline-block;
vertical-align: middle;
background-repeat: no-repeat;
}
.update-icon.fail {
background-image: url('../../../app/theme/update_fail.png');
}
.update-icon.available {
background-image: url('../../../app/theme/update_available.png');
}
.update-icon.up-to-date {
background-image: url('../../../app/theme/update_uptodate.png');
}
|