-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyles.css
More file actions
41 lines (32 loc) · 750 Bytes
/
styles.css
File metadata and controls
41 lines (32 loc) · 750 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
40
41
/*
This CSS file will be included with your plugin, and
available in the app when your plugin is enabled.
If your plugin does not need CSS, delete this file.
*/
.mind-matrix-status-icon {
display: inline-block;
width: 16px;
height: 16px;
text-align: center;
line-height: 16px;
margin-right: 4px;
font-size: 12px;
}
.mind-matrix-status-icon.is-ready {
color: var(--color-green);
}
.mind-matrix-status-icon.is-error {
color: var(--color-red);
}
.mind-matrix-status-icon.is-working {
color: var(--color-yellow);
animation: spin 2s linear infinite;
}
.mind-matrix-status-icon.is-initializing {
color: var(--color-base-50);
}
@keyframes spin {
100% {
transform: rotate(360deg);
}
}