@appscode/design-system 1.0.43-alpha.19 → 1.0.43-alpha.190
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 +6 -0
- package/base/utilities/_default.scss +269 -4
- package/base/utilities/_derived-variables.scss +0 -1
- package/base/utilities/_initial-variables.scss +17 -13
- package/base/utilities/_mixin.scss +1 -17
- package/base/utilities/_typography.scss +14 -4
- package/base/utilities/dark-theme.scss +9 -146
- package/components/_ac-accordion.scss +8 -4
- package/components/_ac-alert-box.scss +15 -7
- package/components/_ac-card.scss +33 -6
- package/components/_ac-code-highlight.scss +5 -1
- package/components/_ac-content-layout.scss +2 -2
- package/components/_ac-input.scss +63 -23
- package/components/_ac-multi-select.scss +187 -5
- package/components/_ac-options.scss +24 -9
- package/components/_ac-select-box.scss +13 -3
- package/components/_ac-table.scss +7 -5
- package/components/_ac-tabs.scss +42 -5
- package/components/_ac-terminal.scss +270 -0
- package/components/_all.scss +35 -0
- package/components/_app-drawer.scss +2 -2
- package/components/_breadcumb.scss +2 -0
- package/components/_buttons.scss +45 -36
- package/components/_card-body-wrapper.scss +2 -2
- package/components/_dashboard-header.scss +32 -0
- 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 +5 -3
- package/components/_left-sidebar-menu.scss +193 -39
- package/components/_monaco-editor.scss +1 -1
- package/components/_navbar.scss +125 -8
- package/components/_overview-info.scss +4 -4
- package/components/_pagination.scss +8 -0
- package/components/_payment-card.scss +10 -1
- package/components/_preview-modal.scss +15 -4
- package/components/_pricing-table.scss +1 -1
- package/components/_progress-bar.scss +4 -4
- package/components/_subscription-card.scss +12 -5
- package/components/_table-of-content.scss +1 -1
- package/components/_tfa.scss +69 -0
- package/components/_transitions.scss +261 -0
- package/components/_wizard.scss +16 -3
- package/components/ac-toaster/_ac-toasted.scss +1 -1
- package/components/bbum/_card-team.scss +1 -1
- package/components/bbum/_information-center.scss +15 -1
- package/components/bbum/_sign-up-notification.scss +1 -1
- package/components/bbum/_single-post-preview.scss +1 -1
- package/components/bbum/_user-profile.scss +91 -90
- package/components/ui-builder/_ui-builder.scss +43 -3
- package/components/ui-builder/_vue-open-api.scss +104 -0
- package/layouts/_all.scss +2 -0
- package/layouts/_code-preview.scss +5 -2
- package/main.scss +4 -54
- package/package.json +2 -7
- package/plugins/theme.js +4 -0
- package/plugins/time-convert.js +49 -0
- package/plugins/vue-toaster.js +3 -0
- 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 +5 -0
- package/vue-components/v2/button/DownloadBtn.vue +45 -0
- package/vue-components/v2/card/Card.vue +1 -0
- package/vue-components/v2/card/PaymentCards.vue +11 -2
- 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-fields/Input.vue +1 -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 +35 -4
- package/vue-components/v2/modals/DeleteConfirmationModal.vue +79 -0
- package/vue-components/v2/modals/JsonShowModal.vue +12 -2
- package/vue-components/v2/navbar/Appdrawer.vue +10 -9
- package/vue-components/v2/navbar/ThemeMode.vue +50 -44
- package/vue-components/v2/navbar/User.vue +202 -19
- package/vue-components/v2/notification/Notification.vue +101 -0
- package/vue-components/v2/notification/NotificationItem.vue +44 -0
- 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 +23 -1
- package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
- package/vue-components/v2/tab/TabItem.vue +1 -1
- package/vue-components/v2/table/Table.vue +44 -8
- package/vue-components/v2/table/TableRow.vue +12 -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 +5 -0
- package/vue-components/v3/content/ContentTable.vue +5 -0
- package/vue-components/v3/editor/Editor.vue +50 -30
- package/vue-components/v3/editor/FilteredFileEditor.vue +184 -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 +10 -10
- 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 +40 -16
- package/vue-components/v3/modals/DeleteConfirmationModal.vue +83 -0
- package/vue-components/v3/modals/JsonShowModal.vue +25 -16
- package/vue-components/v3/modals/LongRunningTasksModal.vue +337 -0
- package/vue-components/v3/navbar/Appdrawer.vue +12 -7
- package/vue-components/v3/navbar/ThemeMode.vue +49 -47
- package/vue-components/v3/navbar/User.vue +190 -16
- package/vue-components/v3/notification/Notification.vue +98 -0
- package/vue-components/v3/notification/NotificationItem.vue +52 -0
- package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
- package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
- package/vue-components/v3/table/MultiInfoTable.vue +143 -0
- package/vue-components/v3/table/Table.vue +35 -12
- package/vue-components/v3/table/TableContainer.vue +34 -0
- package/vue-components/v3/table/TableRow.vue +10 -2
- package/vue-components/v3/table/table-cell/CellValue.vue +26 -3
- package/vue-components/v3/table/table-cell/GenericCell.vue +62 -0
- package/vue-components/v3/table/table-cell/ObjectCell.vue +5 -1
- package/vue-components/v3/tabs/EditorTabs.vue +1 -1
- package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +148 -0
|
@@ -1,11 +1,39 @@
|
|
|
1
1
|
.ac-system-left-sidebar {
|
|
2
|
+
min-height: calc(100vh - 50px);
|
|
3
|
+
|
|
2
4
|
&.is-expanded {
|
|
3
5
|
.ac-left-sidebar-wrapper {
|
|
4
6
|
&.style-2 {
|
|
5
7
|
.ac-lef-sidebar-inner {
|
|
6
8
|
.ac-left-sidebar {
|
|
7
9
|
.ac-menu-list {
|
|
8
|
-
background-color:
|
|
10
|
+
background-color: $ac-white;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&.is-close {
|
|
19
|
+
.ac-left-sidebar-wrapper {
|
|
20
|
+
.ac-lef-sidebar-inner {
|
|
21
|
+
.ac-left-sidebar {
|
|
22
|
+
.menu-list {
|
|
23
|
+
&.ac-menu-list {
|
|
24
|
+
li {
|
|
25
|
+
a {
|
|
26
|
+
&.ac-dropdown-button {
|
|
27
|
+
.ac-arrow-down {
|
|
28
|
+
right: 0px !important;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
span {
|
|
33
|
+
margin-right: 0px;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
9
37
|
}
|
|
10
38
|
}
|
|
11
39
|
}
|
|
@@ -129,12 +157,17 @@
|
|
|
129
157
|
height: calc(100vh - 100px);
|
|
130
158
|
overflow-y: auto;
|
|
131
159
|
padding-top: 8px;
|
|
160
|
+
scrollbar-color: $ac-white-light transparent;
|
|
132
161
|
|
|
133
162
|
/* width */
|
|
134
163
|
&::-webkit-scrollbar {
|
|
135
164
|
display: none;
|
|
136
165
|
}
|
|
137
166
|
|
|
167
|
+
&::-webkit-scrollbar {
|
|
168
|
+
display: none;
|
|
169
|
+
}
|
|
170
|
+
|
|
138
171
|
li {
|
|
139
172
|
&.is-open {
|
|
140
173
|
a {
|
|
@@ -185,7 +218,11 @@
|
|
|
185
218
|
|
|
186
219
|
strong {
|
|
187
220
|
max-width: calc(100% - 65px);
|
|
188
|
-
line-break: anywhere;
|
|
221
|
+
// line-break: anywhere;
|
|
222
|
+
white-space: break-spaces;
|
|
223
|
+
display: flex;
|
|
224
|
+
align-items: center;
|
|
225
|
+
overflow: hidden;
|
|
189
226
|
font-weight: 400;
|
|
190
227
|
}
|
|
191
228
|
|
|
@@ -223,6 +260,10 @@
|
|
|
223
260
|
background-color: transparent;
|
|
224
261
|
|
|
225
262
|
span {
|
|
263
|
+
i.fa {
|
|
264
|
+
color: $ac-primary;
|
|
265
|
+
}
|
|
266
|
+
|
|
226
267
|
img {
|
|
227
268
|
filter: grayscale(0);
|
|
228
269
|
}
|
|
@@ -295,54 +336,167 @@
|
|
|
295
336
|
}
|
|
296
337
|
}
|
|
297
338
|
}
|
|
339
|
+
}
|
|
298
340
|
|
|
299
|
-
|
|
300
|
-
|
|
341
|
+
// widget menu end
|
|
342
|
+
// cluster switcher start
|
|
343
|
+
.ac-left-sidebar {
|
|
344
|
+
.ac-options.is-right {
|
|
345
|
+
.option-dots {
|
|
346
|
+
transition: 0.3s;
|
|
347
|
+
|
|
348
|
+
i.fa {
|
|
349
|
+
&.fa-angle-left {
|
|
350
|
+
font-size: 18px;
|
|
351
|
+
}
|
|
352
|
+
}
|
|
301
353
|
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
354
|
+
&:active {
|
|
355
|
+
i.fa {
|
|
356
|
+
background-color: $ac-white-lighter;
|
|
357
|
+
width: 25px;
|
|
358
|
+
height: 25px;
|
|
359
|
+
text-align: center;
|
|
360
|
+
line-height: 25px;
|
|
361
|
+
border-radius: 50%;
|
|
306
362
|
}
|
|
307
363
|
}
|
|
308
364
|
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
365
|
+
&:hover {
|
|
366
|
+
color: $ac-primary !important;
|
|
367
|
+
transform: scale(1.2);
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
}
|
|
314
371
|
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
372
|
+
.is-cluster-logo {
|
|
373
|
+
display: flex;
|
|
374
|
+
align-items: center;
|
|
375
|
+
margin-left: -8px;
|
|
376
|
+
padding: 5px;
|
|
377
|
+
}
|
|
319
378
|
|
|
320
|
-
|
|
321
|
-
|
|
379
|
+
.multiselect {
|
|
380
|
+
height: 50px;
|
|
322
381
|
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
}
|
|
326
|
-
}
|
|
382
|
+
// commented out to set full width select box when right content is not present
|
|
383
|
+
// width: 234px;
|
|
327
384
|
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
}
|
|
331
|
-
}
|
|
385
|
+
left: 0px;
|
|
386
|
+
top: -5px;
|
|
332
387
|
|
|
333
|
-
|
|
334
|
-
|
|
388
|
+
.multiselect__select {
|
|
389
|
+
height: 50px;
|
|
390
|
+
top: 4px;
|
|
391
|
+
}
|
|
335
392
|
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
rgba(25, 113, 189, 0) 138.7%
|
|
342
|
-
);
|
|
393
|
+
.multiselect__tags {
|
|
394
|
+
border: none !important;
|
|
395
|
+
background-color: $ac-bg-light-gray;
|
|
396
|
+
min-height: 54px;
|
|
397
|
+
border-radius: 0;
|
|
343
398
|
|
|
344
|
-
|
|
345
|
-
|
|
399
|
+
.multiselect__placeholder {
|
|
400
|
+
padding-top: 12px !important;
|
|
401
|
+
font-size: 14px;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.multiselect__input {
|
|
405
|
+
background-color: $ac-bg-light-gray !important;
|
|
406
|
+
top: 13px;
|
|
407
|
+
|
|
408
|
+
&::placeholder {
|
|
409
|
+
font-size: 12px;
|
|
410
|
+
font-weight: 500;
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.multiselect__single {
|
|
416
|
+
background-color: $ac-bg-light-gray !important;
|
|
417
|
+
top: 14px !important;
|
|
418
|
+
|
|
419
|
+
img {
|
|
420
|
+
width: 20px;
|
|
421
|
+
margin-right: 8px;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
span {
|
|
425
|
+
span {
|
|
426
|
+
overflow: hidden;
|
|
427
|
+
text-overflow: ellipsis;
|
|
428
|
+
display: -webkit-box;
|
|
429
|
+
line-clamp: 1;
|
|
430
|
+
-webkit-line-clamp: 1;
|
|
431
|
+
box-orient: vertical;
|
|
432
|
+
-webkit-box-orient: vertical;
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.multiselect__content-wrapper {
|
|
439
|
+
border: 1px solid $ac-white-light;
|
|
440
|
+
|
|
441
|
+
.multiselect__content {
|
|
442
|
+
.multiselect__element {
|
|
443
|
+
.multiselect__option {
|
|
444
|
+
display: flex;
|
|
445
|
+
align-items: center;
|
|
446
|
+
font-size: 14px;
|
|
447
|
+
|
|
448
|
+
img {
|
|
449
|
+
width: 25px;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
p {
|
|
453
|
+
color: $ac-color-text;
|
|
454
|
+
font-weight: 500;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
.location {
|
|
458
|
+
color: $ac-color-text;
|
|
459
|
+
font-weight: 400;
|
|
460
|
+
opacity: 0.8;
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
// cluster switcher end
|
|
469
|
+
|
|
470
|
+
// dark theme start
|
|
471
|
+
.is-dark-theme {
|
|
472
|
+
body {
|
|
473
|
+
.ac-system-body {
|
|
474
|
+
.ac-system-left-sidebar {
|
|
475
|
+
background-color: var(--dark-bg);
|
|
476
|
+
}
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
.ac-left-sidebar-wrapper {
|
|
480
|
+
.ac-lef-sidebar-inner {
|
|
481
|
+
.ac-left-sidebar {
|
|
482
|
+
.menu-list {
|
|
483
|
+
&.ac-menu-list {
|
|
484
|
+
li {
|
|
485
|
+
a {
|
|
486
|
+
&.is-active {
|
|
487
|
+
font-weight: 500;
|
|
488
|
+
color: $ac-full-white !important;
|
|
489
|
+
|
|
490
|
+
span {
|
|
491
|
+
i.fa {
|
|
492
|
+
color: $ac-primary;
|
|
493
|
+
}
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
&:after {
|
|
497
|
+
background: var(--dark-bg-light) !important;
|
|
498
|
+
}
|
|
499
|
+
}
|
|
346
500
|
}
|
|
347
501
|
}
|
|
348
502
|
}
|
|
@@ -353,7 +507,7 @@
|
|
|
353
507
|
}
|
|
354
508
|
}
|
|
355
509
|
|
|
356
|
-
//
|
|
510
|
+
// dark theme end
|
|
357
511
|
/****************************************
|
|
358
512
|
Responsive Classes
|
|
359
513
|
*****************************************/
|
package/components/_navbar.scss
CHANGED
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
color: $ac-white;
|
|
53
53
|
font-size: $font-size-small;
|
|
54
54
|
font-weight: 600;
|
|
55
|
-
font-family:
|
|
55
|
+
font-family: $ac-family-heading;
|
|
56
56
|
width: 100%;
|
|
57
57
|
padding-left: 15px;
|
|
58
58
|
|
|
@@ -131,8 +131,35 @@
|
|
|
131
131
|
.ac-menu-content {
|
|
132
132
|
opacity: 1;
|
|
133
133
|
visibility: visible;
|
|
134
|
-
top:
|
|
134
|
+
top: 40px;
|
|
135
|
+
&.theme-choice {
|
|
136
|
+
transition: none;
|
|
137
|
+
padding: 10px 10px;
|
|
138
|
+
min-width: 150px !important;
|
|
139
|
+
max-height: 150px;
|
|
140
|
+
overflow-y: auto;
|
|
141
|
+
border-radius: 4px;
|
|
142
|
+
left: 0;
|
|
143
|
+
background-color: $ac-white;
|
|
144
|
+
ul {
|
|
145
|
+
li {
|
|
146
|
+
width: 40px;
|
|
147
|
+
height: 40px;
|
|
148
|
+
line-height: 42px;
|
|
149
|
+
border-radius: 4px;
|
|
150
|
+
text-align: center;
|
|
151
|
+
cursor: pointer;
|
|
135
152
|
|
|
153
|
+
&.is-active {
|
|
154
|
+
color: $ac-white;
|
|
155
|
+
background: $ac-primary;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
// &::after {
|
|
160
|
+
// right: 90px;
|
|
161
|
+
// }
|
|
162
|
+
}
|
|
136
163
|
&::after {
|
|
137
164
|
position: absolute;
|
|
138
165
|
content: "";
|
|
@@ -190,7 +217,7 @@
|
|
|
190
217
|
strong {
|
|
191
218
|
color: $ac-white;
|
|
192
219
|
margin-left: 45px;
|
|
193
|
-
font-weight:
|
|
220
|
+
font-weight: 500;
|
|
194
221
|
font-size: $font-size-small;
|
|
195
222
|
}
|
|
196
223
|
|
|
@@ -216,7 +243,10 @@
|
|
|
216
243
|
min-width: 180px;
|
|
217
244
|
opacity: 0;
|
|
218
245
|
visibility: hidden;
|
|
219
|
-
transition: 0.3s ease-in
|
|
246
|
+
transition: 0.3s ease-in;
|
|
247
|
+
&.theme-choice {
|
|
248
|
+
left: 0;
|
|
249
|
+
}
|
|
220
250
|
|
|
221
251
|
.user-profile-wrapper {
|
|
222
252
|
background-color: $ac-white;
|
|
@@ -370,9 +400,9 @@
|
|
|
370
400
|
background-color: $ac-gray-light;
|
|
371
401
|
}
|
|
372
402
|
|
|
373
|
-
&:last-child {
|
|
374
|
-
|
|
375
|
-
}
|
|
403
|
+
// &:last-child {
|
|
404
|
+
// right: 0;
|
|
405
|
+
// }
|
|
376
406
|
|
|
377
407
|
&.is-notification {
|
|
378
408
|
right: 0;
|
|
@@ -465,7 +495,7 @@
|
|
|
465
495
|
|
|
466
496
|
p {
|
|
467
497
|
font-size: $font-size-tiny;
|
|
468
|
-
color: $ac-
|
|
498
|
+
color: $ac-label-text;
|
|
469
499
|
|
|
470
500
|
&.is-success {
|
|
471
501
|
color: $ac-success;
|
|
@@ -521,6 +551,93 @@
|
|
|
521
551
|
}
|
|
522
552
|
}
|
|
523
553
|
|
|
554
|
+
.ac-menu-item {
|
|
555
|
+
li {
|
|
556
|
+
&.is-close {
|
|
557
|
+
ul {
|
|
558
|
+
max-height: 0;
|
|
559
|
+
visibility: hidden;
|
|
560
|
+
transition: max-height 0.25s ease-out;
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
&.is-open {
|
|
564
|
+
ul {
|
|
565
|
+
max-height: 200px;
|
|
566
|
+
visibility: visible;
|
|
567
|
+
transition: max-height 0.25s ease-out;
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
.is-fullwidth {
|
|
572
|
+
width: 100%;
|
|
573
|
+
}
|
|
574
|
+
.navbar-dropdown-wrapper {
|
|
575
|
+
width: 300px;
|
|
576
|
+
transition: width 0.9s ease-in-out;
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
.theme-choicee {
|
|
580
|
+
border: 1px solid $ac-white-light;
|
|
581
|
+
li {
|
|
582
|
+
border-right: 1px solid $ac-white-light;
|
|
583
|
+
cursor: pointer;
|
|
584
|
+
transition: 0.3s ease-in-out;
|
|
585
|
+
&:last-child {
|
|
586
|
+
border-right: none;
|
|
587
|
+
}
|
|
588
|
+
&:hover {
|
|
589
|
+
color: $ac-black;
|
|
590
|
+
}
|
|
591
|
+
&.is-active {
|
|
592
|
+
background-color: $ac-white-light;
|
|
593
|
+
}
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
// start dark theme
|
|
597
|
+
.is-dark-theme {
|
|
598
|
+
body {
|
|
599
|
+
.ac-navbar-area {
|
|
600
|
+
background-color: var(--dark-bg-light);
|
|
601
|
+
--ac-white: #ffffff;
|
|
602
|
+
--ac-white-lighter: #f1f1f1;
|
|
603
|
+
|
|
604
|
+
.ac-navbar {
|
|
605
|
+
.search-item {
|
|
606
|
+
background-color: rgba(0, 0, 0, 0.2);
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
.ac-navbar-menu {
|
|
610
|
+
.ac-menu-item {
|
|
611
|
+
.quick-access {
|
|
612
|
+
--ac-white: var(--dark-bg-light);
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
.ac-menu-content {
|
|
616
|
+
&.theme-choice {
|
|
617
|
+
background-color: var(--dark-bg-light);
|
|
618
|
+
}
|
|
619
|
+
background-color: var(--dark-bg-light);
|
|
620
|
+
|
|
621
|
+
ul {
|
|
622
|
+
background-color: var(--dark-bg-light);
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
&::after {
|
|
626
|
+
--ac-white: var(--dark-bg-light);
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
.user-profile-wrapper {
|
|
630
|
+
--ac-white: var(--dark-bg-light);
|
|
631
|
+
}
|
|
632
|
+
}
|
|
633
|
+
}
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
// end dark theme code
|
|
640
|
+
|
|
524
641
|
/****************************************
|
|
525
642
|
Responsive Classes
|
|
526
643
|
*****************************************/
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
color: $ac-color-heading;
|
|
10
10
|
font-weight: 500;
|
|
11
11
|
padding: 20px;
|
|
12
|
-
border-bottom: 1px solid $
|
|
12
|
+
border-bottom: 1px solid $ac-white-light;
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
|
|
@@ -41,13 +41,13 @@
|
|
|
41
41
|
|
|
42
42
|
h4 {
|
|
43
43
|
font-size: 12px;
|
|
44
|
-
color:
|
|
44
|
+
color: $ac-color-value;
|
|
45
45
|
font-weight: 500;
|
|
46
46
|
opacity: 0.5;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
.button {
|
|
50
|
-
color:
|
|
50
|
+
color: $ac-color-value;
|
|
51
51
|
text-decoration: underline;
|
|
52
52
|
}
|
|
53
53
|
}
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
font-size: 16px;
|
|
71
71
|
color: #f99a00;
|
|
72
72
|
font-weight: 500;
|
|
73
|
-
font-family:
|
|
73
|
+
font-family: $ac-family-heading;
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
}
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
&.add-card {
|
|
35
35
|
background-color: transparent;
|
|
36
36
|
box-shadow: none;
|
|
37
|
-
border: 2px dashed
|
|
37
|
+
border: 2px dashed $ac-white-light;
|
|
38
38
|
display: flex;
|
|
39
39
|
align-items: center;
|
|
40
40
|
justify-content: center;
|
|
@@ -218,6 +218,15 @@
|
|
|
218
218
|
}
|
|
219
219
|
}
|
|
220
220
|
|
|
221
|
+
// dark theme start
|
|
222
|
+
.is-dark-theme {
|
|
223
|
+
.ac-payment-card,
|
|
224
|
+
.ac-single-card,
|
|
225
|
+
.option-dots {
|
|
226
|
+
--ac-white: var(--ac-white-text);
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
// dark theme end
|
|
221
230
|
/****************************************
|
|
222
231
|
Responsive Classes
|
|
223
232
|
*****************************************/
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
top: -50px;
|
|
56
56
|
width: calc(100% + 90px);
|
|
57
57
|
height: 100%;
|
|
58
|
-
background-color: $ac-
|
|
58
|
+
background-color: $ac-white;
|
|
59
59
|
opacity: 0.8;
|
|
60
60
|
z-index: -1;
|
|
61
61
|
}
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
font-size: 14px;
|
|
139
139
|
line-height: 100%;
|
|
140
140
|
color: $ac-color-text;
|
|
141
|
-
border-top: 1px solid
|
|
141
|
+
border-top: 1px solid $ac-white-light;
|
|
142
142
|
|
|
143
143
|
span {
|
|
144
144
|
img {
|
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
|
|
151
151
|
&:last-child {
|
|
152
152
|
a {
|
|
153
|
-
border-bottom: 1px solid
|
|
153
|
+
border-bottom: 1px solid $ac-white-light;
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
156
|
}
|
|
@@ -162,7 +162,7 @@
|
|
|
162
162
|
width: 100%;
|
|
163
163
|
|
|
164
164
|
.code-preview {
|
|
165
|
-
background-color:
|
|
165
|
+
background-color: $ac-white-light;
|
|
166
166
|
border-radius: 4px;
|
|
167
167
|
display: flex;
|
|
168
168
|
|
|
@@ -178,3 +178,14 @@
|
|
|
178
178
|
}
|
|
179
179
|
}
|
|
180
180
|
}
|
|
181
|
+
.left-content {
|
|
182
|
+
.ac-files {
|
|
183
|
+
max-height: 350px;
|
|
184
|
+
overflow-y: auto;
|
|
185
|
+
padding: 10px;
|
|
186
|
+
span {
|
|
187
|
+
width: 20px;
|
|
188
|
+
white-space: nowrap;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
}
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
.progress-tooltip-info {
|
|
16
16
|
align-items: center;
|
|
17
17
|
background-color: $ac-bg-light-gray;
|
|
18
|
-
border: 1px solid $ac-
|
|
18
|
+
border: 1px solid $ac-label-text;
|
|
19
19
|
border-radius: 10px;
|
|
20
|
-
box-shadow: 0 0 2px $ac-
|
|
20
|
+
box-shadow: 0 0 2px $ac-label-text;
|
|
21
21
|
color: $ac-primary;
|
|
22
22
|
display: inline-flex;
|
|
23
23
|
font-family: sans-serif;
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
left: 50%;
|
|
42
42
|
transform: translateX(-50%);
|
|
43
43
|
border-width: 8px;
|
|
44
|
-
border-top-color: $ac-
|
|
44
|
+
border-top-color: $ac-label-text;
|
|
45
45
|
bottom: -16px;
|
|
46
46
|
left: 50%;
|
|
47
47
|
}
|
|
@@ -200,7 +200,7 @@
|
|
|
200
200
|
display: flex;
|
|
201
201
|
justify-content: space-between;
|
|
202
202
|
font-size: 12px;
|
|
203
|
-
color:
|
|
203
|
+
color: $ac-color-value;
|
|
204
204
|
margin-bottom: 5px;
|
|
205
205
|
}
|
|
206
206
|
.progress-line {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
.single-subscription-card {
|
|
6
|
-
border: 1px solid $ac-
|
|
6
|
+
border: 1px solid $ac-blue-light;
|
|
7
7
|
background-color: $ac-white;
|
|
8
8
|
padding: 10px;
|
|
9
9
|
transition: 0.3s ease-in-out;
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
padding: 0;
|
|
51
51
|
|
|
52
52
|
h5 {
|
|
53
|
-
font-family:
|
|
53
|
+
font-family: $ac-family-heading;
|
|
54
54
|
font-style: normal;
|
|
55
55
|
font-weight: 600;
|
|
56
56
|
font-size: 14px;
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
font-weight: normal;
|
|
72
72
|
font-size: 12px;
|
|
73
73
|
line-height: 14px;
|
|
74
|
-
color:
|
|
74
|
+
color: $ac-color-value;
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
li {
|
|
@@ -81,10 +81,10 @@
|
|
|
81
81
|
font-size: 14px;
|
|
82
82
|
line-height: 16px;
|
|
83
83
|
padding-bottom: 8px;
|
|
84
|
-
color:
|
|
84
|
+
color: $ac-color-value;
|
|
85
85
|
|
|
86
86
|
.fa {
|
|
87
|
-
color:
|
|
87
|
+
color: $ac-color-value;
|
|
88
88
|
margin-right: 10px;
|
|
89
89
|
}
|
|
90
90
|
}
|
|
@@ -121,6 +121,13 @@
|
|
|
121
121
|
}
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
+
// dark theme start
|
|
125
|
+
.is-dark-theme {
|
|
126
|
+
.single-subscription-card {
|
|
127
|
+
background-color: var(--dark-bg-light);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
// dark theme end
|
|
124
131
|
/****************************************
|
|
125
132
|
Responsive Classes
|
|
126
133
|
*****************************************/
|