generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
46 lines (38 loc) · 930 Bytes
/
styles.css
File metadata and controls
46 lines (38 loc) · 930 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
42
43
44
45
46
/* Gives a small vertical gap between all the elements in the modal */
.threshold-modal .modal-content {
display: flex;
flex-direction: column;
gap: 12px;
}
.threshold-modal-preview-image {
max-width: 100%;
}
.threshold-modal-canvas {
display: none;
}
.threshold-modal-row-div {
display: flex;
width: 100%;
justify-content: center;
align-items: center;
gap: 10px;
}
.threshold-modal-slider {
flex-grow: 1;
}
.threshold-modal-input {
flex-grow: 1;
}
.modal-content button {
cursor: pointer;
}
/* Overwrite the apply buttons (this is the specific path according to Obsidian's inspect view) */
button.threshold-modal-apply-button:not(.clickable-icon),
button.threshold-modal-overwrite-button:not(.clickable-icon) {
background-color: var(--interactive-accent);
color: var(--text-on-accent);
}
.threshold-modal-apply-button {
width: 90%;
align-self: center;
}