@appscode/design-system 1.0.43-alpha.6 → 1.0.43-alpha.63
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 +136 -20
- 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 +20 -7
- package/base/utilities/dark-theme.scss +25 -0
- package/components/_ac-accordion.scss +1 -0
- package/components/_ac-alert-box.scss +45 -10
- package/components/_ac-card.scss +54 -19
- package/components/_ac-code-highlight.scss +6 -0
- package/components/_ac-content-layout.scss +4 -4
- package/components/_ac-drag.scss +6 -6
- package/components/_ac-input.scss +72 -38
- package/components/_ac-modal.scss +5 -4
- package/components/_ac-multi-select.scss +220 -18
- package/components/_ac-options.scss +18 -8
- package/components/_ac-select-box.scss +5 -5
- package/components/_ac-table.scss +40 -33
- package/components/_ac-tabs.scss +64 -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 +78 -32
- package/components/_card-body-wrapper.scss +3 -3
- package/components/_dashboard-header.scss +3 -3
- package/components/_direct-deploy.scss +69 -0
- package/components/_go-to-top.scss +1 -1
- package/components/_image-upload.scss +6 -4
- package/components/_left-sidebar-menu.scss +196 -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 +45 -7
- 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 +40 -8
- package/components/bbum/_card-team.scss +17 -9
- 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 +98 -90
- package/components/ui-builder/_ui-builder.scss +19 -8
- package/layouts/_404.scss +2 -1
- package/layouts/_code-preview.scss +14 -7
- package/main.scss +2 -0
- package/package.json +1 -1
- package/plugins/theme.js +142 -0
- package/plugins/vue-toaster.js +6 -6
- package/vue-components/v2/card/PaymentCards.vue +11 -2
- package/vue-components/v2/editor/Editor.vue +31 -17
- package/vue-components/v2/navbar/Appdrawer.vue +10 -9
- package/vue-components/v2/navbar/ThemeMode.vue +124 -0
- package/vue-components/v2/preloader/Preloader.vue +5 -5
- package/vue-components/v2/table/table-cell/CellValue.vue +10 -1
- package/vue-components/v3/dropdown/DropdownMenu.vue +1 -1
- package/vue-components/v3/editor/Editor.vue +33 -19
- package/vue-components/v3/navbar/Appdrawer.vue +12 -7
- package/vue-components/v3/navbar/ThemeMode.vue +118 -0
- package/vue-components/v3/table/table-cell/CellValue.vue +9 -0
|
@@ -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
|
*****************************************/
|
|
@@ -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
|
+
}
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
// width: 6px;
|
|
47
47
|
// height: 6px;
|
|
48
48
|
// border-radius: 50%;
|
|
49
|
-
// background-color:
|
|
49
|
+
// background-color: $ac-color-value;
|
|
50
50
|
// }
|
|
51
51
|
|
|
52
52
|
&::after {
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
top: -7px;
|
|
58
58
|
width: 1px;
|
|
59
59
|
height: calc(100% - 4px);
|
|
60
|
-
background-color:
|
|
60
|
+
background-color: $ac-color-value;
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
li {
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
width: 7px;
|
|
75
75
|
height: 7px;
|
|
76
76
|
border-radius: 50%;
|
|
77
|
-
background-color:
|
|
77
|
+
background-color: $ac-color-value;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
&::after {
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
top: 18.4px;
|
|
85
85
|
width: 20px;
|
|
86
86
|
height: 1px;
|
|
87
|
-
background:
|
|
87
|
+
background-color: $ac-color-value;
|
|
88
88
|
z-index: 9;
|
|
89
89
|
}
|
|
90
90
|
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
width: 100%;
|
|
135
135
|
justify-content: space-between;
|
|
136
136
|
padding: 18px;
|
|
137
|
-
background: $ac-white-light;
|
|
137
|
+
background-color: $ac-white-light;
|
|
138
138
|
|
|
139
139
|
p {
|
|
140
140
|
font-size: 13px;
|
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
top: 0;
|
|
200
200
|
width: 1px;
|
|
201
201
|
height: calc(100% - 22px);
|
|
202
|
-
background-color:
|
|
202
|
+
background-color: $ac-color-value;
|
|
203
203
|
}
|
|
204
204
|
|
|
205
205
|
&::before {
|
|
@@ -211,7 +211,7 @@
|
|
|
211
211
|
width: 6px;
|
|
212
212
|
height: 6px;
|
|
213
213
|
border-radius: 50%;
|
|
214
|
-
background-color:
|
|
214
|
+
background-color: $ac-color-value;
|
|
215
215
|
}
|
|
216
216
|
|
|
217
217
|
li {
|
|
@@ -226,7 +226,7 @@
|
|
|
226
226
|
bottom: 22px;
|
|
227
227
|
width: 20px;
|
|
228
228
|
height: 1px;
|
|
229
|
-
background:
|
|
229
|
+
background-color: $ac-color-value;
|
|
230
230
|
z-index: 9;
|
|
231
231
|
}
|
|
232
232
|
|
|
@@ -239,7 +239,7 @@
|
|
|
239
239
|
width: 6px;
|
|
240
240
|
height: 6px;
|
|
241
241
|
border-radius: 50%;
|
|
242
|
-
background-color:
|
|
242
|
+
background-color: $ac-color-value;
|
|
243
243
|
}
|
|
244
244
|
}
|
|
245
245
|
}
|
package/components/_wizard.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.single-wizard-section {
|
|
2
2
|
padding: 20px;
|
|
3
|
-
background: $ac-white;
|
|
3
|
+
background-color: $ac-white;
|
|
4
4
|
border: 1px solid $ac-white-light;
|
|
5
5
|
border-radius: 4px;
|
|
6
6
|
}
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
.card-select {
|
|
115
115
|
height: 94px;
|
|
116
116
|
padding: 10px;
|
|
117
|
-
background: $ac-white;
|
|
117
|
+
background-color: $ac-white;
|
|
118
118
|
border: 1px solid $ac-white-light;
|
|
119
119
|
box-sizing: border-box;
|
|
120
120
|
border-radius: 4px;
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
position: absolute;
|
|
129
129
|
width: 100%;
|
|
130
130
|
height: 100%;
|
|
131
|
-
background:
|
|
131
|
+
background-color: $ac-black;
|
|
132
132
|
top: 0;
|
|
133
133
|
left: 0;
|
|
134
134
|
z-index: 1;
|
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
height: auto;
|
|
151
151
|
padding: 0;
|
|
152
152
|
border: none;
|
|
153
|
-
background: transparent;
|
|
153
|
+
background-color: transparent;
|
|
154
154
|
width: auto;
|
|
155
155
|
margin-bottom: 0;
|
|
156
156
|
label {
|
|
@@ -206,7 +206,7 @@
|
|
|
206
206
|
}
|
|
207
207
|
|
|
208
208
|
&.is-disabled {
|
|
209
|
-
background:
|
|
209
|
+
background-color: $ac-white-lighter;
|
|
210
210
|
cursor: not-allowed;
|
|
211
211
|
opacity: 0.8;
|
|
212
212
|
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
z-index: 1;
|
|
236
236
|
|
|
237
237
|
.btn-more-option {
|
|
238
|
-
background: #e4e4e4;
|
|
238
|
+
background-color: #e4e4e4;
|
|
239
239
|
height: 16px;
|
|
240
240
|
width: 30px;
|
|
241
241
|
border: none;
|
|
@@ -253,7 +253,7 @@
|
|
|
253
253
|
width: 4px;
|
|
254
254
|
height: 4px;
|
|
255
255
|
border-radius: 50%;
|
|
256
|
-
background: #b1b1b1;
|
|
256
|
+
background-color: #b1b1b1;
|
|
257
257
|
margin-right: 2px;
|
|
258
258
|
|
|
259
259
|
&:last-child {
|
|
@@ -268,7 +268,7 @@
|
|
|
268
268
|
z-index: 2;
|
|
269
269
|
right: 10px;
|
|
270
270
|
top: 10px;
|
|
271
|
-
background: $ac-white;
|
|
271
|
+
background-color: $ac-white;
|
|
272
272
|
box-shadow: $ac-shadow-2;
|
|
273
273
|
display: inline-block;
|
|
274
274
|
border-radius: 4px;
|
|
@@ -282,12 +282,12 @@
|
|
|
282
282
|
position: absolute;
|
|
283
283
|
right: -5px;
|
|
284
284
|
top: -5px;
|
|
285
|
-
border: 1px solid $ac-
|
|
285
|
+
border: 1px solid $ac-gray-lightest;
|
|
286
286
|
font-size: 10px;
|
|
287
287
|
height: 25px;
|
|
288
288
|
width: 25px;
|
|
289
289
|
text-align: center;
|
|
290
|
-
background: $ac-white;
|
|
290
|
+
background-color: $ac-white;
|
|
291
291
|
border-radius: 50%;
|
|
292
292
|
cursor: pointer;
|
|
293
293
|
color: $ac-danger;
|
|
@@ -307,7 +307,7 @@
|
|
|
307
307
|
a {
|
|
308
308
|
display: block;
|
|
309
309
|
padding: 5px 10px 5px 0;
|
|
310
|
-
color:
|
|
310
|
+
color: $ac-color-value;
|
|
311
311
|
font-size: $font-size-tiny;
|
|
312
312
|
text-decoration: underline;
|
|
313
313
|
font-weight: 400;
|
|
@@ -512,7 +512,7 @@
|
|
|
512
512
|
}
|
|
513
513
|
|
|
514
514
|
&.t-title {
|
|
515
|
-
background: $table-header;
|
|
515
|
+
background-color: $table-header;
|
|
516
516
|
border-radius: 4px 4px 0px 0px;
|
|
517
517
|
border-bottom: none;
|
|
518
518
|
|
|
@@ -564,7 +564,7 @@
|
|
|
564
564
|
font-size: $font-size-small;
|
|
565
565
|
line-height: 18px;
|
|
566
566
|
display: block;
|
|
567
|
-
color: $ac-
|
|
567
|
+
color: $ac-color-text;
|
|
568
568
|
margin-bottom: 5px;
|
|
569
569
|
}
|
|
570
570
|
}
|
|
@@ -572,7 +572,7 @@
|
|
|
572
572
|
.wizard-title,
|
|
573
573
|
.wizard-title.has-line {
|
|
574
574
|
span {
|
|
575
|
-
background-color: $ac-
|
|
575
|
+
background-color: $ac-label-text;
|
|
576
576
|
}
|
|
577
577
|
}
|
|
578
578
|
|
|
@@ -651,7 +651,7 @@ label {
|
|
|
651
651
|
margin-top: -0.5px;
|
|
652
652
|
width: 100%;
|
|
653
653
|
height: 1px;
|
|
654
|
-
background-color: $ac-
|
|
654
|
+
background-color: $ac-blue-light;
|
|
655
655
|
z-index: -1;
|
|
656
656
|
}
|
|
657
657
|
}
|
|
@@ -690,7 +690,7 @@ label {
|
|
|
690
690
|
&:focus {
|
|
691
691
|
box-shadow: none;
|
|
692
692
|
box-shadow: none;
|
|
693
|
-
background: #cbe3f8;
|
|
693
|
+
background-color: #cbe3f8;
|
|
694
694
|
border-radius: 50%;
|
|
695
695
|
}
|
|
696
696
|
}
|
|
@@ -709,7 +709,7 @@ button {
|
|
|
709
709
|
&:focus {
|
|
710
710
|
border: none;
|
|
711
711
|
box-shadow: none;
|
|
712
|
-
background: #cbe3f8;
|
|
712
|
+
background-color: #cbe3f8;
|
|
713
713
|
border-radius: 50%;
|
|
714
714
|
}
|
|
715
715
|
}
|
|
@@ -731,7 +731,7 @@ h5 {
|
|
|
731
731
|
.card-checkbox {
|
|
732
732
|
width: 358px;
|
|
733
733
|
height: 115px;
|
|
734
|
-
border: 1px solid $ac-
|
|
734
|
+
border: 1px solid $ac-label-text;
|
|
735
735
|
}
|
|
736
736
|
|
|
737
737
|
// checkbox card end
|
|
@@ -753,7 +753,7 @@ h5 {
|
|
|
753
753
|
|
|
754
754
|
// Wizard Notification Area Start
|
|
755
755
|
.wizard-notification-area {
|
|
756
|
-
background:
|
|
756
|
+
background-color: $ac-gray-lightest;
|
|
757
757
|
border-radius: 10px;
|
|
758
758
|
padding: 10px;
|
|
759
759
|
width: 100%;
|
|
@@ -816,13 +816,25 @@ h5 {
|
|
|
816
816
|
|
|
817
817
|
&.is-selected {
|
|
818
818
|
border: 1px solid $ac-primary;
|
|
819
|
-
background: $ac-primary;
|
|
819
|
+
background-color: $ac-primary;
|
|
820
820
|
color: $ac-white;
|
|
821
821
|
}
|
|
822
822
|
}
|
|
823
823
|
}
|
|
824
824
|
|
|
825
825
|
// inline input end
|
|
826
|
+
|
|
827
|
+
// dark theme start
|
|
828
|
+
.is-dark-theme {
|
|
829
|
+
h6.wizard-title.has-line:after {
|
|
830
|
+
--ac-blue-light: $ac-color-value;
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
.ac-certificate-info {
|
|
834
|
+
--ac-bg-light-gray: var(--dark-bg-light);
|
|
835
|
+
}
|
|
836
|
+
}
|
|
837
|
+
// dark theme end
|
|
826
838
|
/****************************************
|
|
827
839
|
Responsive Classes
|
|
828
840
|
*****************************************/
|