-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
69 lines (60 loc) · 1.07 KB
/
styles.css
File metadata and controls
69 lines (60 loc) · 1.07 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
61
62
63
64
65
66
67
68
69
/*
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.
*/
.photes-button {
padding: 4px;
border-radius: 4px;
cursor: pointer;
display: inline-flex;
justify-content: center;
align-items: center;
background-color: var(--interactive-normal);
color: var(--text-normal);
}
.photes-button.disabled {
cursor: inherit;
pointer-events: none;
}
.photes-icon {
width: 1em;
height: 1em;
--icon-size: 1em;
background: #fff;
display: flex;
}
.photes {
fill: none;
}
.loading-icon {
width: 1em;
height: 1em;
--icon-size: 1em;
display: flex;
animation: spin 1s linear infinite;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
/*
color use theme
*/
.photes-button:hover {
background-color: var(--interactive-hover);
}
.photes-info {
border: 1px solid var(--background-modifier-border);
padding: 10px;
display: flex;
flex-direction: column;
border-radius: 4px;
}
.photes-status-bar-item {
color: var(--color-blue);
}