generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
75 lines (60 loc) · 1.32 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
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.
*/
.setting-item-no-top-border {
border-top: none;
}
.setting-item-without-info {
border-top: none;
.setting-item-info {
margin-right: 0px;
}
.setting-item-control {
width: 100%;
}
}
.w-100 {
width: 100%;
}
.font-small {
font-size: var(--font-ui-small);
}
.font-medium {
font-size: var(--font-ui-medium);
}
.bg-theme {
background-color: var(--interactive-accent) !important;
color: var(--text-on-accent);
}
.modal-setting-item-w-text-area .setting-item-control textarea {
width: 100%;
}
.checkbox-container-w-text {
display: flex;
justify-content: center;
align-items: center;
}
.prev-commit-container {
display: block;
}
.prev-commit-container .setting-item-name {
padding-bottom: 0.75em;
}
.copy-container {
border: var(--input-border-width) solid var(--background-modifier-border);
border-radius: var(--input-radius);
padding: var(--size-4-1) var(--size-4-2);
background: var(--background-modifier-form-field);
color: var(--text-normal);
text-align: left;
display: flex;
justify-content: space-between;
align-items: start;
}
.copy-container .msg {
padding: var(--size-2-2);
overflow: scroll;
max-height: 80px;
}