generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyles.css
49 lines (42 loc) · 820 Bytes
/
styles.css
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
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.spin {
animation: spin 2s linear infinite;
}
.operation-container {
position: relative;
border-top: var(--border-width) solid var(--background-modifier-border);
padding-top: var(--font-ui-medium);
padding-bottom: var(--font-ui-medium);
padding-right: var(--size-4-12);
padding-left: 0px;
}
.operation-container:first-of-type {
border-top: none;
}
.operation-container p {
margin: 0;
overflow-wrap: break-word;
}
.operation-container div {
position: absolute;
top: 0px;
right: 0px;
height: 100%;
display: flex;
align-items: center;
}
.operation-container button {
width: var(--icon-xl);
height: var(--icon-xl);
padding: var(--size-2-2) !important;
}
.operation-file {
overflow-wrap: break-word;
}