-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyles.css
More file actions
60 lines (54 loc) · 1.19 KB
/
Copy pathstyles.css
File metadata and controls
60 lines (54 loc) · 1.19 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
.hints-status-bar-icon {
margin-right: 5px;
}
.hints-status-bar-error {
/*noinspection CssUnresolvedCustomProperty*/
color: var(--text-error);
}
.hints-status-bar-hidden {
display: none;
}
.hints-auth-modal-loader {
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: center;
margin: 40px 0;
}
.hints-auth-modal-loader > i {
display: flex;
align-items: center;
justify-content: center;
animation: spin-animation 0.8s infinite linear;
}
.hints-auth-modal-loader > span {
margin-left: 7px;
}
.hints-auth-modal-header {
display: flex;
flex-direction: row;
align-items: flex-start;
margin: 0;
}
.hints-auth-modal-header > i {
margin-right: 7px;
margin-top: 2px;
/*noinspection CssUnresolvedCustomProperty*/
color: var(--text-success);
}
.hints-auth-modal-button {
margin-top: 7px;
padding: 18px 30px;
}
.hints-settings-has-error .setting-item-control input {
/*noinspection CssUnresolvedCustomProperty*/
border-color: var(--background-modifier-error);
}
@keyframes spin-animation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}