forked from fluid-project/infusion
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFullPrefsEditor.scss
More file actions
80 lines (69 loc) · 1.82 KB
/
FullPrefsEditor.scss
File metadata and controls
80 lines (69 loc) · 1.82 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// UI Option styles for full page layouts both with and without preview
// Text Size
html.fl-textSize-enabled {
font-size: var(--fl-textSize);
}
// Letter-spacing
html.fl-letterSpace-enabled {
letter-spacing: var(--fl-letterSpace);
}
// Word-spacing
html.fl-wordSpace-enabled {
word-spacing: var(--fl-wordSpace);
}
// Control section headers
.fl-prefsEditor {
// Save, reset, cancel buttons
.fl-prefsEditor-buttons {
float: left;
margin-top: 1em;
width: 100%;
input {
background-color: var(--fl-bgColor, #f0f0f0);
border: 2px solid var(--fl-fgColor, #cecece);
color: var(--fl-fgColor);
font-size: 1em;
font-weight: bold;
height: 2.5em;
margin-right: 3px;
padding: 5px;
text-decoration: underline;
text-transform: uppercase;
}
}
// Section header icons
h2 {
align-items: center;
clear: both;
color: var(--fl-fgColor, #444);
display: flex;
font-size: 1.29em;
font-weight: bold;
justify-content: flex-start;
padding: 14px 0 5px 25px;
white-space: nowrap;
white-space: normal;
[class*='fl-icon-'] {
margin: 0 0.3em 0 0;
}
}
// Text controls
.fl-prefsEditor-text ul li {
clear: left;
height: 3.5em;
}
// Theme radio buttons
.fl-choices {
justify-content: flex-start;
}
// Stepper
// Custom styling for the textfield stepper when used in the prefs framework
.fl-textfieldStepper {
justify-content: flex-start;
}
// Switch
// Custom styling for the switch when used in the prefs framework
.fl-prefsEditor-onoff .fl-switchUI {
justify-content: flex-start;
}
}