-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
66 lines (53 loc) · 1.51 KB
/
styles.css
File metadata and controls
66 lines (53 loc) · 1.51 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
/*
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.
*/
/* Container element for settings tab, used for defining plugin-specific variables */
.template-by-note-name-settings {
--color-darkgreen: darkgreen;
--color-darkgreen-hover: rgb(1, 81, 1);
--color-darkred: darkred;
--color-darkred-hover: rgb(113, 1, 1);
}
.template-by-note-name-add-matcher-button {
--interactive-normal: var(--color-darkgreen);
background-color: var(--color-darkgreen);
margin-left: 20px;
font-weight: bold;
max-width: 44px;
min-width: 44px;
padding: 4px 10px;
}
.template-by-note-name-add-matcher-button:hover {
background-color: var(--color-darkgreen-hover);
}
.template-by-note-name-add-matcher-button svg.svg-icon {
stroke-width: 4;
}
.template-by-note-name-matcher-row .setting-item-info {
display: none;
}
.template-by-note-name-matcher-row .setting-item-control {
justify-content: flex-start;
}
.template-by-note-name-matcher-row .setting-item-control input {
min-width: 132px;
}
.template-by-note-name-matcher-row .setting-item-control .delete-button {
margin-left: auto;
background-color: var(--color-darkred);
font-weight: bold;
max-width: 44px;
min-width: 44px;
padding: 4px 10px;
}
.template-by-note-name-matcher-row .setting-item-control .delete-button:hover {
background-color: var(--color-darkred-hover);
}
.template-by-note-name-matcher-row
.setting-item-control
.delete-button
svg.svg-icon {
stroke-width: 4;
}