-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdialogs.css
More file actions
304 lines (304 loc) · 5.86 KB
/
dialogs.css
File metadata and controls
304 lines (304 loc) · 5.86 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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
/*
dialogs.css
Version = 20260601
*/
#tabDlg, #dialDlg, #jsonDlg, #settingsDlg {
position: fixed;
inset: 0;
display: grid;
place-items: start center;
padding-top: 6vh;
background: rgba(0, 0, 0, 0.35);
z-index: 999;
box-sizing: border-box;
}
#tabDlg[hidden], #dialDlg[hidden], #jsonDlg[hidden], #settingsDlg[hidden] {
display: none;
}
#tabDlg, #tabDlg *,
#dialDlg, #dialDlg *,
#jsonDlg, #jsonDlg *,
#settingsDlg, #settingsDlg * {
box-sizing: border-box;
font: inherit;
}
#tabDlg > table,
#dialDlg > table,
#jsonDlg > table,
#settingsDlg > table {
border-collapse: separate;
border-spacing: 8px 6px;
padding: 10px;
border: 1px solid #444444;
background: #222222;
color: #ffffff;
min-width: 260px;
max-height: 88vh;
}
#tabDlg > table {
width: min(460px, 92vw);
}
#dialDlg > table {
width: min(560px, 92vw);
}
#jsonDlg > table {
width: min(760px, 92vw);
}
#settingsDlg > table {
border-spacing: 18px 12px;
width: min(1120px, 98vw);
}
#tabDlg caption,
#dialDlg caption,
#jsonDlg caption,
#settingsDlg caption {
caption-side: top;
padding-bottom: 8px;
text-align: center;
font-size: 1.45em;
font-weight: 800;
color: #ffffff;
}
#tabDlg td,
#dialDlg td,
#jsonDlg td,
#settingsDlg td {
vertical-align: top;
padding: 0;
}
#tabDlg tbody td:first-child,
#dialDlg tbody td:first-child,
#jsonDlg tbody td:first-child {
width: max-content;
white-space: nowrap;
padding-right: 8px;
color: #ffffff;
}
#tabDlg button, #tabDlg input, #tabDlg select, #tabDlg textarea,
#dialDlg button, #dialDlg input, #dialDlg select, #dialDlg textarea,
#jsonDlg button, #jsonDlg input, #jsonDlg select, #jsonDlg textarea,
#settingsDlg button, #settingsDlg input, #settingsDlg select, #settingsDlg textarea {
margin: 0;
border: 1px solid #555555;
background: #111111;
color: #ffffff;
padding: 2px 6px;
}
#tabDlg button,
#dialDlg button,
#jsonDlg button,
#settingsDlg button {
white-space: nowrap;
}
#tabDlg input,
#dialDlg input,
#jsonDlg input,
#tabDlg select,
#dialDlg select,
#jsonDlg select,
#tabDlg textarea,
#dialDlg textarea,
#jsonDlg textarea {
width: 100%;
min-width: 0;
}
#tabDlg input[type="checkbox"],
#dialDlg input[type="checkbox"],
#jsonDlg input[type="checkbox"],
#settingsDlg input[type="checkbox"] {
width: auto;
}
#tabDlg input[type="color"],
#dialDlg input[type="color"],
#settingsDlg input[type="color"] {
appearance: auto;
background: transparent;
color: initial;
padding: 0;
width: 44px;
height: 24px;
}
.dialogActions {
display: grid;
grid-auto-flow: column;
grid-auto-columns: min-content;
justify-content: end;
gap: 4px;
margin-top: 6px;
}
.delRow td:first-child {
color: #ff9999;
}
#tabDelBtn, #dialDelBtn {
border-color: #aa3333;
color: #ff9999;
}
#tabDelBtn[hidden], #dialDelBtn[hidden] {
display: none;
}
#dialUrlInput {
min-height: 4.8em;
resize: vertical;
white-space: pre-wrap;
overflow-wrap: anywhere;
}
#jsonText {
width: 100%;
height: 28vh;
min-height: 140px;
resize: vertical;
white-space: pre;
overflow: auto;
}
#jsonMssg, #dialPlanMssg, #tabMssg, #settingsMssg {
max-height: 22vh;
overflow: auto;
white-space: pre-wrap;
border: 1px solid #444444;
padding: 6px;
background: #111111;
}
#dialPlanMssg[hidden] {
display: none;
}
#settingsDlg td:first-child {
width: 58%;
}
#settingsDlg td:last-child {
width: 42%;
}
#settingsDlg input[type="number"],#settingsDlg select {
width: 7ch;
}
#settingsDlg #setTheme {
width: 12ch;
}
#settingsDlg #setShowAddDials {
width: 9ch;
}
#setTabColorMode {
width: max-content;
min-width: 24ch;
}
.settingsBlock,.rdOnlyBlock,#settingsDlg td > div {
display: grid;
grid-auto-rows: min-content;
gap: 4px;
align-content: start;
min-width: 0;
overflow: visible;
}
.settingsBlock h3,.rdOnlyBlock h3,#settingsDlg td > div > h3 {
margin: 0 0 4px 0;
font-size: 1.15em;
font-weight: bold;
color: #f8e45c;
}
.settingsRow {
display: grid;
grid-template-columns: max-content min-content min-content;
gap: 4px 8px;
align-items: center;
min-height: 24px;
min-width: 0;
}
.settingsLabel {
display: grid;
align-items: center;
white-space: nowrap;
color: #ffffff;
}
.settingsValue {
display: grid;
align-items: center;
min-width: 7ch;
white-space: nowrap;
}
.usrSettingsBlock .viewTabColorsRow,
.usrSettingsBlock .addDialThemeRow {
grid-template-columns: max-content max-content max-content max-content;
width: max-content;
}
.usrSettingsBlock .contrastRow {
grid-template-columns: max-content 7ch max-content 7ch max-content;
}
.usrSettingsBlock .contrastRow .settingsLabel:not(:first-child) {
color: #aaaaaa;
opacity: 0.75;
}
.sysContrastLimit {
color: #aaaaaa;
opacity: 0.75;
}
.sysSettingsBlock .settingsRow {
grid-template-columns: 11ch 7ch 7ch;
}
.sysSettingsBlock .settingsLabel {
width: 11ch;
}
.sysSettingsBlock .settingsValue {
width: 7ch;
min-width: 7ch;
}
.sysSettingsBlock select {
width: 7ch;
}
.sysHdrRow .settingsLabel,.sysHdrRow .settingsValue {
font-weight: bold;
}
.rdMaxPinsRow {
grid-template-columns: max-content min-content max-content;
}
.pinGridRow {
display: inline-grid;
grid-template-columns: max-content max-content;
gap: 4px 8px;
align-items: center;
width: max-content;
border: 2px solid #66CCFF;
padding: 1px 6px;
}
.pinGridRow .settingsLabel,.pinGridRow .settingsValue {
color: #66CCFF;
}
.pinGridRow .settingsValue {
width: max-content;
min-width: 0;
}
.archiveList {
display: grid;
grid-auto-rows: min-content;
gap: 2px;
min-width: 0;
max-height: 174px;
overflow: auto;
border: 1px solid #444444;
background: #111111;
}
.archiveRow {
display: grid;
grid-template-columns: 4ch minmax(0, 1fr) min-content min-content;
gap: 4px;
align-items: center;
min-width: 0;
padding: 2px 4px;
}
.archiveOrder,.archiveLabel {
min-width: 0;
}
.archiveOrder {
color: #aaaaaa;
}
.archiveLabel {
color: #ffffff;
white-space: normal;
overflow-wrap: anywhere;
}
#settingsDlg .dialogActions {
display: grid;
grid-auto-flow: column;
grid-auto-columns: min-content;
justify-content: end;
gap: 4px;
margin-top: 6px;
}