generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
123 lines (94 loc) · 2.13 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
.rules-text-area {
width: 100%;
display: inline-block;
}
.rules-text-area .setting-item-info {
margin-bottom: 0.75rem;
}
.rules-text-area .setting-item-control {
flex-direction: column;
align-items: flex-end;
}
.rules-editor-wrapper {
width: 100%;
margin-bottom: 0.75rem;
}
.rules-editor-wrapper .cm-editor {
height: 20em;
resize: vertical;
overflow: auto;
font-size: var(--font-inputs);
text-align: left;
outline: none !important;
}
.rules-editor-wrapper .cm-line,
.rules-editor-wrapper .cm-lineNumbers {
font-family: var(--font-monospace);
}
.rules-profiles {
width: 100%;
display: flex;
}
.rules-profile-button {
display: flex;
height: 40px;
min-width: 20px;
align-items: center;
padding: 0px 10px 12px 10px;
}
.rules-profile-button svg {
width: 12px !important;
height: 12px !important;
}
.rules-profile-close {
margin-left: 5px;
margin-right: 0px;
}
.rules-profile-button.selected {
background: var(--background-primary);
color: var(--text-on-accent);
}
.rules-profile-button.clickable-icon {
margin: 0 5px;
}
.rules-footer {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
.rules-editor-validity {
display: flex;
align-items: center;
}
.rules-editor-validity-txt {
padding: 0.5em;
text-align: left;
}
.rules-editor-validity-indicator {
color: white;
display: inline-block;
border-radius: 1em;
padding: 0.1em;
margin-right: 1em;
cursor: default;
visibility: hidden;
}
.rules-editor-validity-indicator svg {
width: 12px !important;
height: 12px !important;
}
.rules-editor-validity-indicator:hover {
color: white;
}
.rules-editor-validity-indicator.valid {
background-color: #7dc535;
visibility: visible;
}
.theme-dark .rules-editor-validity-indicator.valid {
background-color: #588b24;
}
.rules-editor-validity-indicator.invalid {
background-color: #ea5555;
visibility: visible;
}