@appscode/design-system 0.0.21-alpha.3 → 0.4.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/base/utilities/_all.scss +7 -0
- package/base/utilities/_customize-bulma.scss +191 -0
- package/base/utilities/_default.scss +319 -110
- package/base/utilities/_derived-variables.scss +8 -15
- package/base/utilities/_grid.scss +29 -0
- package/base/utilities/_initial-variables.scss +111 -72
- package/base/utilities/_mixin.scss +90 -10
- package/base/utilities/_typography.scss +29 -19
- package/base/utilities/dark-theme.scss +26 -0
- package/components/_ac-accordion.scss +15 -5
- package/components/_ac-alert-box.scss +109 -26
- package/components/_ac-card.scss +71 -24
- package/components/_ac-code-highlight.scss +7 -1
- package/components/_ac-content-layout.scss +5 -5
- package/components/_ac-drag.scss +8 -6
- package/components/_ac-input.scss +191 -37
- package/components/_ac-modal.scss +6 -5
- package/components/_ac-multi-select.scss +281 -23
- package/components/_ac-options.scss +31 -16
- package/components/_ac-report.scss +53 -0
- package/components/_ac-select-box.scss +15 -5
- package/components/_ac-table.scss +160 -39
- package/components/_ac-tabs.scss +86 -23
- package/components/_ac-tags.scss +87 -2
- package/components/_ac-terminal.scss +270 -0
- package/components/_all.scss +28 -0
- package/components/_app-drawer.scss +134 -0
- package/components/_breadcumb.scss +8 -3
- package/components/_buttons.scss +96 -62
- package/components/_card-body-wrapper.scss +3 -3
- package/components/_dashboard-header.scss +33 -1
- package/components/_direct-deploy.scss +69 -0
- package/components/_go-to-top.scss +1 -1
- package/components/_graph.scss +45 -0
- package/components/_image-upload.scss +6 -4
- package/components/_left-sidebar-menu.scss +212 -52
- package/components/_monaco-editor.scss +1 -1
- package/components/_navbar.scss +193 -31
- package/components/_overview-info.scss +4 -4
- package/components/_overview-page.scss +1 -2
- package/components/_pagination.scss +45 -7
- package/components/_payment-card.scss +28 -12
- package/components/_preloader.scss +1 -1
- package/components/_preview-modal.scss +22 -9
- package/components/_pricing-table.scss +1 -1
- package/components/_progress-bar.scss +5 -5
- package/components/_subscription-card.scss +15 -8
- package/components/_table-of-content.scss +1 -1
- package/components/_tfa.scss +69 -0
- package/components/_transitions.scss +261 -0
- package/components/_widget-menu.scss +9 -9
- package/components/_wizard.scss +33 -20
- package/components/ac-toaster/_ac-toasted.scss +40 -8
- package/components/bbum/_all.scss +9 -0
- package/components/bbum/_card-team.scss +18 -10
- package/components/bbum/_information-center.scss +19 -5
- package/components/bbum/_mobile-desktop.scss +6 -6
- package/components/bbum/_post.scss +5 -4
- package/components/bbum/_sign-up-notification.scss +6 -6
- package/components/bbum/_single-post-preview.scss +10 -10
- package/components/bbum/_user-profile.scss +97 -90
- package/components/ui-builder/_ui-builder.scss +98 -21
- package/components/ui-builder/_vue-open-api.scss +104 -0
- package/layouts/_404.scss +159 -0
- package/layouts/_all.scss +2 -0
- package/layouts/_code-preview.scss +19 -8
- package/main.scss +6 -53
- package/package.json +4 -7
- package/plugins/caching.ts +243 -0
- package/plugins/theme.js +142 -0
- package/plugins/time-convert.js +49 -0
- package/plugins/vue-toaster.js +10 -6
- package/vue-components/v2/banner/Banner.vue +2 -2
- package/vue-components/v2/breadcrumbs/Breadcrumb.vue +97 -0
- package/vue-components/v2/button/Button.vue +10 -1
- package/vue-components/v2/button/DownloadBtn.vue +45 -0
- package/vue-components/v2/card/Card.vue +1 -0
- package/vue-components/v2/card/CardContent.vue +5 -0
- package/vue-components/v2/card/CardHeader.vue +12 -0
- package/vue-components/v2/card/OverviewCard.vue +10 -0
- package/vue-components/v2/card/OverviewCards.vue +5 -0
- package/vue-components/v2/card/PaymentCard.vue +69 -0
- package/vue-components/v2/card/PaymentCardOptionButtons.vue +35 -0
- package/vue-components/v2/card/PaymentCards.vue +44 -0
- package/vue-components/v2/content/ContentHeader.vue +9 -5
- package/vue-components/v2/content/ContentTable.vue +12 -7
- package/vue-components/v2/editor/Editor.vue +38 -5
- package/vue-components/v2/editor/FilteredFileEditor.vue +189 -0
- package/vue-components/v2/editor/MonacoEditor.vue +125 -0
- package/vue-components/v2/editor/ResourceKeyValueEditor.vue +209 -0
- package/vue-components/v2/form/Form.vue +12 -7
- package/vue-components/v2/form-fields/Input.vue +1 -1
- package/vue-components/v2/header/Header.vue +0 -1
- package/vue-components/v2/loaders/ResourceLoader.vue +101 -0
- package/vue-components/v2/loaders/SidebarLoader.vue +43 -0
- package/vue-components/v2/modal/Modal.vue +40 -7
- package/vue-components/v2/modals/DeleteConfirmationModal.vue +79 -0
- package/vue-components/v2/modals/JsonShowModal.vue +12 -3
- package/vue-components/v2/navbar/Appdrawer.vue +10 -9
- package/vue-components/v2/navbar/ThemeMode.vue +120 -0
- package/vue-components/v2/navbar/User.vue +229 -17
- package/vue-components/v2/notification/Notification.vue +101 -0
- package/vue-components/v2/notification/NotificationItem.vue +44 -0
- package/vue-components/v2/pagination/Pagination.vue +24 -4
- package/vue-components/v2/preloader/Preloader.vue +5 -5
- package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
- package/vue-components/v2/sidebar/SidebarItem.vue +24 -2
- package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
- package/vue-components/v2/tab/TabItem.vue +1 -1
- package/vue-components/v2/table/FakeTableCell.vue +36 -0
- package/vue-components/v2/table/InfoTable.vue +13 -3
- package/vue-components/v2/table/NarrowTable.vue +0 -2
- package/vue-components/v2/table/Table.vue +170 -10
- package/vue-components/v2/table/TableRow.vue +29 -2
- package/vue-components/v2/table/table-cell/CellValue.vue +33 -4
- package/vue-components/v2/table/table-cell/GenericCell.vue +56 -0
- package/vue-components/v2/table/table-cell/ObjectCell.vue +4 -1
- package/vue-components/v2/tabs/EditorTabs.vue +1 -1
- package/vue-components/v3/button/Button.vue +78 -0
- package/vue-components/v3/content/ContentHeader.vue +55 -0
- package/vue-components/v3/content/ContentTable.vue +83 -0
- package/vue-components/v3/dropdown/DropdownDivider.vue +3 -0
- package/vue-components/v3/dropdown/DropdownItem.vue +5 -0
- package/vue-components/v3/dropdown/DropdownMenu.vue +111 -0
- package/vue-components/v3/editor/Editor.vue +160 -0
- package/vue-components/v3/editor/FilteredFileEditor.vue +186 -0
- package/vue-components/v3/editor/MonacoEditor.vue +131 -0
- package/vue-components/v3/editor/ResourceKeyValueEditor.vue +125 -0
- package/vue-components/v3/form/Form.vue +63 -0
- package/vue-components/v3/form-fields/Input.vue +22 -0
- package/vue-components/v3/header/Header.vue +45 -0
- package/vue-components/v3/header/HeaderItem.vue +5 -0
- package/vue-components/v3/header/HeaderItems.vue +5 -0
- package/vue-components/v3/loaders/ResourceLoader.vue +83 -0
- package/vue-components/v3/loaders/SidebarLoader.vue +34 -0
- package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +92 -0
- package/vue-components/v3/modal/Modal.vue +158 -0
- package/vue-components/v3/modals/DeleteConfirmationModal.vue +85 -0
- package/vue-components/v3/modals/JsonShowModal.vue +96 -0
- package/vue-components/v3/modals/LongRunningTasksModal.vue +373 -0
- package/vue-components/v3/navbar/Appdrawer.vue +63 -0
- package/vue-components/v3/navbar/ThemeMode.vue +120 -0
- package/vue-components/v3/navbar/User.vue +288 -0
- package/vue-components/v3/notification/Notification.vue +98 -0
- package/vue-components/v3/notification/NotificationItem.vue +52 -0
- package/vue-components/v3/pagination/Pagination.vue +172 -0
- package/vue-components/v3/searchbars/SearchBar.vue +47 -0
- package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
- package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
- package/vue-components/v3/tab/TabItem.vue +17 -0
- package/vue-components/v3/table/FakeTableCell.vue +39 -0
- package/vue-components/v3/table/InfoTable.vue +105 -0
- package/vue-components/v3/table/MultiInfoTable.vue +143 -0
- package/vue-components/v3/table/Table.vue +272 -0
- package/vue-components/v3/table/TableCell.vue +28 -0
- package/vue-components/v3/table/TableContainer.vue +34 -0
- package/vue-components/v3/table/TableRow.vue +147 -0
- package/vue-components/v3/table/table-cell/ArrayCell.vue +111 -0
- package/vue-components/v3/table/table-cell/CellValue.vue +133 -0
- package/vue-components/v3/table/table-cell/GenericCell.vue +75 -0
- package/vue-components/v3/table/table-cell/ObjectCell.vue +110 -0
- package/vue-components/v3/table/table-cell/ValueWithModal.vue +43 -0
- package/vue-components/v3/tabs/EditorTabs.vue +36 -0
- package/vue-components/v3/tag/Tag.vue +17 -0
- package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +148 -0
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
input,
|
|
33
33
|
.ac-card,
|
|
34
34
|
textarea {
|
|
35
|
-
border: 1px solid $ac-primary;
|
|
35
|
+
border: 1px solid $ac-primary !important;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
p {
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
font-size: $font-size-small;
|
|
73
73
|
padding: 4px 7px;
|
|
74
74
|
height: 30px;
|
|
75
|
-
background: $ac-white;
|
|
75
|
+
background-color: $ac-white;
|
|
76
76
|
padding-right: 30px;
|
|
77
77
|
|
|
78
78
|
&[type="password"] {
|
|
@@ -93,6 +93,54 @@
|
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
+
&.is-normal {
|
|
97
|
+
input {
|
|
98
|
+
height: 45px;
|
|
99
|
+
font-size: 15px;
|
|
100
|
+
font-family: $ac-family-paragraph;
|
|
101
|
+
font-weight: 400;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.button {
|
|
105
|
+
&.is-information {
|
|
106
|
+
height: 45px;
|
|
107
|
+
width: 45px;
|
|
108
|
+
margin-top: 0;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
span.eye i.fa {
|
|
113
|
+
padding: 14px 10px;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.ac-search-button {
|
|
117
|
+
margin-top: -22.5px;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
label {
|
|
121
|
+
top: 13px;
|
|
122
|
+
font-size: $font-size-small;
|
|
123
|
+
|
|
124
|
+
&.show-label {
|
|
125
|
+
font-size: 12px;
|
|
126
|
+
color: $ac-color-value;
|
|
127
|
+
top: -9px;
|
|
128
|
+
font-weight: 500;
|
|
129
|
+
background-color: $ac-white;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.control {
|
|
134
|
+
&.has-icons-right {
|
|
135
|
+
.icon {
|
|
136
|
+
height: 45px;
|
|
137
|
+
width: 30px;
|
|
138
|
+
font-size: $font-size-small;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
96
144
|
&.is-small {
|
|
97
145
|
input {
|
|
98
146
|
height: 36px;
|
|
@@ -106,6 +154,7 @@
|
|
|
106
154
|
height: 36px;
|
|
107
155
|
width: 36px;
|
|
108
156
|
margin-top: 0;
|
|
157
|
+
padding: 10px;
|
|
109
158
|
}
|
|
110
159
|
}
|
|
111
160
|
|
|
@@ -120,11 +169,20 @@
|
|
|
120
169
|
label {
|
|
121
170
|
top: 8px;
|
|
122
171
|
font-size: $font-size-small;
|
|
172
|
+
&.switch-label {
|
|
173
|
+
top: 0;
|
|
174
|
+
}
|
|
123
175
|
|
|
124
176
|
&.show-label {
|
|
125
177
|
font-size: 12px;
|
|
126
178
|
top: -9px;
|
|
127
179
|
font-weight: 500;
|
|
180
|
+
color: $ac-color-value;
|
|
181
|
+
&.is-required {
|
|
182
|
+
&:after {
|
|
183
|
+
width: calc(100% + 10px);
|
|
184
|
+
}
|
|
185
|
+
}
|
|
128
186
|
}
|
|
129
187
|
}
|
|
130
188
|
|
|
@@ -138,6 +196,7 @@
|
|
|
138
196
|
}
|
|
139
197
|
}
|
|
140
198
|
}
|
|
199
|
+
|
|
141
200
|
&.is-extra-small {
|
|
142
201
|
input {
|
|
143
202
|
height: 32px;
|
|
@@ -165,6 +224,9 @@
|
|
|
165
224
|
label {
|
|
166
225
|
top: 8px;
|
|
167
226
|
font-size: $font-size-small;
|
|
227
|
+
&.switch-label {
|
|
228
|
+
top: 0;
|
|
229
|
+
}
|
|
168
230
|
|
|
169
231
|
&.show-label {
|
|
170
232
|
font-size: 12px;
|
|
@@ -182,13 +244,14 @@
|
|
|
182
244
|
}
|
|
183
245
|
}
|
|
184
246
|
}
|
|
247
|
+
|
|
185
248
|
&:last-child {
|
|
186
249
|
margin-bottom: 0;
|
|
187
250
|
}
|
|
188
251
|
|
|
189
252
|
&.is-dark {
|
|
190
253
|
input {
|
|
191
|
-
background: $ac-
|
|
254
|
+
background-color: $ac-color-heading;
|
|
192
255
|
border-color: transparent;
|
|
193
256
|
color: $ac-white;
|
|
194
257
|
|
|
@@ -209,7 +272,7 @@
|
|
|
209
272
|
left: 15px;
|
|
210
273
|
top: 11px;
|
|
211
274
|
cursor: text;
|
|
212
|
-
color: $ac-
|
|
275
|
+
color: $ac-label-text;
|
|
213
276
|
position: absolute;
|
|
214
277
|
z-index: 2;
|
|
215
278
|
transition: 0.3s ease-in-out;
|
|
@@ -229,14 +292,14 @@
|
|
|
229
292
|
left: 10px;
|
|
230
293
|
padding: 0 5px;
|
|
231
294
|
font-size: $font-size-small;
|
|
232
|
-
color: $ac-
|
|
295
|
+
color: $ac-color-value;
|
|
233
296
|
|
|
234
297
|
&:after {
|
|
235
298
|
position: absolute;
|
|
236
299
|
content: "";
|
|
237
300
|
left: 0;
|
|
238
301
|
top: 50%;
|
|
239
|
-
background: $ac-white;
|
|
302
|
+
background-color: $ac-white;
|
|
240
303
|
width: 100%;
|
|
241
304
|
height: 2px;
|
|
242
305
|
margin-top: -1px;
|
|
@@ -253,7 +316,7 @@
|
|
|
253
316
|
|
|
254
317
|
.button {
|
|
255
318
|
&.is-information {
|
|
256
|
-
background: transparent;
|
|
319
|
+
background-color: transparent;
|
|
257
320
|
border: none;
|
|
258
321
|
position: absolute;
|
|
259
322
|
right: 0;
|
|
@@ -264,14 +327,14 @@
|
|
|
264
327
|
&:focus {
|
|
265
328
|
outline: none;
|
|
266
329
|
box-shadow: none;
|
|
267
|
-
background: #e4e8ef;
|
|
330
|
+
background-color: #e4e8ef;
|
|
268
331
|
transform: scale(0.8);
|
|
269
332
|
}
|
|
270
333
|
}
|
|
271
334
|
}
|
|
272
335
|
|
|
273
336
|
.ac-search-button {
|
|
274
|
-
background: transparent;
|
|
337
|
+
background-color: transparent;
|
|
275
338
|
border: none;
|
|
276
339
|
position: absolute;
|
|
277
340
|
left: 0;
|
|
@@ -279,13 +342,13 @@
|
|
|
279
342
|
width: 35px;
|
|
280
343
|
height: 100%;
|
|
281
344
|
margin-top: -22.5px;
|
|
282
|
-
color: $ac-
|
|
345
|
+
color: $ac-label-text;
|
|
283
346
|
cursor: pointer;
|
|
284
347
|
}
|
|
285
348
|
|
|
286
349
|
.ac-dropdown-content {
|
|
287
350
|
position: absolute;
|
|
288
|
-
background: $ac-
|
|
351
|
+
background-color: $ac-blue-light;
|
|
289
352
|
width: 100%;
|
|
290
353
|
height: auto;
|
|
291
354
|
box-shadow: 0px 4px 16px rgba(132, 147, 168, 0.6);
|
|
@@ -302,7 +365,12 @@
|
|
|
302
365
|
transition: 0.3s;
|
|
303
366
|
|
|
304
367
|
&:hover {
|
|
305
|
-
background
|
|
368
|
+
background-color: hsla(
|
|
369
|
+
var(--hsl-hue),
|
|
370
|
+
var(--hsl-saturation),
|
|
371
|
+
var(--hsl-lightness),
|
|
372
|
+
0.2
|
|
373
|
+
);
|
|
306
374
|
color: $ac-primary;
|
|
307
375
|
}
|
|
308
376
|
}
|
|
@@ -311,25 +379,25 @@
|
|
|
311
379
|
}
|
|
312
380
|
|
|
313
381
|
.ac-textarea {
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
382
|
+
.ac-label {
|
|
383
|
+
&.is-required {
|
|
384
|
+
&:after {
|
|
385
|
+
width: calc(100% + 10px);
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
}
|
|
320
389
|
textarea {
|
|
321
|
-
border:
|
|
390
|
+
border: 1px solid $ac-label-text;
|
|
322
391
|
background-color: transparent;
|
|
323
|
-
padding
|
|
324
|
-
|
|
325
|
-
|
|
392
|
+
padding: 10px 15px;
|
|
393
|
+
min-height: 50px;
|
|
326
394
|
&.bg-white {
|
|
327
395
|
background-color: transparent;
|
|
328
396
|
}
|
|
329
397
|
|
|
330
398
|
&:focus {
|
|
331
399
|
outline: none;
|
|
332
|
-
border:
|
|
400
|
+
border: 1px solid $ac-primary;
|
|
333
401
|
}
|
|
334
402
|
}
|
|
335
403
|
}
|
|
@@ -338,22 +406,25 @@
|
|
|
338
406
|
.ac-card,
|
|
339
407
|
textarea {
|
|
340
408
|
background-color: $ac-white;
|
|
409
|
+
color: $ac-color-text;
|
|
341
410
|
height: 45px;
|
|
342
411
|
font-weight: 400;
|
|
343
412
|
width: 100%;
|
|
344
413
|
border-radius: 4px;
|
|
345
|
-
border: 1px solid $ac-
|
|
414
|
+
border: 1px solid $ac-label-text;
|
|
346
415
|
padding: 8px 15px;
|
|
347
416
|
font-size: $font-size-small;
|
|
348
417
|
|
|
349
418
|
&:hover {
|
|
350
|
-
border-color: $ac-
|
|
419
|
+
border-color: $ac-gray-lightest;
|
|
351
420
|
}
|
|
352
421
|
|
|
353
422
|
&.bg-white {
|
|
354
423
|
background-color: $ac-white;
|
|
355
424
|
}
|
|
356
|
-
|
|
425
|
+
&.StripeElement--focus {
|
|
426
|
+
border: 1px solid $ac-primary;
|
|
427
|
+
}
|
|
357
428
|
&:focus {
|
|
358
429
|
border: 1px solid $ac-primary;
|
|
359
430
|
outline: none;
|
|
@@ -390,11 +461,12 @@
|
|
|
390
461
|
|
|
391
462
|
span.eye {
|
|
392
463
|
i.fa {
|
|
393
|
-
color: $ac-
|
|
464
|
+
color: $ac-label-text;
|
|
394
465
|
position: absolute;
|
|
395
466
|
cursor: pointer;
|
|
396
467
|
padding: 15px;
|
|
397
468
|
right: 0;
|
|
469
|
+
top: 0;
|
|
398
470
|
}
|
|
399
471
|
}
|
|
400
472
|
|
|
@@ -429,7 +501,7 @@
|
|
|
429
501
|
top: 10px;
|
|
430
502
|
z-index: 1;
|
|
431
503
|
font-size: $font-size-small;
|
|
432
|
-
color: $ac-
|
|
504
|
+
color: $ac-label-text;
|
|
433
505
|
font-weight: 400;
|
|
434
506
|
}
|
|
435
507
|
}
|
|
@@ -449,11 +521,11 @@
|
|
|
449
521
|
}
|
|
450
522
|
|
|
451
523
|
label {
|
|
452
|
-
background-color:
|
|
524
|
+
background-color: transparent;
|
|
453
525
|
height: 36px;
|
|
454
526
|
font-weight: 400;
|
|
455
527
|
border-radius: 4px;
|
|
456
|
-
border: 1px solid $ac-
|
|
528
|
+
border: 1px solid $ac-label-text;
|
|
457
529
|
font-size: $font-size-small;
|
|
458
530
|
|
|
459
531
|
.file-cta {
|
|
@@ -462,7 +534,7 @@
|
|
|
462
534
|
}
|
|
463
535
|
|
|
464
536
|
&:hover {
|
|
465
|
-
border-color: $ac-
|
|
537
|
+
border-color: $ac-gray-lightest;
|
|
466
538
|
}
|
|
467
539
|
|
|
468
540
|
&.bg-white {
|
|
@@ -477,6 +549,23 @@
|
|
|
477
549
|
}
|
|
478
550
|
}
|
|
479
551
|
|
|
552
|
+
input#captcha {
|
|
553
|
+
background-color: $ac-white;
|
|
554
|
+
height: 36px;
|
|
555
|
+
font-weight: 400;
|
|
556
|
+
width: 100%;
|
|
557
|
+
border-radius: 4px;
|
|
558
|
+
border: 1px solid $ac-white-light;
|
|
559
|
+
padding: 8px 15px;
|
|
560
|
+
font-size: 13px;
|
|
561
|
+
transition: background-color 0.3s ease-in-out;
|
|
562
|
+
|
|
563
|
+
&:focus {
|
|
564
|
+
outline: none;
|
|
565
|
+
border-bottom: 1px solid $ac-label-text;
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
|
|
480
569
|
// AC-Checkbox
|
|
481
570
|
.ac-single-checkbox {
|
|
482
571
|
.is-checkradio {
|
|
@@ -497,7 +586,7 @@
|
|
|
497
586
|
.is-checkradio[type="checkbox"].ac-checkbox + label::after {
|
|
498
587
|
top: 6px;
|
|
499
588
|
left: 6px;
|
|
500
|
-
border-color:
|
|
589
|
+
border-color: $ac-gray-lightest;
|
|
501
590
|
width: 0.3rem;
|
|
502
591
|
height: 0.5rem;
|
|
503
592
|
}
|
|
@@ -507,25 +596,29 @@
|
|
|
507
596
|
}
|
|
508
597
|
|
|
509
598
|
.is-checkradio[type="checkbox"].ac-checkbox + label {
|
|
510
|
-
color: $ac-
|
|
599
|
+
color: $ac-color-text;
|
|
511
600
|
font-size: 13px !important;
|
|
512
601
|
padding-left: 25px;
|
|
513
602
|
user-select: none;
|
|
514
603
|
}
|
|
604
|
+
|
|
515
605
|
.is-checkradio[type="checkbox"].ac-checkbox:checked + label {
|
|
516
606
|
color: $ac-primary !important;
|
|
517
607
|
}
|
|
608
|
+
|
|
518
609
|
.is-checkradio[type="checkbox"].ac-checkbox + label {
|
|
519
|
-
color: $ac-
|
|
610
|
+
color: $ac-color-text;
|
|
520
611
|
font-size: 13px;
|
|
521
612
|
padding-left: 25px;
|
|
522
613
|
user-select: none;
|
|
523
614
|
}
|
|
615
|
+
|
|
524
616
|
.is-checkradio[type="checkbox"],
|
|
525
617
|
.is-checkradio[type="radio"] {
|
|
526
618
|
display: none;
|
|
527
619
|
}
|
|
528
620
|
}
|
|
621
|
+
|
|
529
622
|
.ac-single-radio {
|
|
530
623
|
&.is-selected {
|
|
531
624
|
.is-checkradio[type="radio"].ac-radio + label {
|
|
@@ -538,12 +631,14 @@
|
|
|
538
631
|
.is-checkradio[type="checkbox"] + label:before {
|
|
539
632
|
top: 3px;
|
|
540
633
|
}
|
|
634
|
+
|
|
541
635
|
// AC-Switch
|
|
542
636
|
.ac-single-switch {
|
|
543
637
|
label {
|
|
544
638
|
user-select: none;
|
|
545
639
|
font-size: 13px;
|
|
546
640
|
font-weight: 400;
|
|
641
|
+
color: $ac-color-text;
|
|
547
642
|
|
|
548
643
|
&::before {
|
|
549
644
|
background-color: #cad3df;
|
|
@@ -554,9 +649,42 @@
|
|
|
554
649
|
margin-top: 6px;
|
|
555
650
|
}
|
|
556
651
|
|
|
652
|
+
&.is-small {
|
|
653
|
+
label {
|
|
654
|
+
font-size: 13px !important;
|
|
655
|
+
}
|
|
656
|
+
.switch[type="checkbox"] + label {
|
|
657
|
+
font-size: 13px;
|
|
658
|
+
padding-top: 0;
|
|
659
|
+
padding-left: 40px;
|
|
660
|
+
height: auto;
|
|
661
|
+
|
|
662
|
+
&::before {
|
|
663
|
+
width: 30px;
|
|
664
|
+
height: 16.2px;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
&::after {
|
|
668
|
+
top: 2px;
|
|
669
|
+
left: 2px;
|
|
670
|
+
width: 12px;
|
|
671
|
+
height: 12px;
|
|
672
|
+
}
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
.switch[type="checkbox"]:checked + label {
|
|
676
|
+
&::after {
|
|
677
|
+
left: 15px;
|
|
678
|
+
}
|
|
679
|
+
}
|
|
680
|
+
}
|
|
681
|
+
|
|
557
682
|
.switch {
|
|
558
683
|
&[type="checkbox"] + label {
|
|
559
684
|
padding-top: 3px;
|
|
685
|
+
&::before {
|
|
686
|
+
background-color: $ac-gray-light;
|
|
687
|
+
}
|
|
560
688
|
}
|
|
561
689
|
|
|
562
690
|
&.ac-switch {
|
|
@@ -587,6 +715,14 @@
|
|
|
587
715
|
}
|
|
588
716
|
}
|
|
589
717
|
|
|
718
|
+
.ac-single-switch.is-small .switch[type="checkbox"] + label,
|
|
719
|
+
.buttons.are-small
|
|
720
|
+
.ac-single-switch.button.ac-button
|
|
721
|
+
.switch[type="checkbox"]
|
|
722
|
+
+ label {
|
|
723
|
+
height: 19px;
|
|
724
|
+
}
|
|
725
|
+
|
|
590
726
|
// transparent input
|
|
591
727
|
.transparent-input {
|
|
592
728
|
display: flex;
|
|
@@ -599,17 +735,17 @@
|
|
|
599
735
|
|
|
600
736
|
input {
|
|
601
737
|
border: none;
|
|
602
|
-
background: transparent;
|
|
738
|
+
background-color: transparent;
|
|
603
739
|
font-size: 18px;
|
|
604
740
|
font-weight: 400;
|
|
605
741
|
font-family: $ac-family-heading;
|
|
606
|
-
color:
|
|
742
|
+
color: $ac-color-value;
|
|
607
743
|
width: 100%;
|
|
608
744
|
padding: 5px 0;
|
|
609
745
|
|
|
610
746
|
&:focus {
|
|
611
747
|
outline: none;
|
|
612
|
-
border-bottom: 1px solid $ac-
|
|
748
|
+
border-bottom: 1px solid $ac-label-text;
|
|
613
749
|
}
|
|
614
750
|
}
|
|
615
751
|
}
|
|
@@ -621,6 +757,7 @@
|
|
|
621
757
|
padding-left: 25px;
|
|
622
758
|
font-size: 13px;
|
|
623
759
|
padding: 0.3rem 0.5rem 0.2rem 1.5rem;
|
|
760
|
+
|
|
624
761
|
&::after {
|
|
625
762
|
background-color: $ac-primary;
|
|
626
763
|
width: 16px;
|
|
@@ -657,7 +794,24 @@
|
|
|
657
794
|
}
|
|
658
795
|
}
|
|
659
796
|
}
|
|
797
|
+
// dark theme start
|
|
798
|
+
.is-dark-theme {
|
|
799
|
+
.ac-single-input {
|
|
800
|
+
input,
|
|
801
|
+
.file-input,
|
|
802
|
+
.ac-dropdown-content {
|
|
803
|
+
background-color: transparent;
|
|
804
|
+
}
|
|
660
805
|
|
|
806
|
+
label {
|
|
807
|
+
color: $ac-label-text;
|
|
808
|
+
}
|
|
809
|
+
.button.is-information:focus {
|
|
810
|
+
background-color: $dark-bg-light;
|
|
811
|
+
}
|
|
812
|
+
}
|
|
813
|
+
}
|
|
814
|
+
// dark theme end
|
|
661
815
|
/****************************************
|
|
662
816
|
Responsive Classes
|
|
663
817
|
*****************************************/
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
top: 0;
|
|
16
16
|
width: 100%;
|
|
17
17
|
height: 100%;
|
|
18
|
-
background:
|
|
18
|
+
background-color: $ac-black;
|
|
19
19
|
z-index: -1;
|
|
20
20
|
opacity: 0.5;
|
|
21
21
|
}
|
|
@@ -41,19 +41,19 @@
|
|
|
41
41
|
|
|
42
42
|
&.is-large {
|
|
43
43
|
.ac-modal-inner {
|
|
44
|
-
width: 1000px;
|
|
44
|
+
width: 1000px !important;
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
.ac-modal-inner {
|
|
49
49
|
margin: 0 auto;
|
|
50
|
-
background: $ac-white;
|
|
50
|
+
background-color: $ac-white;
|
|
51
51
|
border-radius: 4px;
|
|
52
52
|
overflow: hidden;
|
|
53
53
|
box-shadow: 12px 26px 118px rgba(0, 0, 0, 0.16);
|
|
54
54
|
|
|
55
55
|
.ac-modal-header {
|
|
56
|
-
background: $ac-white;
|
|
56
|
+
background-color: $ac-white;
|
|
57
57
|
padding: 10px 20px;
|
|
58
58
|
display: flex;
|
|
59
59
|
align-items: center;
|
|
@@ -96,6 +96,7 @@
|
|
|
96
96
|
&.is-description {
|
|
97
97
|
font-family: $ac-family-heading;
|
|
98
98
|
font-weight: 400;
|
|
99
|
+
color: $ac-color-value;
|
|
99
100
|
|
|
100
101
|
strong {
|
|
101
102
|
font-weight: 500;
|
|
@@ -107,7 +108,7 @@
|
|
|
107
108
|
}
|
|
108
109
|
|
|
109
110
|
.ac-modal-footer {
|
|
110
|
-
border-top: 1px solid $ac-
|
|
111
|
+
border-top: 1px solid $ac-white-light;
|
|
111
112
|
padding: 10px 20px;
|
|
112
113
|
}
|
|
113
114
|
}
|