@appscode/design-system 1.0.43-alpha.9 → 1.0.43-alpha.93
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 +281 -20
- package/base/utilities/_derived-variables.scss +0 -13
- package/base/utilities/_initial-variables.scss +78 -56
- package/base/utilities/_mixin.scss +10 -17
- 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 +18 -10
- 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 +80 -39
- package/components/_ac-modal.scss +5 -4
- package/components/_ac-multi-select.scss +196 -14
- package/components/_ac-options.scss +30 -16
- package/components/_ac-select-box.scss +15 -5
- package/components/_ac-table.scss +42 -33
- package/components/_ac-tabs.scss +72 -23
- package/components/_ac-tags.scss +2 -2
- package/components/_ac-terminal.scss +248 -0
- package/components/_app-drawer.scss +6 -6
- package/components/_breadcumb.scss +7 -2
- package/components/_buttons.scss +56 -27
- 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 +200 -46
- package/components/_monaco-editor.scss +1 -1
- package/components/_navbar.scss +103 -26
- package/components/_overview-info.scss +4 -4
- package/components/_overview-page.scss +1 -2
- package/components/_pagination.scss +10 -2
- package/components/_payment-card.scss +28 -12
- 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 +5 -5
- 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 +29 -10
- package/components/ui-builder/_vue-open-api.scss +98 -0
- package/layouts/_404.scss +2 -1
- package/layouts/_code-preview.scss +14 -7
- package/main.scss +4 -0
- package/package.json +2 -7
- package/plugins/theme.js +142 -0
- package/vue-components/v2/card/PaymentCards.vue +11 -2
- package/vue-components/v2/editor/Editor.vue +37 -17
- package/vue-components/v2/modal/Modal.vue +10 -1
- package/vue-components/v2/navbar/Appdrawer.vue +10 -9
- package/vue-components/v2/navbar/ThemeMode.vue +120 -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/table/TableRow.vue +1 -1
- package/vue-components/v2/table/table-cell/CellValue.vue +10 -1
- package/vue-components/v2/tabs/EditorTabs.vue +1 -1
- package/vue-components/v3/dropdown/DropdownMenu.vue +1 -1
- package/vue-components/v3/editor/Editor.vue +39 -19
- package/vue-components/v3/modal/Modal.vue +10 -1
- package/vue-components/v3/navbar/Appdrawer.vue +12 -7
- package/vue-components/v3/navbar/ThemeMode.vue +128 -0
- package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
- package/vue-components/v3/table/TableRow.vue +1 -1
- package/vue-components/v3/table/table-cell/CellValue.vue +9 -0
- package/vue-components/v3/tabs/EditorTabs.vue +1 -1
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 {
|
|
@@ -38,7 +38,7 @@
|
|
|
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
|
-
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
.counting-page {
|
|
37
|
-
color:
|
|
37
|
+
color: $ac-color-value;
|
|
38
38
|
font-size: 12px;
|
|
39
39
|
|
|
40
40
|
span {
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
height: 20px;
|
|
58
58
|
font-size: 11px;
|
|
59
59
|
background-color: $ac-white;
|
|
60
|
-
color:
|
|
60
|
+
color: $ac-color-value;
|
|
61
61
|
&:focus-visible {
|
|
62
62
|
outline: none;
|
|
63
63
|
}
|
|
@@ -114,3 +114,11 @@ ul > li > a.next {
|
|
|
114
114
|
1
|
|
115
115
|
);
|
|
116
116
|
}
|
|
117
|
+
|
|
118
|
+
.is-dark-theme {
|
|
119
|
+
.pagination-filter {
|
|
120
|
+
label {
|
|
121
|
+
$ac-gray-darker: $ac-color-value;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
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
|
*****************************************/
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
.qr-code-wrapper {
|
|
2
|
+
background: $ac-blue-light;
|
|
3
|
+
width: 240px;
|
|
4
|
+
height: 240px;
|
|
5
|
+
padding: 20px;
|
|
6
|
+
display: flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
justify-content: center;
|
|
9
|
+
border-radius: 4px;
|
|
10
|
+
.qr-code-inner {
|
|
11
|
+
position: relative;
|
|
12
|
+
z-index: 1;
|
|
13
|
+
padding: 20px;
|
|
14
|
+
height: 200px;
|
|
15
|
+
img {
|
|
16
|
+
object-fit: cover;
|
|
17
|
+
height: 160px;
|
|
18
|
+
width: 160px;
|
|
19
|
+
}
|
|
20
|
+
.scanner {
|
|
21
|
+
position: absolute;
|
|
22
|
+
content: "";
|
|
23
|
+
left: 0;
|
|
24
|
+
top: 0;
|
|
25
|
+
width: 100%;
|
|
26
|
+
height: 100%;
|
|
27
|
+
&.shape-1:after {
|
|
28
|
+
position: absolute;
|
|
29
|
+
content: "";
|
|
30
|
+
left: 0;
|
|
31
|
+
top: 0;
|
|
32
|
+
width: 20px;
|
|
33
|
+
height: 20px;
|
|
34
|
+
border-top: 1px solid $ac-color-heading;
|
|
35
|
+
border-left: 1px solid $ac-color-heading;
|
|
36
|
+
}
|
|
37
|
+
&.shape-1:before {
|
|
38
|
+
position: absolute;
|
|
39
|
+
content: "";
|
|
40
|
+
right: 0;
|
|
41
|
+
top: 0;
|
|
42
|
+
width: 20px;
|
|
43
|
+
height: 20px;
|
|
44
|
+
border-top: 1px solid $ac-color-heading;
|
|
45
|
+
border-right: 1px solid $ac-color-heading;
|
|
46
|
+
}
|
|
47
|
+
&.shape-2:after {
|
|
48
|
+
position: absolute;
|
|
49
|
+
content: "";
|
|
50
|
+
left: 0;
|
|
51
|
+
bottom: 0;
|
|
52
|
+
width: 20px;
|
|
53
|
+
height: 20px;
|
|
54
|
+
border-bottom: 1px solid $ac-color-heading;
|
|
55
|
+
border-left: 1px solid $ac-color-heading;
|
|
56
|
+
}
|
|
57
|
+
&.shape-2:before {
|
|
58
|
+
position: absolute;
|
|
59
|
+
content: "";
|
|
60
|
+
right: 0;
|
|
61
|
+
bottom: 0;
|
|
62
|
+
width: 20px;
|
|
63
|
+
height: 20px;
|
|
64
|
+
border-bottom: 1px solid $ac-color-heading;
|
|
65
|
+
border-right: 1px solid $ac-color-heading;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|