-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathshiny-updates.css
More file actions
39 lines (34 loc) · 861 Bytes
/
shiny-updates.css
File metadata and controls
39 lines (34 loc) · 861 Bytes
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
35
36
37
38
39
.updating-message::before {
-webkit-animation: rotation 2s infinite linear;
}
@-webkit-keyframes rotation {
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(359deg);}
}
.plugin-update-tr .updated-message::before {
color: #79ba49;
content: '\f147';
}
.button.installing::before {
color: #d54e21;
content: '\f463';
display: inline-block;
font: normal 20px/1 'dashicons';
speak: none;
margin: 0 8px 0 -2px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
vertical-align: top;
-webkit-animation: rotation 2s infinite linear;
}
.button.installed::before {
color: #79ba49;
content: '\f147';
display: inline-block;
font: normal 20px/1 'dashicons';
speak: none;
margin: 0 8px 0 -2px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
vertical-align: top;
}