@appscode/design-system 2.0.41-alpha.9 → 2.0.41
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 +2 -0
- package/package.json +1 -1
- package/plugins/theme.js +10 -32
- package/vue-components/styles/base/utilities/_all.scss +3 -1
- package/vue-components/styles/base/utilities/_colors.scss +10 -257
- 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/_generate-color-classes.scss +253 -0
- package/vue-components/styles/base/utilities/_global.scss +6 -4
- package/vue-components/styles/base/utilities/_root-variables.scss +5 -0
- package/vue-components/styles/base/utilities/_typography.scss +20 -3
- 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 +29 -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 +13 -13
- package/vue-components/styles/components/_tabs.scss +13 -13
- package/vue-components/styles/components/_terminal.scss +2 -2
- 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-message.scss +7 -0
- 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/_cluster.scss +5 -4
- package/vue-components/styles/components/cards/_info.scss +7 -1
- package/vue-components/styles/components/cards/_monitoring.scss +1 -0
- 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 +5 -5
- 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 +15 -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/styles/theme/_appscode.scss +9 -24
- package/vue-components/styles/theme/_dark.scss +48 -0
- package/vue-components/v2/pagination/Pagination.vue +4 -4
- package/vue-components/v3/alert/AlertMessage.vue +1 -1
- 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 +9 -9
- package/vue-components/v3/pagination/Pagination.vue +4 -4
- package/vue-components/v3/sidebar/Steps.vue +3 -3
- package/vue-components/v3/table/InfoTable.vue +1 -1
|
@@ -6,7 +6,7 @@ $font-paragraph: "Roboto", sans-serif;
|
|
|
6
6
|
|
|
7
7
|
html,
|
|
8
8
|
body {
|
|
9
|
-
background-color:
|
|
9
|
+
background-color: $white-100;
|
|
10
10
|
font-family: $font-paragraph;
|
|
11
11
|
font-weight: 400;
|
|
12
12
|
font-size: 13px;
|
|
@@ -87,11 +87,25 @@ h6 {
|
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
+
.content {
|
|
91
|
+
h1,
|
|
92
|
+
h2,
|
|
93
|
+
h3,
|
|
94
|
+
h4,
|
|
95
|
+
h5,
|
|
96
|
+
h6 {
|
|
97
|
+
color: $color-heading;
|
|
98
|
+
}
|
|
99
|
+
p {
|
|
100
|
+
color: $color-text;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
90
104
|
a:not(.ac-button) {
|
|
91
105
|
font-family: $font-paragraph;
|
|
92
|
-
color: $primary;
|
|
106
|
+
color: $ac-primary;
|
|
93
107
|
&:hover {
|
|
94
|
-
color: $primary;
|
|
108
|
+
color: $ac-primary;
|
|
95
109
|
}
|
|
96
110
|
}
|
|
97
111
|
|
|
@@ -138,3 +152,6 @@ strong {
|
|
|
138
152
|
.material-icons {
|
|
139
153
|
font-size: 1em;
|
|
140
154
|
}
|
|
155
|
+
.has-text-primary {
|
|
156
|
+
color: $ac-primary;
|
|
157
|
+
}
|
|
@@ -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,16 +1,41 @@
|
|
|
1
1
|
.button {
|
|
2
|
+
color: $color-text;
|
|
3
|
+
background-color: $white-100;
|
|
4
|
+
|
|
2
5
|
&.ac-button {
|
|
3
6
|
padding: 8px 16px;
|
|
4
7
|
font-weight: 500;
|
|
5
8
|
line-height: 1;
|
|
6
9
|
|
|
7
10
|
&.is-primary {
|
|
11
|
+
background-color: $ac-primary;
|
|
12
|
+
&:hover {
|
|
13
|
+
background-color: $primary-30;
|
|
14
|
+
}
|
|
8
15
|
&.is-light {
|
|
9
|
-
color: $primary;
|
|
16
|
+
color: $ac-primary;
|
|
17
|
+
background-color: $primary-95;
|
|
18
|
+
&:hover {
|
|
19
|
+
background-color: $primary-90;
|
|
20
|
+
}
|
|
10
21
|
&:focus:not(:hover) {
|
|
11
22
|
color: inherit;
|
|
12
23
|
}
|
|
13
24
|
}
|
|
25
|
+
&:disabled:not(.is-light) {
|
|
26
|
+
background-color: $ac-primary;
|
|
27
|
+
border-color: $ac-primary;
|
|
28
|
+
}
|
|
29
|
+
&.is-outlined {
|
|
30
|
+
border-color: $ac-primary;
|
|
31
|
+
color: $ac-primary;
|
|
32
|
+
background-color: transparent;
|
|
33
|
+
&:hover {
|
|
34
|
+
border-color: $primary-30;
|
|
35
|
+
background-color: $ac-primary;
|
|
36
|
+
color: $white-100;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
14
39
|
}
|
|
15
40
|
&.is-warning {
|
|
16
41
|
&.is-light {
|
|
@@ -71,7 +96,7 @@
|
|
|
71
96
|
}
|
|
72
97
|
}
|
|
73
98
|
button.is-primary {
|
|
74
|
-
background-color: $primary;
|
|
99
|
+
background-color: $ac-primary;
|
|
75
100
|
}
|
|
76
101
|
.up-down-buttons {
|
|
77
102
|
border-radius: 4px;
|
|
@@ -85,7 +110,7 @@ button.is-primary {
|
|
|
85
110
|
height: 18px;
|
|
86
111
|
cursor: pointer;
|
|
87
112
|
border: none;
|
|
88
|
-
color: $primary;
|
|
113
|
+
color: $ac-primary;
|
|
89
114
|
background-color: $color-border;
|
|
90
115
|
transition: 0.3s ease-in-out;
|
|
91
116
|
margin: 0 !important;
|
|
@@ -94,7 +119,7 @@ button.is-primary {
|
|
|
94
119
|
background-color: $primary-80;
|
|
95
120
|
}
|
|
96
121
|
&.is-primary {
|
|
97
|
-
background-color: $primary;
|
|
122
|
+
background-color: $ac-primary;
|
|
98
123
|
color: $white-100;
|
|
99
124
|
&:hover {
|
|
100
125
|
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,14 +383,14 @@
|
|
|
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
|
|
390
390
|
.table-inner-shadow {
|
|
391
391
|
border-radius: 0px;
|
|
392
392
|
background: $color-border;
|
|
393
|
-
box-shadow: inset 5px 5px 10px #e3e6e9, inset -5px -5px 10px
|
|
393
|
+
box-shadow: inset 5px 5px 10px #e3e6e9, inset -5px -5px 10px $white-100;
|
|
394
394
|
}
|
|
395
395
|
|
|
396
396
|
@keyframes expand {
|
|
@@ -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
|
}
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
}
|
|
187
187
|
|
|
188
188
|
&:hover {
|
|
189
|
-
color: $primary !important;
|
|
189
|
+
color: $ac-primary !important;
|
|
190
190
|
}
|
|
191
191
|
}
|
|
192
192
|
}
|
|
@@ -233,7 +233,7 @@
|
|
|
233
233
|
text-align: center;
|
|
234
234
|
padding: 4px 20px;
|
|
235
235
|
border-radius: 4px;
|
|
236
|
-
color:
|
|
236
|
+
color: $white-100 !important;
|
|
237
237
|
text-transform: uppercase;
|
|
238
238
|
|
|
239
239
|
&.is-success {
|
|
@@ -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
|
}
|
|
@@ -55,14 +55,14 @@
|
|
|
55
55
|
top: 0;
|
|
56
56
|
width: 0px;
|
|
57
57
|
height: 100%;
|
|
58
|
-
background-color: $primary;
|
|
58
|
+
background-color: $ac-primary;
|
|
59
59
|
border-radius: 4px 0 0 4px;
|
|
60
60
|
transition: 0.3s ease-in-out;
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
&:hover {
|
|
64
64
|
background-color: #f5f9fc;
|
|
65
|
-
color: $primary;
|
|
65
|
+
color: $ac-primary;
|
|
66
66
|
|
|
67
67
|
&::after {
|
|
68
68
|
width: 4px;
|