forked from bioc7771/sd-dynamic-prompts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (56 loc) · 1.82 KB
/
style.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
#dynamic-prompting .content {
padding: 0 18px;
display: none;
overflow: hidden;
border: 1px solid #eee;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-radius: 0px 0px 8px 8px;
}
#dynamic-prompting .codeblock {
color: #50a080;
}
/* Fixes up the quite hard-to-see border on the collections dropdown */
#tab_sddp-wildcard-manager ul.options {
border: var(--input-border-width) solid var(--border-color-primary);
border-radius: var(--input-radius);
}
.dark #dynamic-prompting .collapsible {
background-color: rgb(31, 41, 55);
border: 2px solid rgb(31, 41, 55);
}
.dark #dynamic-prompting .active, .collapsible:hover {
background-color: #06080D;
border: 2px solid #06080D;
}
.dark #dynamic-prompting .content {
border: 2px solid #0C111C;
}
#dynamic-prompting h2 {
font-size: 1.2em;
font-weight: bolder;
}
#dynamic-prompting h3 {
font-size: 1.1em;
font-weight: bolder;
}
#dynamic-prompting a {
color: #50a080;
}
.sddp-warning {
color: red !important;
}
.sddp-info {
color: rgb(121, 240, 10) !important;
}
.tree-leaf { position: relative; }
.tree-leaf .tree-child-leaves { display: block; margin-left: 15px; }
.tree-leaf .hidden { display: none; }
.tree-leaf .tree-expando { background: #ddd; border-radius: 3px; cursor: pointer; float: left; height: 10px; line-height: 10px; position: relative; text-align: center; top: 5px; width: 10px; }
.tree-leaf .hidden { visibility: hidden; }
.tree-leaf .tree-expando:hover { background: #aaa; }
.tree-leaf .tree-leaf-text { cursor: pointer; float: left; margin-left: 5px; }
.tree-leaf .tree-leaf-text:hover { color: blue; }
.tree-leaf .tree-leaf-content:before, .tree-leaf .tree-leaf-content:after { content: " "; display: table; }
.tree-leaf .tree-leaf-content:after { clear: both; }