-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfolder-form.css
76 lines (62 loc) · 1.22 KB
/
folder-form.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
@import 'photon.css';
form {
font-size: 15px;
}
input[type='number'] {
-moz-appearance: textfield;
}
.doLeading {
line-height: 180%;
}
.warning {
font-size: 75%;
height: 20px;
background-color: var(--yellow-50);
color: var(--grey-90);
display: none; /*none or initial*/
padding: 6px 2px 3px 2px;
}
.warning::before {
content: url('icons/photon/warning-16.svg');
position: relative;
margin: 0px 2px 0px 2px;
top: 2px;
}
#bgcolorPicker {
height: 24px;
position: relative;
top: 4px;
}
.waitSpinner {
height: 25px;
position: relative;
top: 7px;
display: none; /*none or initial*/
}
#controlButtons {
margin-top: 3px;
margin-left: 2px;
}
#bgimgPicker {
display: none;
}
#fakeBgimgPicker {
display: inline-block;
height: 24px;
}
#fakeBgimgPickerBtn {
min-width: 80px;
width: 80px;
height: 24px;
}
#fakeBgimgPickerLabel {
font-size: 12px;
padding-right: 2px;
}
#fakeBgimgPickerBtn:disabled+#fakeBgimgPickerLabel {
opacity: 0.4;
}
#bgimgPicker:invalid+#fakeBgimgPicker {
border-radius: 2px;
box-shadow: 0 0 2px 1px red/*var(--red-60)*/;
}