@appscode/design-system 1.0.3-alpha.9 → 1.0.43-alpha.102
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/_default.scss +285 -23
- package/base/utilities/_derived-variables.scss +2 -15
- package/base/utilities/_initial-variables.scss +99 -64
- package/base/utilities/_mixin.scss +90 -10
- package/base/utilities/_typography.scss +23 -7
- package/base/utilities/dark-theme.scss +25 -0
- package/components/_ac-accordion.scss +1 -0
- package/components/_ac-alert-box.scss +47 -11
- package/components/_ac-card.scss +55 -20
- package/components/_ac-code-highlight.scss +7 -1
- package/components/_ac-content-layout.scss +4 -4
- package/components/_ac-drag.scss +6 -6
- package/components/_ac-input.scss +140 -38
- package/components/_ac-modal.scss +5 -4
- package/components/_ac-multi-select.scss +220 -18
- package/components/_ac-options.scss +31 -16
- package/components/_ac-select-box.scss +15 -5
- package/components/_ac-table.scss +88 -47
- package/components/_ac-tabs.scss +72 -23
- package/components/_ac-tags.scss +2 -2
- package/components/_ac-terminal.scss +272 -0
- package/components/_app-drawer.scss +6 -6
- package/components/_breadcumb.scss +8 -3
- package/components/_buttons.scss +86 -33
- package/components/_card-body-wrapper.scss +3 -3
- package/components/_dashboard-header.scss +1 -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 +206 -46
- package/components/_monaco-editor.scss +1 -1
- package/components/_navbar.scss +104 -27
- 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 +8 -8
- 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/_widget-menu.scss +9 -9
- package/components/_wizard.scss +32 -20
- package/components/ac-toaster/_ac-toasted.scss +40 -8
- 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 +9 -9
- package/components/bbum/_user-profile.scss +97 -90
- package/components/ui-builder/_ui-builder.scss +31 -12
- package/components/ui-builder/_vue-open-api.scss +98 -0
- package/layouts/_404.scss +2 -1
- package/layouts/_code-preview.scss +14 -6
- package/main.scss +4 -0
- package/package.json +2 -7
- package/plugins/theme.js +142 -0
- package/plugins/vue-toaster.js +7 -6
- package/vue-components/v2/breadcrumbs/Breadcrumb.vue +95 -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/PaymentCards.vue +16 -10
- package/vue-components/v2/content/ContentHeader.vue +1 -1
- package/vue-components/v2/editor/Editor.vue +37 -17
- package/vue-components/v2/editor/ResourceKeyValueEditor.vue +232 -0
- package/vue-components/v2/header/Header.vue +0 -1
- package/vue-components/v2/modal/Modal.vue +32 -14
- package/vue-components/v2/modals/JsonShowModal.vue +0 -1
- package/vue-components/v2/navbar/Appdrawer.vue +9 -6
- package/vue-components/v2/navbar/ThemeMode.vue +120 -0
- package/vue-components/v2/pagination/Pagination.vue +8 -1
- 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/table/InfoTable.vue +13 -3
- package/vue-components/v2/table/Table.vue +75 -5
- package/vue-components/v2/table/TableRow.vue +17 -8
- package/vue-components/v2/table/table-cell/CellValue.vue +10 -1
- package/vue-components/v2/tabs/EditorTabs.vue +1 -1
- package/vue-components/v3/button/Button.vue +73 -0
- package/vue-components/v3/content/ContentHeader.vue +54 -0
- package/vue-components/v3/content/ContentTable.vue +65 -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 +157 -0
- package/vue-components/v3/form-fields/Input.vue +21 -0
- package/vue-components/v3/header/Header.vue +45 -0
- package/vue-components/v3/modal/Modal.vue +135 -0
- package/vue-components/v3/modals/JsonShowModal.vue +87 -0
- package/vue-components/v3/navbar/Appdrawer.vue +63 -0
- package/vue-components/v3/navbar/ThemeMode.vue +128 -0
- package/vue-components/v3/navbar/User.vue +64 -0
- package/vue-components/v3/pagination/Pagination.vue +159 -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/Table.vue +238 -0
- package/vue-components/v3/table/TableCell.vue +28 -0
- package/vue-components/v3/table/TableRow.vue +60 -0
- package/vue-components/v3/table/table-cell/ArrayCell.vue +111 -0
- package/vue-components/v3/table/table-cell/CellValue.vue +117 -0
- package/vue-components/v3/table/table-cell/ObjectCell.vue +105 -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/components/_navbar.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
.ac-navbar-area {
|
|
2
|
-
background: $ac-primary;
|
|
2
|
+
background-color: $ac-primary;
|
|
3
3
|
box-shadow: $ac-shadow-3;
|
|
4
4
|
position: fixed;
|
|
5
5
|
width: 100%;
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
color: #3a3a3a !important;
|
|
14
14
|
}
|
|
15
15
|
.drawer-icon svg {
|
|
16
|
-
fill:
|
|
16
|
+
fill: $ac-color-text !important;
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
.ac-navbar {
|
|
@@ -32,13 +32,13 @@
|
|
|
32
32
|
color: $ac-white;
|
|
33
33
|
}
|
|
34
34
|
img {
|
|
35
|
-
height:
|
|
35
|
+
height: 30px;
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
.search-item {
|
|
39
39
|
display: flex;
|
|
40
40
|
align-items: center;
|
|
41
|
-
background: rgba(255, 255, 255, 0.2);
|
|
41
|
+
background-color: rgba(255, 255, 255, 0.2);
|
|
42
42
|
padding: 5px 20px;
|
|
43
43
|
border-radius: 4px;
|
|
44
44
|
|
|
@@ -47,12 +47,12 @@
|
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
input {
|
|
50
|
-
background: transparent;
|
|
50
|
+
background-color: transparent;
|
|
51
51
|
border: none;
|
|
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
|
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
top: 0;
|
|
108
108
|
width: 100%;
|
|
109
109
|
height: 100%;
|
|
110
|
-
background-color:
|
|
110
|
+
background-color: $ac-black;
|
|
111
111
|
opacity: 0.2;
|
|
112
112
|
z-index: 1;
|
|
113
113
|
}
|
|
@@ -131,14 +131,41 @@
|
|
|
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: "";
|
|
139
166
|
right: 15px;
|
|
140
167
|
top: -6px;
|
|
141
|
-
background: $ac-white;
|
|
168
|
+
background-color: $ac-white;
|
|
142
169
|
width: 15px;
|
|
143
170
|
height: 15px;
|
|
144
171
|
transform: rotate(45deg);
|
|
@@ -153,7 +180,7 @@
|
|
|
153
180
|
}
|
|
154
181
|
|
|
155
182
|
.ac-nav-button {
|
|
156
|
-
background: transparent;
|
|
183
|
+
background-color: transparent;
|
|
157
184
|
border: none;
|
|
158
185
|
color: $ac-white-lighter;
|
|
159
186
|
padding: 0 14px;
|
|
@@ -173,7 +200,7 @@
|
|
|
173
200
|
right: 5px;
|
|
174
201
|
width: 15px;
|
|
175
202
|
height: 15px;
|
|
176
|
-
background: $ac-white;
|
|
203
|
+
background-color: $ac-white;
|
|
177
204
|
font-size: 12px;
|
|
178
205
|
line-height: 15px;
|
|
179
206
|
border-radius: 50%;
|
|
@@ -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;
|
|
@@ -226,7 +256,7 @@
|
|
|
226
256
|
.profile-area {
|
|
227
257
|
display: flex;
|
|
228
258
|
align-items: center;
|
|
229
|
-
border-bottom: 1px solid
|
|
259
|
+
border-bottom: 1px solid $ac-white-light;
|
|
230
260
|
padding-bottom: 10px;
|
|
231
261
|
margin-bottom: 10px;
|
|
232
262
|
|
|
@@ -255,6 +285,7 @@
|
|
|
255
285
|
|
|
256
286
|
.profile-info {
|
|
257
287
|
p {
|
|
288
|
+
color: $ac-color-text;
|
|
258
289
|
font-size: $font-size-small;
|
|
259
290
|
font-weight: 500;
|
|
260
291
|
line-height: 1.3;
|
|
@@ -283,7 +314,7 @@
|
|
|
283
314
|
}
|
|
284
315
|
|
|
285
316
|
&.quick-access {
|
|
286
|
-
background: $ac-white;
|
|
317
|
+
background-color: $ac-white;
|
|
287
318
|
padding: 20px;
|
|
288
319
|
min-width: 260px !important;
|
|
289
320
|
max-height: 250px;
|
|
@@ -294,19 +325,19 @@
|
|
|
294
325
|
display: flex;
|
|
295
326
|
justify-content: space-between;
|
|
296
327
|
align-items: center;
|
|
297
|
-
border-bottom: 1px solid
|
|
328
|
+
border-bottom: 1px solid $ac-white-light;
|
|
298
329
|
padding-bottom: 20px;
|
|
299
330
|
|
|
300
331
|
p {
|
|
301
332
|
font-size: $font-size-small;
|
|
302
|
-
color:
|
|
333
|
+
color: $ac-color-text;
|
|
303
334
|
}
|
|
304
335
|
|
|
305
336
|
button {
|
|
306
|
-
background: transparent;
|
|
337
|
+
background-color: transparent;
|
|
307
338
|
border: none;
|
|
308
339
|
cursor: pointer;
|
|
309
|
-
color:
|
|
340
|
+
color: $ac-color-value;
|
|
310
341
|
}
|
|
311
342
|
}
|
|
312
343
|
|
|
@@ -315,7 +346,7 @@
|
|
|
315
346
|
|
|
316
347
|
p {
|
|
317
348
|
font-size: $font-size-small;
|
|
318
|
-
color:
|
|
349
|
+
color: $ac-color-text;
|
|
319
350
|
}
|
|
320
351
|
|
|
321
352
|
.organizations {
|
|
@@ -341,6 +372,7 @@
|
|
|
341
372
|
padding: 0;
|
|
342
373
|
font-size: $font-size-tiny;
|
|
343
374
|
color: #eb5757;
|
|
375
|
+
background-color: transparent;
|
|
344
376
|
}
|
|
345
377
|
}
|
|
346
378
|
}
|
|
@@ -359,22 +391,22 @@
|
|
|
359
391
|
|
|
360
392
|
/* Handle */
|
|
361
393
|
&::-webkit-scrollbar-thumb {
|
|
362
|
-
background:
|
|
394
|
+
background-color: $ac-gray-light;
|
|
363
395
|
border-radius: 10px;
|
|
364
396
|
}
|
|
365
397
|
|
|
366
398
|
/* Handle on hover */
|
|
367
399
|
&::-webkit-scrollbar-thumb:hover {
|
|
368
|
-
background:
|
|
400
|
+
background-color: $ac-gray-light;
|
|
369
401
|
}
|
|
370
402
|
|
|
371
|
-
&:last-child {
|
|
372
|
-
|
|
373
|
-
}
|
|
403
|
+
// &:last-child {
|
|
404
|
+
// right: 0;
|
|
405
|
+
// }
|
|
374
406
|
|
|
375
407
|
&.is-notification {
|
|
376
408
|
right: 0;
|
|
377
|
-
background: $ac-white;
|
|
409
|
+
background-color: $ac-white;
|
|
378
410
|
box-shadow: 0px 4px 8px rgba(84, 101, 126, 0.2);
|
|
379
411
|
border-radius: 4px;
|
|
380
412
|
min-width: 330px;
|
|
@@ -463,7 +495,7 @@
|
|
|
463
495
|
|
|
464
496
|
p {
|
|
465
497
|
font-size: $font-size-tiny;
|
|
466
|
-
color: $ac-
|
|
498
|
+
color: $ac-label-text;
|
|
467
499
|
|
|
468
500
|
&.is-success {
|
|
469
501
|
color: $ac-success;
|
|
@@ -493,7 +525,7 @@
|
|
|
493
525
|
}
|
|
494
526
|
|
|
495
527
|
ul {
|
|
496
|
-
background: $ac-white;
|
|
528
|
+
background-color: $ac-white;
|
|
497
529
|
padding: 0;
|
|
498
530
|
border-radius: 4px;
|
|
499
531
|
overflow: hidden;
|
|
@@ -519,6 +551,51 @@
|
|
|
519
551
|
}
|
|
520
552
|
}
|
|
521
553
|
|
|
554
|
+
// start dark theme
|
|
555
|
+
.is-dark-theme {
|
|
556
|
+
body {
|
|
557
|
+
.ac-navbar-area {
|
|
558
|
+
background-color: var(--dark-bg-light);
|
|
559
|
+
--ac-white: #ffffff;
|
|
560
|
+
--ac-white-lighter: #f1f1f1;
|
|
561
|
+
|
|
562
|
+
.ac-navbar {
|
|
563
|
+
.search-item {
|
|
564
|
+
background-color: rgba(0, 0, 0, 0.2);
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.ac-navbar-menu {
|
|
568
|
+
.ac-menu-item {
|
|
569
|
+
.quick-access {
|
|
570
|
+
--ac-white: var(--dark-bg-light);
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.ac-menu-content {
|
|
574
|
+
&.theme-choice {
|
|
575
|
+
background-color: var(--dark-bg-light);
|
|
576
|
+
}
|
|
577
|
+
background-color: var(--dark-bg-light);
|
|
578
|
+
|
|
579
|
+
ul {
|
|
580
|
+
background-color: var(--dark-bg-light);
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
&::after {
|
|
584
|
+
--ac-white: var(--dark-bg-light);
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.user-profile-wrapper {
|
|
588
|
+
--ac-white: var(--dark-bg-light);
|
|
589
|
+
}
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
}
|
|
593
|
+
}
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
// end dark theme code
|
|
598
|
+
|
|
522
599
|
/****************************************
|
|
523
600
|
Responsive Classes
|
|
524
601
|
*****************************************/
|
|
@@ -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
|
}
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
// single charge
|
|
26
26
|
.single-charge-inner {
|
|
27
27
|
padding: 10px 0;
|
|
28
|
-
border-bottom: 1px solid $ac-
|
|
28
|
+
border-bottom: 1px solid $ac-white-light;
|
|
29
29
|
|
|
30
30
|
&:last-child {
|
|
31
31
|
border-bottom: none;
|
|
@@ -80,4 +80,3 @@
|
|
|
80
80
|
padding: 20px 30px;
|
|
81
81
|
max-width: 450px;
|
|
82
82
|
}
|
|
83
|
-
|
|
@@ -18,7 +18,13 @@
|
|
|
18
18
|
&:hover {
|
|
19
19
|
background-color: $ac-primary;
|
|
20
20
|
color: $ac-white;
|
|
21
|
-
border: 1px solid
|
|
21
|
+
border: 1px solid
|
|
22
|
+
hsla(
|
|
23
|
+
var(--hsl-hue),
|
|
24
|
+
var(--hsl-saturation),
|
|
25
|
+
calc(var(--hsl-lightness) - 5%),
|
|
26
|
+
1
|
|
27
|
+
);
|
|
22
28
|
}
|
|
23
29
|
}
|
|
24
30
|
|
|
@@ -28,7 +34,7 @@
|
|
|
28
34
|
}
|
|
29
35
|
|
|
30
36
|
.counting-page {
|
|
31
|
-
color:
|
|
37
|
+
color: $ac-color-value;
|
|
32
38
|
font-size: 12px;
|
|
33
39
|
|
|
34
40
|
span {
|
|
@@ -40,12 +46,18 @@
|
|
|
40
46
|
|
|
41
47
|
.pagination-filter {
|
|
42
48
|
select {
|
|
43
|
-
border: 1px solid
|
|
49
|
+
border: 1px solid
|
|
50
|
+
hsla(
|
|
51
|
+
var(--hsl-hue),
|
|
52
|
+
var(--hsl-saturation),
|
|
53
|
+
calc(var(--hsl-lightness) - 5%),
|
|
54
|
+
1
|
|
55
|
+
);
|
|
44
56
|
border-radius: 4px;
|
|
45
57
|
height: 20px;
|
|
46
58
|
font-size: 11px;
|
|
47
59
|
background-color: $ac-white;
|
|
48
|
-
color:
|
|
60
|
+
color: $ac-color-value;
|
|
49
61
|
&:focus-visible {
|
|
50
62
|
outline: none;
|
|
51
63
|
}
|
|
@@ -60,7 +72,13 @@
|
|
|
60
72
|
}
|
|
61
73
|
|
|
62
74
|
ul > li > a.previous {
|
|
63
|
-
border: 1px solid
|
|
75
|
+
border: 1px solid
|
|
76
|
+
hsla(
|
|
77
|
+
var(--hsl-hue),
|
|
78
|
+
var(--hsl-saturation),
|
|
79
|
+
calc(var(--hsl-lightness) - 5%),
|
|
80
|
+
1
|
|
81
|
+
);
|
|
64
82
|
background-color: $ac-primary;
|
|
65
83
|
color: $ac-white;
|
|
66
84
|
|
|
@@ -71,7 +89,13 @@ ul > li > a.previous {
|
|
|
71
89
|
}
|
|
72
90
|
|
|
73
91
|
ul > li > a.next {
|
|
74
|
-
border: 1px solid
|
|
92
|
+
border: 1px solid
|
|
93
|
+
hsla(
|
|
94
|
+
var(--hsl-hue),
|
|
95
|
+
var(--hsl-saturation),
|
|
96
|
+
calc(var(--hsl-lightness) - 5%),
|
|
97
|
+
1
|
|
98
|
+
);
|
|
75
99
|
background-color: $ac-primary;
|
|
76
100
|
color: $ac-white;
|
|
77
101
|
|
|
@@ -82,5 +106,19 @@ ul > li > a.next {
|
|
|
82
106
|
}
|
|
83
107
|
|
|
84
108
|
.is-current {
|
|
85
|
-
border: 1px solid
|
|
109
|
+
border: 1px solid
|
|
110
|
+
hsla(
|
|
111
|
+
var(--hsl-hue),
|
|
112
|
+
var(--hsl-saturation),
|
|
113
|
+
calc(var(--hsl-lightness) - 5%),
|
|
114
|
+
1
|
|
115
|
+
);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.is-dark-theme {
|
|
119
|
+
.pagination-filter {
|
|
120
|
+
label {
|
|
121
|
+
$ac-gray-darker: $ac-color-value;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
86
124
|
}
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
display: block;
|
|
33
33
|
|
|
34
34
|
&.add-card {
|
|
35
|
-
background: transparent;
|
|
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;
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
top: 5px;
|
|
55
55
|
width: 14px;
|
|
56
56
|
height: 14px;
|
|
57
|
-
background: $ac-white;
|
|
57
|
+
background-color: $ac-white;
|
|
58
58
|
border: 1px solid $ac-primary;
|
|
59
59
|
z-index: 1;
|
|
60
60
|
border-radius: 50%;
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
&::before {
|
|
64
64
|
width: 6px;
|
|
65
65
|
height: 6px;
|
|
66
|
-
background: $ac-primary;
|
|
66
|
+
background-color: $ac-primary;
|
|
67
67
|
border: none;
|
|
68
68
|
left: 9px;
|
|
69
69
|
top: 9px;
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
span {
|
|
194
194
|
width: 7px;
|
|
195
195
|
height: 7px;
|
|
196
|
-
background: $ac-white;
|
|
196
|
+
background-color: $ac-white;
|
|
197
197
|
display: inline-block;
|
|
198
198
|
margin: 2px;
|
|
199
199
|
border-radius: 50%;
|
|
@@ -218,23 +218,39 @@
|
|
|
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
|
*****************************************/
|
|
224
233
|
// Extra small devices (portrait phones, less than 576px)
|
|
225
|
-
@media (max-width: 575.98px) {
|
|
234
|
+
@media (max-width: 575.98px) {
|
|
235
|
+
}
|
|
226
236
|
|
|
227
237
|
// Small devices (landscape phones, 576px and up)
|
|
228
|
-
@media (min-width: 576px) and (max-width: 767.98px) {
|
|
238
|
+
@media (min-width: 576px) and (max-width: 767.98px) {
|
|
239
|
+
}
|
|
229
240
|
|
|
230
241
|
// Medium devices (tablets, 768px and up)
|
|
231
|
-
@media (min-width: 768px) and (max-width: 991.98px) {
|
|
242
|
+
@media (min-width: 768px) and (max-width: 991.98px) {
|
|
243
|
+
}
|
|
232
244
|
|
|
233
245
|
// Large devices (desktops, 992px and up)
|
|
234
|
-
@media (min-width: 992px) and (max-width: 1199.98px) {
|
|
246
|
+
@media (min-width: 992px) and (max-width: 1199.98px) {
|
|
247
|
+
}
|
|
235
248
|
|
|
236
|
-
@media (min-width: 1200px) and (max-width: 1399.98px) {
|
|
249
|
+
@media (min-width: 1200px) and (max-width: 1399.98px) {
|
|
250
|
+
}
|
|
237
251
|
|
|
238
|
-
@media (min-width: 1400px) and (max-width: 1550.98px) {
|
|
252
|
+
@media (min-width: 1400px) and (max-width: 1550.98px) {
|
|
253
|
+
}
|
|
239
254
|
|
|
240
|
-
@media (min-width: 1551px) and (max-width: 1799.98px) {
|
|
255
|
+
@media (min-width: 1551px) and (max-width: 1799.98px) {
|
|
256
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
.preview-icon {
|
|
2
2
|
width: 60px;
|
|
3
3
|
height: 60px;
|
|
4
|
-
background: rgba(25, 113, 189, 0.4);
|
|
4
|
+
background-color: rgba(25, 113, 189, 0.4);
|
|
5
5
|
box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.16);
|
|
6
6
|
border-radius: 4px 0px 0px 4px;
|
|
7
7
|
position: fixed;
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
top: -50px;
|
|
56
56
|
width: calc(100% + 90px);
|
|
57
57
|
height: 100%;
|
|
58
|
-
background:
|
|
58
|
+
background-color: $ac-white;
|
|
59
59
|
opacity: 0.8;
|
|
60
60
|
z-index: -1;
|
|
61
61
|
}
|
|
@@ -81,11 +81,11 @@
|
|
|
81
81
|
font-weight: normal;
|
|
82
82
|
font-size: 16px;
|
|
83
83
|
line-height: 100%;
|
|
84
|
-
color:
|
|
84
|
+
color: $ac-gray-lightest;
|
|
85
85
|
cursor: pointer;
|
|
86
86
|
|
|
87
87
|
i.fa {
|
|
88
|
-
color:
|
|
88
|
+
color: $ac-gray-lightest;
|
|
89
89
|
padding-left: 5px;
|
|
90
90
|
}
|
|
91
91
|
}
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
li {
|
|
107
107
|
&.is-active {
|
|
108
108
|
a {
|
|
109
|
-
background: $ac-primary;
|
|
109
|
+
background-color: $ac-primary;
|
|
110
110
|
border-radius: 5px;
|
|
111
111
|
color: $ac-white;
|
|
112
112
|
padding: 10px 10px;
|
|
@@ -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:
|
|
165
|
+
background-color: $ac-white-light;
|
|
166
166
|
border-radius: 4px;
|
|
167
167
|
display: flex;
|
|
168
168
|
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
|
|
15
15
|
.progress-tooltip-info {
|
|
16
16
|
align-items: center;
|
|
17
|
-
background: $ac-bg-light-gray;
|
|
18
|
-
border: 1px solid $ac-
|
|
17
|
+
background-color: $ac-bg-light-gray;
|
|
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,8 +3,8 @@
|
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
.single-subscription-card {
|
|
6
|
-
border: 1px solid $ac-
|
|
7
|
-
background:
|
|
6
|
+
border: 1px solid $ac-blue-light;
|
|
7
|
+
background-color: $ac-white;
|
|
8
8
|
padding: 10px;
|
|
9
9
|
transition: 0.3s ease-in-out;
|
|
10
10
|
border-radius: 4px;
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
box-shadow: none;
|
|
47
47
|
border-bottom: 1px solid $ac-white-light;
|
|
48
48
|
margin-bottom: 10px;
|
|
49
|
-
background: transparent;
|
|
49
|
+
background-color: transparent;
|
|
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
|
}
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
.quantity {
|
|
109
|
-
background: #f99a00;
|
|
109
|
+
background-color: #f99a00;
|
|
110
110
|
border-radius: 3px;
|
|
111
111
|
font-weight: normal;
|
|
112
112
|
font-size: 12px;
|
|
@@ -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
|
*****************************************/
|