@appscode/design-system 2.0.40 → 2.0.41-alpha.2
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/main.scss +1 -0
- package/package.json +1 -1
- package/vue-components/styles/base/utilities/_colors.scss +11 -3
- package/vue-components/styles/base/utilities/_customize-bulma.scss +1 -1
- package/vue-components/styles/base/utilities/_extended.scss +2 -2
- package/vue-components/styles/base/utilities/_global.scss +2 -2
- package/vue-components/styles/base/utilities/_typography.scss +2 -2
- package/vue-components/styles/components/_ac-calendar.scss +1 -1
- package/vue-components/styles/components/_ac-tags.scss +2 -2
- package/vue-components/styles/components/_accordion.scss +1 -1
- package/vue-components/styles/components/_button.scss +26 -4
- package/vue-components/styles/components/_direct-deploy.scss +1 -1
- package/vue-components/styles/components/_dropdown.scss +1 -1
- package/vue-components/styles/components/_getkeeper.scss +1 -1
- package/vue-components/styles/components/_options.scss +3 -3
- package/vue-components/styles/components/_overview-page.scss +1 -1
- package/vue-components/styles/components/_pagination.scss +5 -5
- package/vue-components/styles/components/_preloader.scss +1 -1
- package/vue-components/styles/components/_preview-modal.scss +2 -2
- package/vue-components/styles/components/_progress-bar.scss +7 -7
- package/vue-components/styles/components/_table.scss +12 -12
- package/vue-components/styles/components/_tabs.scss +13 -13
- package/vue-components/styles/components/_terminal.scss +1 -1
- package/vue-components/styles/components/_widget-menu.scss +2 -2
- package/vue-components/styles/components/_wizard.scss +3 -3
- package/vue-components/styles/components/alert/_alert.scss +8 -8
- package/vue-components/styles/components/bbum/_card-team.scss +1 -1
- package/vue-components/styles/components/bbum/_left-sidebar.scss +2 -2
- package/vue-components/styles/components/bbum/_single-post-preview.scss +2 -2
- package/vue-components/styles/components/bbum/_user-profile.scss +2 -2
- package/vue-components/styles/components/cards/_info.scss +7 -1
- package/vue-components/styles/components/cards/_org.scss +2 -2
- package/vue-components/styles/components/cards/_payment-card.scss +3 -3
- package/vue-components/styles/components/cards/_vendor.scss +4 -4
- package/vue-components/styles/components/editor/_filtered-file-editor.scss +2 -2
- package/vue-components/styles/components/form-fields/_input-card.scss +4 -4
- package/vue-components/styles/components/form-fields/_input.scss +10 -10
- package/vue-components/styles/components/header/_header.scss +1 -1
- package/vue-components/styles/components/navbar/_menu-content.scss +4 -4
- package/vue-components/styles/components/navbar/_notification.scss +3 -3
- package/vue-components/styles/components/select-box/_ac-select-box.scss +1 -1
- package/vue-components/styles/components/select-box/_multi-select.scss +3 -3
- package/vue-components/styles/components/sidebar/_left-sidebar.scss +2 -2
- package/vue-components/styles/components/sidebar-tabs/_sidebar-tabs.scss +3 -3
- package/vue-components/styles/components/ui-builder/_ui-builder.scss +9 -9
- package/vue-components/styles/components/ui-builder/_vue-open-api.scss +4 -4
- package/vue-components/v2/pagination/Pagination.vue +4 -4
- package/vue-components/v3/header/Header.vue +1 -1
- package/vue-components/v3/navbar/ThemeMode.vue +1 -1
- package/vue-components/v3/notification/AlertBox.vue +8 -8
- package/vue-components/v3/pagination/Pagination.vue +4 -4
- package/vue-components/v3/sidebar/Steps.vue +2 -2
package/main.scss
CHANGED
|
@@ -21,3 +21,4 @@
|
|
|
21
21
|
@import "@/components/vue-components/styles/components/form-fields/input";
|
|
22
22
|
@import "@/components/vue-components/styles/components/ui-builder/vue-open-api";
|
|
23
23
|
@import "@/components/vue-components/styles/components/ui-builder/ui-builder";
|
|
24
|
+
@import "@/components/vue-components/styles/theme/appscode.scss";
|
package/package.json
CHANGED
|
@@ -1,16 +1,24 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--primary-hue: 208;
|
|
3
|
+
--primary-saturation: 77%;
|
|
4
|
+
--primary-light: 40%;
|
|
5
|
+
}
|
|
6
|
+
|
|
1
7
|
// white and black
|
|
2
8
|
$white-100: hsl(0, 0%, 100%);
|
|
3
9
|
$black-100: hsl(0, 0%, 0%);
|
|
4
10
|
|
|
5
11
|
// primary color guides
|
|
6
|
-
$primary-hue:
|
|
7
|
-
$primary-saturation:
|
|
12
|
+
$primary-hue: var(--primary-hue);
|
|
13
|
+
$primary-saturation: var(--primary-saturation);
|
|
14
|
+
$primary-light: var(--primary-light);
|
|
15
|
+
|
|
8
16
|
$primary-5: hsl($primary-hue, $primary-saturation, 5%);
|
|
9
17
|
$primary-10: hsl($primary-hue, $primary-saturation, 10%);
|
|
10
18
|
$primary-20: hsl($primary-hue, $primary-saturation, 20%);
|
|
11
19
|
$primary-30: hsl($primary-hue, $primary-saturation, 30%);
|
|
12
20
|
$primary-40: hsl($primary-hue, $primary-saturation, 40%);
|
|
13
|
-
$primary: hsl($primary-hue, $primary-saturation,
|
|
21
|
+
$ac-primary: hsl($primary-hue, $primary-saturation, $primary-light);
|
|
14
22
|
$primary-50: hsl($primary-hue, $primary-saturation, 50%);
|
|
15
23
|
$primary-60: hsl($primary-hue, $primary-saturation, 60%);
|
|
16
24
|
$primary-70: hsl($primary-hue, $primary-saturation, 70%);
|
|
@@ -75,7 +75,7 @@ $weight-bold: 700 !default;
|
|
|
75
75
|
// // Derived-Variables
|
|
76
76
|
|
|
77
77
|
// $primary: $turquoise !default;
|
|
78
|
-
$primary:
|
|
78
|
+
// $primary: hsl(208, 77%, 40) !default;
|
|
79
79
|
$info: $blue !default;
|
|
80
80
|
$success: $success !default;
|
|
81
81
|
$warning: $warning !default;
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
border-bottom: solid 1px;
|
|
13
13
|
transition: 0.3s;
|
|
14
14
|
transform: scaleX(0);
|
|
15
|
-
border-color: $primary;
|
|
15
|
+
border-color: $ac-primary;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
&::after {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
border-right: solid 1px;
|
|
27
27
|
transition: 0.3s;
|
|
28
28
|
transform: scaleY(0);
|
|
29
|
-
border-color: $primary;
|
|
29
|
+
border-color: $ac-primary;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
&:hover {
|
|
@@ -486,7 +486,7 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
486
486
|
&.is-button-info {
|
|
487
487
|
.tooltip-inner {
|
|
488
488
|
background: $white-100;
|
|
489
|
-
color: $primary;
|
|
489
|
+
color: $ac-primary;
|
|
490
490
|
border-radius: 4px;
|
|
491
491
|
padding: 5px 20px 4px;
|
|
492
492
|
box-shadow: $ac-shadow-1;
|
|
@@ -676,7 +676,7 @@ body:has(.has-info-content) {
|
|
|
676
676
|
.tag:not(body) {
|
|
677
677
|
&.is-primary {
|
|
678
678
|
&.is-light {
|
|
679
|
-
color: $primary;
|
|
679
|
+
color: $ac-primary;
|
|
680
680
|
background-color: $primary-95;
|
|
681
681
|
}
|
|
682
682
|
}
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
// }
|
|
34
34
|
|
|
35
35
|
// &.is-primary {
|
|
36
|
-
// background-color: $primary;
|
|
36
|
+
// background-color: $ac-primary;
|
|
37
37
|
// color: $white-100;
|
|
38
38
|
|
|
39
39
|
// &.is-light {
|
|
40
40
|
// background-color: rgba(25, 113, 189, 0.2);
|
|
41
|
-
// color: $primary;
|
|
41
|
+
// color: $ac-primary;
|
|
42
42
|
// }
|
|
43
43
|
// }
|
|
44
44
|
|
|
@@ -1,4 +1,26 @@
|
|
|
1
1
|
.button {
|
|
2
|
+
&.is-primary {
|
|
3
|
+
background-color: $ac-primary;
|
|
4
|
+
&:hover {
|
|
5
|
+
background-color: $primary-30;
|
|
6
|
+
}
|
|
7
|
+
&.is-outlined {
|
|
8
|
+
border-color: $ac-primary;
|
|
9
|
+
// background-color: $ac-primary;
|
|
10
|
+
color: $ac-primary;
|
|
11
|
+
&:hover {
|
|
12
|
+
border-color: $primary-30;
|
|
13
|
+
background-color: $ac-primary;
|
|
14
|
+
}
|
|
15
|
+
&.is-light {
|
|
16
|
+
background-color: $primary-95;
|
|
17
|
+
&:hover {
|
|
18
|
+
background-color: $ac-primary;
|
|
19
|
+
color: $white-100;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
2
24
|
&.ac-button {
|
|
3
25
|
padding: 8px 16px;
|
|
4
26
|
font-weight: 500;
|
|
@@ -6,7 +28,7 @@
|
|
|
6
28
|
|
|
7
29
|
&.is-primary {
|
|
8
30
|
&.is-light {
|
|
9
|
-
color: $primary;
|
|
31
|
+
color: $ac-primary;
|
|
10
32
|
&:focus:not(:hover) {
|
|
11
33
|
color: inherit;
|
|
12
34
|
}
|
|
@@ -71,7 +93,7 @@
|
|
|
71
93
|
}
|
|
72
94
|
}
|
|
73
95
|
button.is-primary {
|
|
74
|
-
background-color: $primary;
|
|
96
|
+
background-color: $ac-primary;
|
|
75
97
|
}
|
|
76
98
|
.up-down-buttons {
|
|
77
99
|
border-radius: 4px;
|
|
@@ -85,7 +107,7 @@ button.is-primary {
|
|
|
85
107
|
height: 18px;
|
|
86
108
|
cursor: pointer;
|
|
87
109
|
border: none;
|
|
88
|
-
color: $primary;
|
|
110
|
+
color: $ac-primary;
|
|
89
111
|
background-color: $color-border;
|
|
90
112
|
transition: 0.3s ease-in-out;
|
|
91
113
|
margin: 0 !important;
|
|
@@ -94,7 +116,7 @@ button.is-primary {
|
|
|
94
116
|
background-color: $primary-80;
|
|
95
117
|
}
|
|
96
118
|
&.is-primary {
|
|
97
|
-
background-color: $primary;
|
|
119
|
+
background-color: $ac-primary;
|
|
98
120
|
color: $white-100;
|
|
99
121
|
&:hover {
|
|
100
122
|
background-color: $primary-30;
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
transition: 0.3 ease-in-out;
|
|
63
63
|
|
|
64
64
|
&:hover {
|
|
65
|
-
color: $primary;
|
|
65
|
+
color: $ac-primary;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
span {
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
|
|
105
105
|
&:hover {
|
|
106
106
|
background-color: $color-border;
|
|
107
|
-
color: $primary;
|
|
107
|
+
color: $ac-primary;
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
span {
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
|
|
127
127
|
&:hover {
|
|
128
128
|
background-color: $color-border;
|
|
129
|
-
color: $primary !important;
|
|
129
|
+
color: $ac-primary !important;
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
132
|
}
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
// border-radius: 4px;
|
|
17
17
|
|
|
18
18
|
// &:hover {
|
|
19
|
-
// background-color: $primary;
|
|
19
|
+
// background-color: $ac-primary;
|
|
20
20
|
// color: $white-100;
|
|
21
21
|
// border: 1px solid
|
|
22
22
|
// hsla(
|
|
@@ -72,16 +72,16 @@
|
|
|
72
72
|
// }
|
|
73
73
|
|
|
74
74
|
// ul > li > a.previous {
|
|
75
|
-
// border: 1px solid $primary;
|
|
75
|
+
// border: 1px solid $ac-primary;
|
|
76
76
|
// background-color: $color-border;
|
|
77
|
-
// color: $primary;
|
|
77
|
+
// color: $ac-primary;
|
|
78
78
|
|
|
79
79
|
// }
|
|
80
80
|
|
|
81
81
|
// ul > li > a.next {
|
|
82
|
-
// border: 1px solid $primary;
|
|
82
|
+
// border: 1px solid $ac-primary;
|
|
83
83
|
// background-color: $color-border;
|
|
84
|
-
// color: $primary;
|
|
84
|
+
// color: $ac-primary;
|
|
85
85
|
|
|
86
86
|
// }
|
|
87
87
|
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
&:hover {
|
|
21
|
-
background-color: $primary;
|
|
21
|
+
background-color: $ac-primary;
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
li {
|
|
109
109
|
&.is-active {
|
|
110
110
|
a {
|
|
111
|
-
background-color: $primary;
|
|
111
|
+
background-color: $ac-primary;
|
|
112
112
|
border-radius: 5px;
|
|
113
113
|
color: $white-100;
|
|
114
114
|
padding: 10px 10px;
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
border: 1px solid $primary-10;
|
|
19
19
|
border-radius: 10px;
|
|
20
20
|
box-shadow: 0 0 2px $primary-10;
|
|
21
|
-
color: $primary;
|
|
21
|
+
color: $ac-primary;
|
|
22
22
|
display: inline-flex;
|
|
23
23
|
font-family: sans-serif;
|
|
24
24
|
font-weight: bold;
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
|
|
91
91
|
&::-webkit-progress-value {
|
|
92
92
|
border-radius: 5px;
|
|
93
|
-
background-color: $primary;
|
|
93
|
+
background-color: $ac-primary;
|
|
94
94
|
background-image: linear-gradient(
|
|
95
95
|
45deg,
|
|
96
96
|
rgba(255, 255, 255, 0.15) 25%,
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
|
|
107
107
|
&::-moz-progress-bar {
|
|
108
108
|
border-radius: 5px;
|
|
109
|
-
background-color: $primary;
|
|
109
|
+
background-color: $ac-primary;
|
|
110
110
|
background-image: linear-gradient(
|
|
111
111
|
45deg,
|
|
112
112
|
rgba(255, 255, 255, 0.15) 25%,
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
|
|
123
123
|
&::-ms-fill {
|
|
124
124
|
border-radius: 5px;
|
|
125
|
-
background-color: $primary;
|
|
125
|
+
background-color: $ac-primary;
|
|
126
126
|
background-image: linear-gradient(
|
|
127
127
|
45deg,
|
|
128
128
|
rgba(255, 255, 255, 0.15) 25%,
|
|
@@ -224,19 +224,19 @@
|
|
|
224
224
|
|
|
225
225
|
&::-webkit-progress-value {
|
|
226
226
|
border-radius: 5px;
|
|
227
|
-
background-color: $primary;
|
|
227
|
+
background-color: $ac-primary;
|
|
228
228
|
background-size: 10px 10px;
|
|
229
229
|
}
|
|
230
230
|
|
|
231
231
|
&::-moz-progress-bar {
|
|
232
232
|
border-radius: 5px;
|
|
233
|
-
background-color: $primary;
|
|
233
|
+
background-color: $ac-primary;
|
|
234
234
|
background-size: 10px 10px;
|
|
235
235
|
}
|
|
236
236
|
|
|
237
237
|
&::-ms-fill {
|
|
238
238
|
border-radius: 5px;
|
|
239
|
-
background-color: $primary;
|
|
239
|
+
background-color: $ac-primary;
|
|
240
240
|
background-size: 10px 10px;
|
|
241
241
|
border: none;
|
|
242
242
|
}
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
tbody {
|
|
66
66
|
&.is-selected {
|
|
67
67
|
transform: matrix(1, 0, 0, 1, 0, 0) !important;
|
|
68
|
-
box-shadow: inset 0 0 0 1px $primary;
|
|
68
|
+
box-shadow: inset 0 0 0 1px $ac-primary;
|
|
69
69
|
border-radius: 4px;
|
|
70
70
|
border-bottom: none;
|
|
71
71
|
color: $black-5;
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
&.is-selected {
|
|
80
80
|
background-color: $primary-97 !important;
|
|
81
81
|
transform: matrix(1, 0, 0, 1, 0, 0) !important;
|
|
82
|
-
box-shadow: inset 0 0 0 1.2px $primary;
|
|
82
|
+
box-shadow: inset 0 0 0 1.2px $ac-primary;
|
|
83
83
|
border-radius: 4px;
|
|
84
84
|
border-bottom: none;
|
|
85
85
|
color: $black-5;
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
&:hover {
|
|
91
91
|
background-color: $primary-95 !important;
|
|
92
92
|
transform: matrix(1, 0, 0, 1, 0, 0) !important;
|
|
93
|
-
box-shadow: inset 0 0 0 1.2px $primary !important;
|
|
93
|
+
box-shadow: inset 0 0 0 1.2px $ac-primary !important;
|
|
94
94
|
}
|
|
95
95
|
}
|
|
96
96
|
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
border: none;
|
|
107
107
|
|
|
108
108
|
a:not(.tag a) {
|
|
109
|
-
color: $primary;
|
|
109
|
+
color: $ac-primary;
|
|
110
110
|
font-weight: 500 !important;
|
|
111
111
|
transition: 0.3s ease-in-out;
|
|
112
112
|
font-weight: 400;
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
.tags {
|
|
116
116
|
.tag {
|
|
117
117
|
a {
|
|
118
|
-
color: $primary;
|
|
118
|
+
color: $ac-primary;
|
|
119
119
|
transition: 0.3s ease-in-out;
|
|
120
120
|
font-weight: 500;
|
|
121
121
|
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
|
|
143
143
|
i.fa {
|
|
144
144
|
position: absolute;
|
|
145
|
-
background-color: $primary;
|
|
145
|
+
background-color: $ac-primary;
|
|
146
146
|
color: $white-100;
|
|
147
147
|
font-size: 11px;
|
|
148
148
|
width: 15px;
|
|
@@ -291,8 +291,8 @@
|
|
|
291
291
|
}
|
|
292
292
|
|
|
293
293
|
&:checked + label::before {
|
|
294
|
-
background-color: $primary;
|
|
295
|
-
border-color: $primary;
|
|
294
|
+
background-color: $ac-primary;
|
|
295
|
+
border-color: $ac-primary;
|
|
296
296
|
}
|
|
297
297
|
|
|
298
298
|
&:checked + label::after {
|
|
@@ -302,8 +302,8 @@
|
|
|
302
302
|
}
|
|
303
303
|
|
|
304
304
|
.is-checkradio[type="checkbox"].ac-checkbox:checked + label::before {
|
|
305
|
-
background-color: $primary;
|
|
306
|
-
border-color: $primary;
|
|
305
|
+
background-color: $ac-primary;
|
|
306
|
+
border-color: $ac-primary;
|
|
307
307
|
}
|
|
308
308
|
|
|
309
309
|
.is-checkradio[type="checkbox"] + label::before,
|
|
@@ -370,7 +370,7 @@
|
|
|
370
370
|
}
|
|
371
371
|
|
|
372
372
|
&:hover {
|
|
373
|
-
background-color: $primary;
|
|
373
|
+
background-color: $ac-primary;
|
|
374
374
|
|
|
375
375
|
td {
|
|
376
376
|
color: $white-100;
|
|
@@ -383,7 +383,7 @@
|
|
|
383
383
|
|
|
384
384
|
.table.ac-table tbody tr:hover td a:not(.tag a) {
|
|
385
385
|
text-decoration: underline;
|
|
386
|
-
color: $primary;
|
|
386
|
+
color: $ac-primary;
|
|
387
387
|
}
|
|
388
388
|
|
|
389
389
|
// table inner shadow
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
// &.is-active {
|
|
14
14
|
// a {
|
|
15
15
|
// font-weight: 500;
|
|
16
|
-
// border-bottom-color: $primary;
|
|
17
|
-
// border-bottom: 2px solid $primary !important;
|
|
16
|
+
// border-bottom-color: $ac-primary;
|
|
17
|
+
// border-bottom: 2px solid $ac-primary !important;
|
|
18
18
|
// border-width: 2px;
|
|
19
19
|
// }
|
|
20
20
|
// }
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
// padding: 6px 16px;
|
|
29
29
|
|
|
30
30
|
// &:hover {
|
|
31
|
-
// border-bottom-color: $primary;
|
|
31
|
+
// border-bottom-color: $ac-primary;
|
|
32
32
|
// }
|
|
33
33
|
// }
|
|
34
34
|
// }
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
// position: relative;
|
|
57
57
|
// border-color: $color-border;
|
|
58
58
|
// z-index: 1;
|
|
59
|
-
// color: $primary;
|
|
59
|
+
// color: $ac-primary;
|
|
60
60
|
|
|
61
61
|
// &:after {
|
|
62
62
|
// position: absolute;
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
// width: 100%;
|
|
67
67
|
// height: 4px;
|
|
68
68
|
// border-radius: 4px 4px 0 0;
|
|
69
|
-
// background-color: $primary;
|
|
69
|
+
// background-color: $ac-primary;
|
|
70
70
|
// }
|
|
71
71
|
|
|
72
72
|
// a {
|
|
@@ -131,10 +131,10 @@
|
|
|
131
131
|
// &.is-active {
|
|
132
132
|
// a {
|
|
133
133
|
// color: $white-100;
|
|
134
|
-
// background-color: $primary;
|
|
134
|
+
// background-color: $ac-primary;
|
|
135
135
|
|
|
136
136
|
// &:hover {
|
|
137
|
-
// background-color: $primary;
|
|
137
|
+
// background-color: $ac-primary;
|
|
138
138
|
// }
|
|
139
139
|
// }
|
|
140
140
|
// }
|
|
@@ -162,7 +162,7 @@
|
|
|
162
162
|
// li {
|
|
163
163
|
// &.is-active {
|
|
164
164
|
// a {
|
|
165
|
-
// border-bottom: 3px solid $primary !important;
|
|
165
|
+
// border-bottom: 3px solid $ac-primary !important;
|
|
166
166
|
// }
|
|
167
167
|
// }
|
|
168
168
|
// }
|
|
@@ -182,7 +182,7 @@
|
|
|
182
182
|
// a {
|
|
183
183
|
// border-color: $color-border;
|
|
184
184
|
// background-color: $white-100;
|
|
185
|
-
// color: $primary;
|
|
185
|
+
// color: $ac-primary;
|
|
186
186
|
// }
|
|
187
187
|
// }
|
|
188
188
|
// }
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
// &.is-active {
|
|
216
216
|
// a {
|
|
217
217
|
// background-color: $color-border;
|
|
218
|
-
// color: $primary;
|
|
218
|
+
// color: $ac-primary;
|
|
219
219
|
// }
|
|
220
220
|
// }
|
|
221
221
|
// }
|
|
@@ -226,7 +226,7 @@
|
|
|
226
226
|
// }
|
|
227
227
|
|
|
228
228
|
// .tabs li.is-active a {
|
|
229
|
-
// color: $primary;
|
|
229
|
+
// color: $ac-primary;
|
|
230
230
|
// }
|
|
231
231
|
|
|
232
232
|
// .no-data-available {
|
|
@@ -329,8 +329,8 @@
|
|
|
329
329
|
li {
|
|
330
330
|
&.is-active {
|
|
331
331
|
a {
|
|
332
|
-
border-bottom-color: $primary;
|
|
333
|
-
color: $primary;
|
|
332
|
+
border-bottom-color: $ac-primary;
|
|
333
|
+
color: $ac-primary;
|
|
334
334
|
}
|
|
335
335
|
}
|
|
336
336
|
}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
// &.is-active {
|
|
17
17
|
// background-color: transparent;
|
|
18
|
-
// color: $primary;
|
|
18
|
+
// color: $ac-primary;
|
|
19
19
|
// }
|
|
20
20
|
|
|
21
21
|
// .fa {
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
// color: $color-heading;
|
|
95
95
|
|
|
96
96
|
// &:hover {
|
|
97
|
-
// color: $primary;
|
|
97
|
+
// color: $ac-primary;
|
|
98
98
|
// background-color: transparent;
|
|
99
99
|
// }
|
|
100
100
|
// }
|
|
@@ -536,12 +536,12 @@
|
|
|
536
536
|
|
|
537
537
|
// &:focus {
|
|
538
538
|
// outline: none;
|
|
539
|
-
// border: 1px solid $primary;
|
|
539
|
+
// border: 1px solid $ac-primary;
|
|
540
540
|
// }
|
|
541
541
|
|
|
542
542
|
// &.is-selected {
|
|
543
|
-
// border: 1px solid $primary;
|
|
544
|
-
// background-color: $primary;
|
|
543
|
+
// border: 1px solid $ac-primary;
|
|
544
|
+
// background-color: $ac-primary;
|
|
545
545
|
// color: $white-100;
|
|
546
546
|
// }
|
|
547
547
|
// }
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
.ac-notification {
|
|
2
2
|
background-color: $primary-95;
|
|
3
3
|
font-size: 13px;
|
|
4
|
-
color: $primary;
|
|
4
|
+
color: $ac-primary;
|
|
5
5
|
min-height: 36px;
|
|
6
6
|
display: flex;
|
|
7
7
|
align-items: center;
|
|
8
8
|
padding: 8px 16px;
|
|
9
9
|
overflow: hidden;
|
|
10
|
-
border: 1px solid $primary;
|
|
10
|
+
border: 1px solid $ac-primary;
|
|
11
11
|
border-radius: 4px;
|
|
12
12
|
justify-content: flex-start;
|
|
13
13
|
position: relative;
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
min-width: 280px;
|
|
16
16
|
|
|
17
17
|
p {
|
|
18
|
-
color: $primary;
|
|
18
|
+
color: $ac-primary;
|
|
19
19
|
|
|
20
20
|
.close-icon {
|
|
21
21
|
padding-right: 10px;
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
|
|
25
25
|
a {
|
|
26
26
|
text-decoration: underline;
|
|
27
|
-
color: $primary;
|
|
27
|
+
color: $ac-primary;
|
|
28
28
|
|
|
29
29
|
&:hover {
|
|
30
30
|
color: hsla(
|
|
@@ -81,16 +81,16 @@
|
|
|
81
81
|
0.2
|
|
82
82
|
);
|
|
83
83
|
color: $white-100;
|
|
84
|
-
border-color: $primary;
|
|
84
|
+
border-color: $ac-primary;
|
|
85
85
|
|
|
86
86
|
p {
|
|
87
|
-
color: $primary;
|
|
87
|
+
color: $ac-primary;
|
|
88
88
|
|
|
89
89
|
a {
|
|
90
|
-
color: $primary;
|
|
90
|
+
color: $ac-primary;
|
|
91
91
|
|
|
92
92
|
&:hover {
|
|
93
|
-
color: $primary;
|
|
93
|
+
color: $ac-primary;
|
|
94
94
|
opacity: 0.8;
|
|
95
95
|
}
|
|
96
96
|
}
|