@appscode/design-system 1.0.43-alpha.12 → 1.0.43-alpha.16
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 +16 -17
- package/base/utilities/_derived-variables.scss +0 -12
- package/base/utilities/_initial-variables.scss +228 -47
- package/base/utilities/_mixin.scss +10 -1
- package/base/utilities/_typography.scss +10 -4
- package/components/_ac-accordion.scss +1 -0
- package/components/_ac-alert-box.scss +5 -5
- package/components/_ac-card.scss +16 -16
- package/components/_ac-code-highlight.scss +2 -0
- package/components/_ac-content-layout.scss +3 -3
- package/components/_ac-drag.scss +6 -6
- package/components/_ac-input.scss +20 -18
- package/components/_ac-modal.scss +5 -4
- package/components/_ac-multi-select.scss +9 -9
- package/components/_ac-options.scss +8 -8
- package/components/_ac-select-box.scss +2 -2
- package/components/_ac-table.scss +37 -33
- package/components/_ac-tabs.scss +33 -20
- package/components/_ac-tags.scss +2 -2
- package/components/_app-drawer.scss +4 -4
- package/components/_breadcumb.scss +5 -2
- package/components/_buttons.scss +21 -20
- package/components/_card-body-wrapper.scss +2 -2
- package/components/_dashboard-header.scss +1 -1
- package/components/_go-to-top.scss +1 -1
- package/components/_image-upload.scss +1 -1
- package/components/_left-sidebar-menu.scss +11 -11
- package/components/_monaco-editor.scss +1 -1
- package/components/_navbar.scss +21 -19
- package/components/_overview-page.scss +1 -2
- package/components/_pagination.scss +2 -2
- package/components/_payment-card.scss +18 -11
- package/components/_preview-modal.scss +6 -6
- package/components/_progress-bar.scss +1 -1
- package/components/_subscription-card.scss +4 -4
- package/components/_table-of-content.scss +1 -1
- package/components/_widget-menu.scss +9 -9
- package/components/_wizard.scss +17 -17
- package/components/ac-toaster/_ac-toasted.scss +4 -4
- package/components/bbum/_card-team.scss +4 -4
- package/components/bbum/_information-center.scss +2 -2
- package/components/bbum/_mobile-desktop.scss +5 -5
- package/components/bbum/_post.scss +5 -4
- package/components/bbum/_sign-up-notification.scss +3 -3
- package/components/bbum/_single-post-preview.scss +8 -8
- package/components/bbum/_user-profile.scss +2 -2
- package/components/ui-builder/_ui-builder.scss +10 -8
- package/layouts/_404.scss +2 -1
- package/layouts/_code-preview.scss +14 -7
- package/package.json +1 -1
- package/plugins/theme.js +138 -0
- package/vue-components/v3/dropdown/DropdownMenu.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,7 +47,7 @@
|
|
|
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;
|
|
@@ -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
|
}
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
content: "";
|
|
139
139
|
right: 15px;
|
|
140
140
|
top: -6px;
|
|
141
|
-
background: $ac-white;
|
|
141
|
+
background-color: $ac-white;
|
|
142
142
|
width: 15px;
|
|
143
143
|
height: 15px;
|
|
144
144
|
transform: rotate(45deg);
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
}
|
|
154
154
|
|
|
155
155
|
.ac-nav-button {
|
|
156
|
-
background: transparent;
|
|
156
|
+
background-color: transparent;
|
|
157
157
|
border: none;
|
|
158
158
|
color: $ac-white-lighter;
|
|
159
159
|
padding: 0 14px;
|
|
@@ -173,7 +173,7 @@
|
|
|
173
173
|
right: 5px;
|
|
174
174
|
width: 15px;
|
|
175
175
|
height: 15px;
|
|
176
|
-
background: $ac-white;
|
|
176
|
+
background-color: $ac-white;
|
|
177
177
|
font-size: 12px;
|
|
178
178
|
line-height: 15px;
|
|
179
179
|
border-radius: 50%;
|
|
@@ -226,7 +226,7 @@
|
|
|
226
226
|
.profile-area {
|
|
227
227
|
display: flex;
|
|
228
228
|
align-items: center;
|
|
229
|
-
border-bottom: 1px solid
|
|
229
|
+
border-bottom: 1px solid $ac-white-light;
|
|
230
230
|
padding-bottom: 10px;
|
|
231
231
|
margin-bottom: 10px;
|
|
232
232
|
|
|
@@ -255,6 +255,7 @@
|
|
|
255
255
|
|
|
256
256
|
.profile-info {
|
|
257
257
|
p {
|
|
258
|
+
color: $ac-color-text;
|
|
258
259
|
font-size: $font-size-small;
|
|
259
260
|
font-weight: 500;
|
|
260
261
|
line-height: 1.3;
|
|
@@ -283,7 +284,7 @@
|
|
|
283
284
|
}
|
|
284
285
|
|
|
285
286
|
&.quick-access {
|
|
286
|
-
background: $ac-white;
|
|
287
|
+
background-color: $ac-white;
|
|
287
288
|
padding: 20px;
|
|
288
289
|
min-width: 260px !important;
|
|
289
290
|
max-height: 250px;
|
|
@@ -294,19 +295,19 @@
|
|
|
294
295
|
display: flex;
|
|
295
296
|
justify-content: space-between;
|
|
296
297
|
align-items: center;
|
|
297
|
-
border-bottom: 1px solid
|
|
298
|
+
border-bottom: 1px solid $ac-white-light;
|
|
298
299
|
padding-bottom: 20px;
|
|
299
300
|
|
|
300
301
|
p {
|
|
301
302
|
font-size: $font-size-small;
|
|
302
|
-
color:
|
|
303
|
+
color: $ac-color-text;
|
|
303
304
|
}
|
|
304
305
|
|
|
305
306
|
button {
|
|
306
|
-
background: transparent;
|
|
307
|
+
background-color: transparent;
|
|
307
308
|
border: none;
|
|
308
309
|
cursor: pointer;
|
|
309
|
-
color:
|
|
310
|
+
color: $ac-color-value;
|
|
310
311
|
}
|
|
311
312
|
}
|
|
312
313
|
|
|
@@ -315,7 +316,7 @@
|
|
|
315
316
|
|
|
316
317
|
p {
|
|
317
318
|
font-size: $font-size-small;
|
|
318
|
-
color:
|
|
319
|
+
color: $ac-color-text;
|
|
319
320
|
}
|
|
320
321
|
|
|
321
322
|
.organizations {
|
|
@@ -341,6 +342,7 @@
|
|
|
341
342
|
padding: 0;
|
|
342
343
|
font-size: $font-size-tiny;
|
|
343
344
|
color: #eb5757;
|
|
345
|
+
background-color: transparent;
|
|
344
346
|
}
|
|
345
347
|
}
|
|
346
348
|
}
|
|
@@ -359,13 +361,13 @@
|
|
|
359
361
|
|
|
360
362
|
/* Handle */
|
|
361
363
|
&::-webkit-scrollbar-thumb {
|
|
362
|
-
background:
|
|
364
|
+
background-color: $ac-gray-light;
|
|
363
365
|
border-radius: 10px;
|
|
364
366
|
}
|
|
365
367
|
|
|
366
368
|
/* Handle on hover */
|
|
367
369
|
&::-webkit-scrollbar-thumb:hover {
|
|
368
|
-
background:
|
|
370
|
+
background-color: $ac-gray-light;
|
|
369
371
|
}
|
|
370
372
|
|
|
371
373
|
&:last-child {
|
|
@@ -374,7 +376,7 @@
|
|
|
374
376
|
|
|
375
377
|
&.is-notification {
|
|
376
378
|
right: 0;
|
|
377
|
-
background: $ac-white;
|
|
379
|
+
background-color: $ac-white;
|
|
378
380
|
box-shadow: 0px 4px 8px rgba(84, 101, 126, 0.2);
|
|
379
381
|
border-radius: 4px;
|
|
380
382
|
min-width: 330px;
|
|
@@ -493,7 +495,7 @@
|
|
|
493
495
|
}
|
|
494
496
|
|
|
495
497
|
ul {
|
|
496
|
-
background: $ac-white;
|
|
498
|
+
background-color: $ac-white;
|
|
497
499
|
padding: 0;
|
|
498
500
|
border-radius: 4px;
|
|
499
501
|
overflow: hidden;
|
|
@@ -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
|
}
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
display: block;
|
|
33
33
|
|
|
34
34
|
&.add-card {
|
|
35
|
-
background: transparent;
|
|
35
|
+
background-color: transparent;
|
|
36
36
|
box-shadow: none;
|
|
37
37
|
border: 2px dashed #caced5;
|
|
38
38
|
display: flex;
|
|
@@ -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%;
|
|
@@ -222,19 +222,26 @@
|
|
|
222
222
|
Responsive Classes
|
|
223
223
|
*****************************************/
|
|
224
224
|
// Extra small devices (portrait phones, less than 576px)
|
|
225
|
-
@media (max-width: 575.98px) {
|
|
225
|
+
@media (max-width: 575.98px) {
|
|
226
|
+
}
|
|
226
227
|
|
|
227
228
|
// Small devices (landscape phones, 576px and up)
|
|
228
|
-
@media (min-width: 576px) and (max-width: 767.98px) {
|
|
229
|
+
@media (min-width: 576px) and (max-width: 767.98px) {
|
|
230
|
+
}
|
|
229
231
|
|
|
230
232
|
// Medium devices (tablets, 768px and up)
|
|
231
|
-
@media (min-width: 768px) and (max-width: 991.98px) {
|
|
233
|
+
@media (min-width: 768px) and (max-width: 991.98px) {
|
|
234
|
+
}
|
|
232
235
|
|
|
233
236
|
// Large devices (desktops, 992px and up)
|
|
234
|
-
@media (min-width: 992px) and (max-width: 1199.98px) {
|
|
237
|
+
@media (min-width: 992px) and (max-width: 1199.98px) {
|
|
238
|
+
}
|
|
235
239
|
|
|
236
|
-
@media (min-width: 1200px) and (max-width: 1399.98px) {
|
|
240
|
+
@media (min-width: 1200px) and (max-width: 1399.98px) {
|
|
241
|
+
}
|
|
237
242
|
|
|
238
|
-
@media (min-width: 1400px) and (max-width: 1550.98px) {
|
|
243
|
+
@media (min-width: 1400px) and (max-width: 1550.98px) {
|
|
244
|
+
}
|
|
239
245
|
|
|
240
|
-
@media (min-width: 1551px) and (max-width: 1799.98px) {
|
|
246
|
+
@media (min-width: 1551px) and (max-width: 1799.98px) {
|
|
247
|
+
}
|
|
@@ -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-color-value;
|
|
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;
|
|
@@ -162,7 +162,7 @@
|
|
|
162
162
|
width: 100%;
|
|
163
163
|
|
|
164
164
|
.code-preview {
|
|
165
|
-
background: #f5f7f9;
|
|
165
|
+
background-color: #f5f7f9;
|
|
166
166
|
border-radius: 4px;
|
|
167
167
|
display: flex;
|
|
168
168
|
|
|
@@ -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-input-bg-color;
|
|
7
|
+
background-color: $ac-white;
|
|
8
8
|
padding: 10px;
|
|
9
9
|
transition: 0.3s ease-in-out;
|
|
10
10
|
border-radius: 4px;
|
|
@@ -46,7 +46,7 @@
|
|
|
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 {
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -287,7 +287,7 @@
|
|
|
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-border;
|
|
576
576
|
}
|
|
577
577
|
}
|
|
578
578
|
|
|
@@ -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
|
}
|
|
@@ -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,7 +816,7 @@ 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
|
}
|
|
@@ -32,19 +32,19 @@
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
&.is-success {
|
|
35
|
-
background: #27b064 !important;
|
|
35
|
+
background-color: #27b064 !important;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
&.is-error {
|
|
39
|
-
background: #ea3d2f !important;
|
|
39
|
+
background-color: #ea3d2f !important;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
&.is-warning {
|
|
43
|
-
background: #f7ad2a !important;
|
|
43
|
+
background-color: #f7ad2a !important;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
&.is-info {
|
|
47
|
-
background: #0aafff !important;
|
|
47
|
+
background-color: #0aafff !important;
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
|
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
display: flex;
|
|
13
13
|
align-items: center;
|
|
14
14
|
justify-content: space-between;
|
|
15
|
-
background-color:
|
|
15
|
+
background-color: $ac-white;
|
|
16
16
|
padding: 15px 20px;
|
|
17
|
-
border-bottom: 1px solid
|
|
17
|
+
border-bottom: 1px solid $ac-white-light;
|
|
18
18
|
box-shadow: none;
|
|
19
19
|
|
|
20
20
|
strong {
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
|
|
73
73
|
.meta {
|
|
74
74
|
font-size: $font-size-small;
|
|
75
|
-
color:
|
|
75
|
+
color: $ac-color-value;
|
|
76
76
|
margin-bottom: 20px;
|
|
77
77
|
}
|
|
78
78
|
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
|
|
85
85
|
li:not(:first-child) {
|
|
86
86
|
font-size: $font-size-small;
|
|
87
|
-
color:
|
|
87
|
+
color: $ac-color-value;
|
|
88
88
|
list-style: disc;
|
|
89
89
|
}
|
|
90
90
|
}
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
content: "";
|
|
82
82
|
width: 100%;
|
|
83
83
|
height: 100%;
|
|
84
|
-
background-color:
|
|
84
|
+
background-color: $ac-black;
|
|
85
85
|
z-index: -1;
|
|
86
86
|
opacity: 0.2;
|
|
87
87
|
}
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
top: 0;
|
|
112
112
|
width: 100%;
|
|
113
113
|
height: 100%;
|
|
114
|
-
background-color:
|
|
114
|
+
background-color: $ac-black;
|
|
115
115
|
opacity: 0.3;
|
|
116
116
|
z-index: -1;
|
|
117
117
|
}
|