@appscode/design-system 1.1.0-alpha.8 → 1.1.0-beta.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/base/utilities/_all.scss +1 -1
- package/base/utilities/_default.scss +41 -41
- package/base/utilities/_derived-variables.scss +8 -9
- package/base/utilities/_extended.scss +9 -5
- package/base/utilities/_initial-variables.scss +52 -50
- package/base/utilities/_mixin.scss +11 -11
- package/base/utilities/_typography.scss +22 -22
- package/base/utilities/dark-theme.scss +1 -1
- package/components/_ac-accordion.scss +6 -6
- package/components/_ac-alert-box.scss +27 -28
- package/components/_ac-calendar.scss +4 -4
- package/components/_ac-card.scss +55 -55
- package/components/_ac-code-highlight.scss +6 -6
- package/components/_ac-content-layout.scss +165 -165
- package/components/_ac-drag.scss +11 -11
- package/components/_ac-input.scss +85 -85
- package/components/_ac-modal.scss +8 -8
- package/components/_ac-multi-select.scss +751 -751
- package/components/_ac-options.scss +12 -13
- package/components/_ac-select-box.scss +5 -5
- package/components/_ac-table.scss +55 -55
- package/components/_ac-tabs.scss +36 -36
- package/components/_ac-tags.scss +22 -22
- package/components/_ac-terminal.scss +253 -253
- package/components/_add-card.scss +3 -3
- package/components/_app-drawer.scss +4 -4
- package/components/_basic-card.scss +108 -114
- package/components/_breadcumb.scss +5 -5
- package/components/_buttons.scss +64 -64
- package/components/_card-body-wrapper.scss +5 -5
- package/components/_dashboard-header.scss +29 -29
- package/components/_direct-deploy.scss +8 -8
- package/components/_go-to-top.scss +1 -1
- package/components/_image-upload.scss +3 -3
- package/components/_left-sidebar-menu.scss +374 -376
- package/components/_monaco-editor.scss +1 -1
- package/components/_navbar.scss +65 -65
- package/components/_nested-list.scss +1 -1
- package/components/_overview-info.scss +7 -7
- package/components/_overview-page.scss +4 -4
- package/components/_pagination.scss +110 -110
- package/components/_payment-card.scss +20 -20
- package/components/_preloader.scss +1 -1
- package/components/_preview-modal.scss +18 -18
- package/components/_pricing-table.scss +10 -10
- package/components/_progress-bar.scss +12 -12
- package/components/_subscription-card.scss +14 -14
- package/components/_table-of-content.scss +4 -4
- package/components/_tfa.scss +9 -9
- package/components/_widget-menu.scss +17 -17
- package/components/_wizard.scss +82 -82
- package/components/ac-toaster/_ac-toasted.scss +1 -1
- package/components/bbum/_activities-header.scss +1 -1
- package/components/bbum/_card-team.scss +12 -12
- package/components/bbum/_information-center.scss +13 -13
- package/components/bbum/_left-sidebar.scss +8 -8
- package/components/bbum/_mobile-desktop.scss +7 -7
- package/components/bbum/_post.scss +5 -5
- package/components/bbum/_sign-up-notification.scss +10 -10
- package/components/bbum/_single-post-preview.scss +21 -21
- package/components/bbum/_user-profile.scss +10 -10
- package/components/ui-builder/_ui-builder.scss +15 -15
- package/components/ui-builder/_vue-open-api.scss +2 -2
- package/layouts/_code-preview.scss +11 -11
- package/package.json +1 -1
- package/vue-components/plugins/time-convert.js +49 -0
- package/vue-components/text.vue +1 -0
- package/vue-components/types/cluster.ts +6 -0
- package/vue-components/types/longRunningTasks.ts +20 -0
- package/vue-components/types/notification.ts +6 -0
- package/vue-components/types/previewYaml.ts +8 -0
- package/vue-components/types/table.ts +54 -0
- package/vue-components/types/theme.ts +10 -0
- package/vue-components/types/user.ts +22 -0
- package/vue-components/v2/card/OverviewCards.vue +17 -2
- package/vue-components/v2/editor/ResourceKeyValueEditor.vue +21 -21
- package/vue-components/v2/icons/Ellipsis.vue +2 -1
- package/vue-components/v2/modal/Modal.vue +0 -5
- package/vue-components/v2/navbar/Appdrawer.vue +37 -12
- package/vue-components/v2/navbar/Navbar.vue +3 -3
- package/vue-components/v2/navbar/NavbarItem.vue +3 -1
- package/vue-components/v2/navbar/NavbarItemContent.vue +1 -1
- package/vue-components/v2/navbar/User.vue +5 -22
- package/vue-components/v2/pagination/Pagination.vue +65 -0
- package/vue-components/v2/sidebar/SidebarItem.vue +10 -7
- package/vue-components/v3/accordion/Accordion.vue +151 -0
- package/vue-components/v3/alert/Alert.vue +238 -0
- package/vue-components/v3/alert/Toast.vue +79 -0
- package/vue-components/v3/banner/Banner.vue +10 -0
- package/vue-components/v3/breadcrumbs/Breadcrumb.vue +104 -0
- package/vue-components/v3/button/Button.vue +831 -58
- package/vue-components/v3/button/Buttons.vue +6 -0
- package/vue-components/v3/button/DownloadBtn.vue +31 -0
- package/vue-components/v3/cards/Card.vue +32 -0
- package/vue-components/v3/cards/CardContent.vue +7 -0
- package/vue-components/v3/cards/CardHeader.vue +14 -0
- package/vue-components/v3/cards/Cards.vue +7 -0
- package/vue-components/v3/cards/Cluster.vue +150 -0
- package/vue-components/v3/cards/Counter.vue +27 -0
- package/vue-components/v3/cards/FeatureCard.vue +40 -0
- package/vue-components/v3/cards/FeatureCards.vue +6 -0
- package/vue-components/v3/cards/InfoCard.vue +248 -0
- package/vue-components/v3/cards/Monitoring.vue +94 -0
- package/vue-components/v3/cards/OverviewCard.vue +24 -0
- package/vue-components/v3/cards/OverviewCards.vue +31 -0
- package/vue-components/v3/cards/Payment.vue +62 -0
- package/vue-components/v3/cards/Vendor.vue +23 -0
- package/vue-components/v3/content/ContentHeader.vue +39 -30
- package/vue-components/v3/content/ContentLayout.vue +20 -0
- package/vue-components/v3/content/ContentTable.vue +37 -61
- package/vue-components/v3/dropdown/DropdownDivider.vue +2 -0
- package/vue-components/v3/dropdown/DropdownItem.vue +2 -0
- package/vue-components/v3/dropdown/DropdownMenu.vue +85 -91
- package/vue-components/v3/editor/Editor.vue +100 -113
- package/vue-components/v3/editor/FilteredFileEditor.vue +124 -127
- package/vue-components/v3/editor/ResourceKeyValueEditor.vue +70 -94
- package/vue-components/v3/footer/FooterArea.vue +34 -0
- package/vue-components/v3/footer/FooterItem.vue +29 -0
- package/vue-components/v3/footer/FooterItems.vue +15 -0
- package/vue-components/v3/footer/Info.vue +23 -0
- package/vue-components/v3/footer/Status.vue +42 -0
- package/vue-components/v3/footer/Usage.vue +44 -0
- package/vue-components/v3/form/Form.vue +24 -33
- package/vue-components/v3/form/FormFooterControl.vue +7 -0
- package/vue-components/v3/form/FormFooterControls.vue +7 -0
- package/vue-components/v3/form-fields/AcSingleInput.vue +520 -0
- package/vue-components/v3/form-fields/Input.vue +19 -14
- package/vue-components/v3/header/Header.vue +117 -24
- package/vue-components/v3/header/HeaderItem.vue +18 -0
- package/vue-components/v3/header/HeaderItems.vue +4 -0
- package/vue-components/v3/icons/Ellipsis.vue +2 -0
- package/vue-components/v3/loaders/ResourceLoader.vue +4 -12
- package/vue-components/v3/loaders/SidebarLoader.vue +4 -12
- package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +17 -15
- package/vue-components/v3/modal/Modal.vue +292 -96
- package/vue-components/v3/modals/DeleteConfirmationModal.vue +37 -50
- package/vue-components/v3/modals/JsonShowModal.vue +62 -68
- package/vue-components/v3/modals/LongRunningTasksModal.vue +145 -143
- package/vue-components/v3/navbar/Appdrawer.vue +196 -51
- package/vue-components/v3/navbar/Navbar.vue +296 -0
- package/vue-components/v3/navbar/NavbarItem.vue +81 -0
- package/vue-components/v3/navbar/NavbarItemContent.vue +284 -0
- package/vue-components/v3/navbar/Notification.vue +179 -0
- package/vue-components/v3/navbar/ThemeMode.vue +128 -112
- package/vue-components/v3/navbar/User.vue +383 -268
- package/vue-components/v3/notification/AlertBox.vue +39 -42
- package/vue-components/v3/notification/Notification.vue +49 -43
- package/vue-components/v3/notification/NotificationItem.vue +51 -19
- package/vue-components/v3/option-dots/Options.vue +188 -0
- package/vue-components/v3/pagination/Pagination.vue +203 -99
- package/vue-components/v3/preloader/Preloader.vue +23 -0
- package/vue-components/v3/searchbars/SearchBar.vue +51 -34
- package/vue-components/v3/sidebar/AccentColorPicker.vue +97 -0
- package/vue-components/v3/sidebar/ClusterSwitcher.vue +834 -81
- package/vue-components/v3/sidebar/Sidebar.vue +271 -0
- package/vue-components/v3/sidebar/SidebarBody.vue +7 -0
- package/vue-components/v3/sidebar/SidebarFooter.vue +80 -0
- package/vue-components/v3/sidebar/SidebarHeader.vue +124 -0
- package/vue-components/v3/sidebar/SidebarItem.vue +62 -0
- package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +101 -104
- package/vue-components/v3/sidebar/SidebarMenuList.vue +9 -0
- package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabs.vue +128 -0
- package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabsLayout.vue +29 -0
- package/vue-components/v3/sidebar/sidebar-tabs/TabsContent.vue +99 -0
- package/vue-components/v3/tab/TabItem.vue +10 -12
- package/vue-components/v3/tab/Tabs.vue +9 -0
- package/vue-components/v3/tab/TabsBody.vue +7 -0
- package/vue-components/v3/table/EmptyTableInfo.vue +8 -0
- package/vue-components/v3/table/FakeTableCell.vue +22 -31
- package/vue-components/v3/table/InfoTable.vue +85 -59
- package/vue-components/v3/table/MultiInfoTable.vue +72 -95
- package/vue-components/v3/table/Table.vue +582 -151
- package/vue-components/v3/table/TableCell.vue +20 -23
- package/vue-components/v3/table/TableContainer.vue +50 -28
- package/vue-components/v3/table/TableRow.vue +63 -85
- package/vue-components/v3/table/table-cell/ArrayCell.vue +67 -79
- package/vue-components/v3/table/table-cell/CellValue.vue +97 -103
- package/vue-components/v3/table/table-cell/GenericCell.vue +43 -42
- package/vue-components/v3/table/table-cell/ObjectCell.vue +67 -79
- package/vue-components/v3/table/table-cell/ValueWithModal.vue +22 -31
- package/vue-components/v3/tabs/EditorTabs.vue +18 -24
- package/vue-components/v3/tag/Tag.vue +15 -12
- package/vue-components/v3/tag/Tags.vue +7 -0
- package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +26 -23
- package/mixins/stickyContent.js +0 -141
- package/plugins/caching.ts +0 -243
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
input,
|
|
33
33
|
.ac-card,
|
|
34
34
|
textarea {
|
|
35
|
-
border: 1px solid $
|
|
35
|
+
border: 1px solid $primary !important;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
p {
|
|
39
|
-
color: $
|
|
39
|
+
color: $primary;
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
input,
|
|
45
45
|
.ac-card,
|
|
46
46
|
textarea {
|
|
47
|
-
border: 1px solid $
|
|
47
|
+
border: 1px solid $danger;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
p {
|
|
51
|
-
color: $
|
|
51
|
+
color: $danger;
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
|
|
@@ -56,12 +56,12 @@
|
|
|
56
56
|
input,
|
|
57
57
|
.ac-card,
|
|
58
58
|
textarea {
|
|
59
|
-
border: 1px solid $
|
|
59
|
+
border: 1px solid $info;
|
|
60
60
|
opacity: 0.5;
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
p {
|
|
64
|
-
color: $
|
|
64
|
+
color: $info;
|
|
65
65
|
opacity: 0.5;
|
|
66
66
|
}
|
|
67
67
|
}
|
|
@@ -69,10 +69,10 @@
|
|
|
69
69
|
&.borderless-input {
|
|
70
70
|
input {
|
|
71
71
|
border: none;
|
|
72
|
-
font-size:
|
|
72
|
+
font-size: 13px;
|
|
73
73
|
padding: 4px 7px;
|
|
74
74
|
height: 30px;
|
|
75
|
-
background-color: $
|
|
75
|
+
background-color: $white-100;
|
|
76
76
|
padding-right: 30px;
|
|
77
77
|
|
|
78
78
|
&[type="password"] {
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
input {
|
|
98
98
|
height: 45px;
|
|
99
99
|
font-size: 15px;
|
|
100
|
-
font-family: $
|
|
100
|
+
font-family: $font-paragraph;
|
|
101
101
|
font-weight: 400;
|
|
102
102
|
}
|
|
103
103
|
|
|
@@ -119,14 +119,14 @@
|
|
|
119
119
|
|
|
120
120
|
label {
|
|
121
121
|
top: 13px;
|
|
122
|
-
font-size:
|
|
122
|
+
font-size: 13px;
|
|
123
123
|
|
|
124
124
|
&.show-label {
|
|
125
125
|
font-size: 12px;
|
|
126
|
-
color: $
|
|
126
|
+
color: $primary-20;
|
|
127
127
|
top: -9px;
|
|
128
128
|
font-weight: 500;
|
|
129
|
-
background-color: $
|
|
129
|
+
background-color: $white-100;
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
132
|
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
.icon {
|
|
136
136
|
height: 45px;
|
|
137
137
|
width: 30px;
|
|
138
|
-
font-size:
|
|
138
|
+
font-size: 13px;
|
|
139
139
|
}
|
|
140
140
|
}
|
|
141
141
|
}
|
|
@@ -144,8 +144,8 @@
|
|
|
144
144
|
&.is-small {
|
|
145
145
|
input {
|
|
146
146
|
height: 36px;
|
|
147
|
-
font-size:
|
|
148
|
-
font-family: $
|
|
147
|
+
font-size: 13px;
|
|
148
|
+
font-family: $font-paragraph;
|
|
149
149
|
font-weight: 400;
|
|
150
150
|
}
|
|
151
151
|
|
|
@@ -168,7 +168,7 @@
|
|
|
168
168
|
|
|
169
169
|
label {
|
|
170
170
|
top: 8px;
|
|
171
|
-
font-size:
|
|
171
|
+
font-size: 13px;
|
|
172
172
|
&.switch-label {
|
|
173
173
|
top: 0;
|
|
174
174
|
}
|
|
@@ -177,7 +177,7 @@
|
|
|
177
177
|
font-size: 12px;
|
|
178
178
|
top: -9px;
|
|
179
179
|
font-weight: 500;
|
|
180
|
-
color: $
|
|
180
|
+
color: $primary-20;
|
|
181
181
|
&.is-required {
|
|
182
182
|
&:after {
|
|
183
183
|
width: calc(100% + 10px);
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
.icon {
|
|
192
192
|
height: 36px;
|
|
193
193
|
width: 25px;
|
|
194
|
-
font-size:
|
|
194
|
+
font-size: 13px;
|
|
195
195
|
}
|
|
196
196
|
}
|
|
197
197
|
}
|
|
@@ -200,8 +200,8 @@
|
|
|
200
200
|
&.is-extra-small {
|
|
201
201
|
input {
|
|
202
202
|
height: 32px;
|
|
203
|
-
font-size:
|
|
204
|
-
font-family: $
|
|
203
|
+
font-size: 13px;
|
|
204
|
+
font-family: $font-paragraph;
|
|
205
205
|
font-weight: 400;
|
|
206
206
|
}
|
|
207
207
|
|
|
@@ -223,7 +223,7 @@
|
|
|
223
223
|
|
|
224
224
|
label {
|
|
225
225
|
top: 8px;
|
|
226
|
-
font-size:
|
|
226
|
+
font-size: 13px;
|
|
227
227
|
&.switch-label {
|
|
228
228
|
top: 0;
|
|
229
229
|
}
|
|
@@ -239,7 +239,7 @@
|
|
|
239
239
|
.icon {
|
|
240
240
|
height: 32px;
|
|
241
241
|
width: 25px;
|
|
242
|
-
font-size:
|
|
242
|
+
font-size: 13px;
|
|
243
243
|
}
|
|
244
244
|
}
|
|
245
245
|
}
|
|
@@ -251,24 +251,24 @@
|
|
|
251
251
|
|
|
252
252
|
&.is-dark {
|
|
253
253
|
input {
|
|
254
|
-
background-color: $
|
|
254
|
+
background-color: $primary-5;
|
|
255
255
|
border-color: transparent;
|
|
256
|
-
color: $
|
|
256
|
+
color: $white-100;
|
|
257
257
|
|
|
258
258
|
&::placeholder {
|
|
259
|
-
color: $
|
|
259
|
+
color: $primary-90;
|
|
260
260
|
}
|
|
261
261
|
|
|
262
262
|
button {
|
|
263
263
|
i.fa {
|
|
264
|
-
color: $
|
|
264
|
+
color: $white-100;
|
|
265
265
|
}
|
|
266
266
|
}
|
|
267
267
|
}
|
|
268
268
|
}
|
|
269
269
|
|
|
270
270
|
label {
|
|
271
|
-
font-size:
|
|
271
|
+
font-size: 13px;
|
|
272
272
|
left: 15px;
|
|
273
273
|
top: 11px;
|
|
274
274
|
cursor: text;
|
|
@@ -278,7 +278,7 @@
|
|
|
278
278
|
transition: 0.3s ease-in-out;
|
|
279
279
|
|
|
280
280
|
.is-required {
|
|
281
|
-
color: $
|
|
281
|
+
color: $danger;
|
|
282
282
|
|
|
283
283
|
img {
|
|
284
284
|
position: absolute;
|
|
@@ -291,15 +291,15 @@
|
|
|
291
291
|
top: -9px;
|
|
292
292
|
left: 10px;
|
|
293
293
|
padding: 0 5px;
|
|
294
|
-
font-size:
|
|
295
|
-
color: $
|
|
294
|
+
font-size: 13px;
|
|
295
|
+
color: $primary-20;
|
|
296
296
|
|
|
297
297
|
&:after {
|
|
298
298
|
position: absolute;
|
|
299
299
|
content: "";
|
|
300
300
|
left: 0;
|
|
301
301
|
top: 50%;
|
|
302
|
-
background-color: $
|
|
302
|
+
background-color: $white-100;
|
|
303
303
|
width: 100%;
|
|
304
304
|
height: 2px;
|
|
305
305
|
margin-top: -1px;
|
|
@@ -348,7 +348,7 @@
|
|
|
348
348
|
|
|
349
349
|
.ac-dropdown-content {
|
|
350
350
|
position: absolute;
|
|
351
|
-
background-color: $
|
|
351
|
+
background-color: $info-light;
|
|
352
352
|
width: 100%;
|
|
353
353
|
height: auto;
|
|
354
354
|
box-shadow: 0px 4px 16px rgba(132, 147, 168, 0.6);
|
|
@@ -358,9 +358,9 @@
|
|
|
358
358
|
ul {
|
|
359
359
|
li {
|
|
360
360
|
a {
|
|
361
|
-
color: $
|
|
361
|
+
color: $primary-10;
|
|
362
362
|
display: block;
|
|
363
|
-
font-size:
|
|
363
|
+
font-size: 13px;
|
|
364
364
|
padding: 8px 20px;
|
|
365
365
|
transition: 0.3s;
|
|
366
366
|
|
|
@@ -371,7 +371,7 @@
|
|
|
371
371
|
var(--hsl-lightness),
|
|
372
372
|
0.2
|
|
373
373
|
);
|
|
374
|
-
color: $
|
|
374
|
+
color: $primary;
|
|
375
375
|
}
|
|
376
376
|
}
|
|
377
377
|
}
|
|
@@ -397,7 +397,7 @@
|
|
|
397
397
|
|
|
398
398
|
&:focus {
|
|
399
399
|
outline: none;
|
|
400
|
-
border: 1px solid $
|
|
400
|
+
border: 1px solid $primary;
|
|
401
401
|
}
|
|
402
402
|
}
|
|
403
403
|
}
|
|
@@ -405,30 +405,30 @@
|
|
|
405
405
|
input,
|
|
406
406
|
.ac-card,
|
|
407
407
|
textarea {
|
|
408
|
-
background-color: $
|
|
409
|
-
color: $
|
|
408
|
+
background-color: $white-100;
|
|
409
|
+
color: $primary-10;
|
|
410
410
|
height: 45px;
|
|
411
411
|
font-weight: 400;
|
|
412
412
|
width: 100%;
|
|
413
413
|
border-radius: 4px;
|
|
414
414
|
border: 1px solid $ac-label-text;
|
|
415
415
|
padding: 8px 15px;
|
|
416
|
-
font-size:
|
|
416
|
+
font-size: 13px;
|
|
417
417
|
|
|
418
418
|
&:hover {
|
|
419
|
-
border-color: $
|
|
419
|
+
border-color: $black-80;
|
|
420
420
|
}
|
|
421
421
|
|
|
422
422
|
&.bg-white {
|
|
423
|
-
background-color: $
|
|
423
|
+
background-color: $white-100;
|
|
424
424
|
}
|
|
425
425
|
&.StripeElement--focus {
|
|
426
|
-
border: 1px solid $
|
|
426
|
+
border: 1px solid $primary;
|
|
427
427
|
}
|
|
428
428
|
&:focus {
|
|
429
|
-
border: 1px solid $
|
|
429
|
+
border: 1px solid $primary;
|
|
430
430
|
outline: none;
|
|
431
|
-
background-color: $
|
|
431
|
+
background-color: $white-100;
|
|
432
432
|
}
|
|
433
433
|
|
|
434
434
|
&[type="password"] {
|
|
@@ -452,8 +452,8 @@
|
|
|
452
452
|
}
|
|
453
453
|
|
|
454
454
|
b.isRequired {
|
|
455
|
-
color: $
|
|
456
|
-
font-size:
|
|
455
|
+
color: $danger
|
|
456
|
+
font-size: 13px;
|
|
457
457
|
position: absolute;
|
|
458
458
|
right: 5px;
|
|
459
459
|
z-index: 9;
|
|
@@ -473,7 +473,7 @@
|
|
|
473
473
|
.is-error {
|
|
474
474
|
font-size: 12px;
|
|
475
475
|
line-height: 22px;
|
|
476
|
-
color: $
|
|
476
|
+
color: $danger;
|
|
477
477
|
text-align: left;
|
|
478
478
|
|
|
479
479
|
i.fa {
|
|
@@ -500,20 +500,20 @@
|
|
|
500
500
|
left: 180px;
|
|
501
501
|
top: 10px;
|
|
502
502
|
z-index: 1;
|
|
503
|
-
font-size:
|
|
503
|
+
font-size: 13px;
|
|
504
504
|
color: $ac-label-text;
|
|
505
505
|
font-weight: 400;
|
|
506
506
|
}
|
|
507
507
|
}
|
|
508
508
|
|
|
509
509
|
.file-cta {
|
|
510
|
-
background-color: $
|
|
510
|
+
background-color: $primary;
|
|
511
511
|
margin-top: 3.5px;
|
|
512
512
|
margin-left: 3px;
|
|
513
513
|
height: 26px;
|
|
514
514
|
|
|
515
515
|
.file-label {
|
|
516
|
-
color: $
|
|
516
|
+
color: $white-100;
|
|
517
517
|
font-weight: 400;
|
|
518
518
|
}
|
|
519
519
|
}
|
|
@@ -526,7 +526,7 @@
|
|
|
526
526
|
font-weight: 400;
|
|
527
527
|
border-radius: 4px;
|
|
528
528
|
border: 1px solid $ac-label-text;
|
|
529
|
-
font-size:
|
|
529
|
+
font-size: 13px;
|
|
530
530
|
|
|
531
531
|
.file-cta {
|
|
532
532
|
background-color: transparent;
|
|
@@ -534,28 +534,28 @@
|
|
|
534
534
|
}
|
|
535
535
|
|
|
536
536
|
&:hover {
|
|
537
|
-
border-color: $
|
|
537
|
+
border-color: $black-80;
|
|
538
538
|
}
|
|
539
539
|
|
|
540
540
|
&.bg-white {
|
|
541
|
-
background-color: $
|
|
541
|
+
background-color: $white-100;
|
|
542
542
|
}
|
|
543
543
|
|
|
544
544
|
&:focus {
|
|
545
|
-
border: 1px solid $
|
|
545
|
+
border: 1px solid $primary;
|
|
546
546
|
outline: none;
|
|
547
|
-
background-color: $
|
|
547
|
+
background-color: $white-100;
|
|
548
548
|
}
|
|
549
549
|
}
|
|
550
550
|
}
|
|
551
551
|
|
|
552
552
|
input#captcha {
|
|
553
|
-
background-color: $
|
|
553
|
+
background-color: $white-100;
|
|
554
554
|
height: 36px;
|
|
555
555
|
font-weight: 400;
|
|
556
556
|
width: 100%;
|
|
557
557
|
border-radius: 4px;
|
|
558
|
-
border: 1px solid $
|
|
558
|
+
border: 1px solid $primary-90;
|
|
559
559
|
padding: 8px 15px;
|
|
560
560
|
font-size: 13px;
|
|
561
561
|
transition: background-color 0.3s ease-in-out;
|
|
@@ -575,39 +575,39 @@ input#captcha {
|
|
|
575
575
|
.is-checkradio[type="checkbox"].ac-checkbox + label::before {
|
|
576
576
|
height: 16px;
|
|
577
577
|
width: 16px;
|
|
578
|
-
background-color: $
|
|
578
|
+
background-color: $primary-90;
|
|
579
579
|
}
|
|
580
580
|
|
|
581
581
|
.is-checkradio[type="checkbox"].ac-checkbox:checked + label::before {
|
|
582
|
-
background-color: $
|
|
583
|
-
border-color: $
|
|
582
|
+
background-color: $primary;
|
|
583
|
+
border-color: $primary;
|
|
584
584
|
}
|
|
585
585
|
|
|
586
586
|
.is-checkradio[type="checkbox"].ac-checkbox + label::after {
|
|
587
587
|
top: 6px;
|
|
588
588
|
left: 6px;
|
|
589
|
-
border-color: $
|
|
589
|
+
border-color: $black-80;
|
|
590
590
|
width: 0.3rem;
|
|
591
591
|
height: 0.5rem;
|
|
592
592
|
}
|
|
593
593
|
|
|
594
594
|
.is-checkradio[type="checkbox"].ac-checkbox:checked + label::after {
|
|
595
|
-
border-color: $
|
|
595
|
+
border-color: $white-100;
|
|
596
596
|
}
|
|
597
597
|
|
|
598
598
|
.is-checkradio[type="checkbox"].ac-checkbox + label {
|
|
599
|
-
color: $
|
|
599
|
+
color: $primary-10;
|
|
600
600
|
font-size: 13px !important;
|
|
601
601
|
padding-left: 25px;
|
|
602
602
|
user-select: none;
|
|
603
603
|
}
|
|
604
604
|
|
|
605
605
|
.is-checkradio[type="checkbox"].ac-checkbox:checked + label {
|
|
606
|
-
color: $
|
|
606
|
+
color: $primary !important;
|
|
607
607
|
}
|
|
608
608
|
|
|
609
609
|
.is-checkradio[type="checkbox"].ac-checkbox + label {
|
|
610
|
-
color: $
|
|
610
|
+
color: $primary-10;
|
|
611
611
|
font-size: 13px;
|
|
612
612
|
padding-left: 25px;
|
|
613
613
|
user-select: none;
|
|
@@ -622,7 +622,7 @@ input#captcha {
|
|
|
622
622
|
.ac-single-radio {
|
|
623
623
|
&.is-selected {
|
|
624
624
|
.is-checkradio[type="radio"].ac-radio + label {
|
|
625
|
-
color: $
|
|
625
|
+
color: $primary;
|
|
626
626
|
}
|
|
627
627
|
}
|
|
628
628
|
}
|
|
@@ -638,7 +638,7 @@ input#captcha {
|
|
|
638
638
|
user-select: none;
|
|
639
639
|
font-size: 13px;
|
|
640
640
|
font-weight: 400;
|
|
641
|
-
color: $
|
|
641
|
+
color: $primary-10;
|
|
642
642
|
|
|
643
643
|
&::before {
|
|
644
644
|
background-color: #cad3df;
|
|
@@ -689,27 +689,27 @@ input#captcha {
|
|
|
689
689
|
|
|
690
690
|
&.ac-switch {
|
|
691
691
|
&.is-primary {
|
|
692
|
-
@include ac-switch($
|
|
692
|
+
@include ac-switch($primary);
|
|
693
693
|
}
|
|
694
694
|
|
|
695
695
|
&.is-link {
|
|
696
|
-
@include ac-switch($
|
|
696
|
+
@include ac-switch($info);
|
|
697
697
|
}
|
|
698
698
|
|
|
699
699
|
&.is-info {
|
|
700
|
-
@include ac-switch($
|
|
700
|
+
@include ac-switch($info);
|
|
701
701
|
}
|
|
702
702
|
|
|
703
703
|
&.is-success {
|
|
704
|
-
@include ac-switch($
|
|
704
|
+
@include ac-switch($success);
|
|
705
705
|
}
|
|
706
706
|
|
|
707
707
|
&.is-warning {
|
|
708
|
-
@include ac-switch($
|
|
708
|
+
@include ac-switch($warning);
|
|
709
709
|
}
|
|
710
710
|
|
|
711
711
|
&.is-danger {
|
|
712
|
-
@include ac-switch($
|
|
712
|
+
@include ac-switch($danger);
|
|
713
713
|
}
|
|
714
714
|
}
|
|
715
715
|
}
|
|
@@ -738,8 +738,8 @@ input#captcha {
|
|
|
738
738
|
background-color: transparent;
|
|
739
739
|
font-size: 18px;
|
|
740
740
|
font-weight: 400;
|
|
741
|
-
font-family: $
|
|
742
|
-
color: $
|
|
741
|
+
font-family: $font-heading;
|
|
742
|
+
color: $primary-20;
|
|
743
743
|
width: 100%;
|
|
744
744
|
padding: 5px 0;
|
|
745
745
|
|
|
@@ -759,18 +759,18 @@ input#captcha {
|
|
|
759
759
|
padding: 0.3rem 0.5rem 0.2rem 1.5rem;
|
|
760
760
|
|
|
761
761
|
&::after {
|
|
762
|
-
background-color: $
|
|
762
|
+
background-color: $primary;
|
|
763
763
|
width: 16px;
|
|
764
764
|
height: 16px;
|
|
765
765
|
top: 5px;
|
|
766
766
|
}
|
|
767
767
|
|
|
768
768
|
&:after {
|
|
769
|
-
background-color: $
|
|
769
|
+
background-color: $primary;
|
|
770
770
|
}
|
|
771
771
|
|
|
772
772
|
&:before {
|
|
773
|
-
border-color: $
|
|
773
|
+
border-color: $primary;
|
|
774
774
|
width: 16px;
|
|
775
775
|
height: 16px;
|
|
776
776
|
top: 5px;
|
|
@@ -781,7 +781,7 @@ input#captcha {
|
|
|
781
781
|
&:not([disabled]) {
|
|
782
782
|
& + label {
|
|
783
783
|
&:before {
|
|
784
|
-
border-color: $
|
|
784
|
+
border-color: $primary !important;
|
|
785
785
|
}
|
|
786
786
|
}
|
|
787
787
|
}
|
|
@@ -790,7 +790,7 @@ input#captcha {
|
|
|
790
790
|
|
|
791
791
|
.is-checkradio[type="radio"]:checked {
|
|
792
792
|
& + label {
|
|
793
|
-
color: $
|
|
793
|
+
color: $primary;
|
|
794
794
|
}
|
|
795
795
|
}
|
|
796
796
|
}
|
|
@@ -820,22 +820,22 @@ Responsive Classes
|
|
|
820
820
|
.ac-single-input {
|
|
821
821
|
input {
|
|
822
822
|
height: 36px;
|
|
823
|
-
font-size:
|
|
823
|
+
font-size: 13px;
|
|
824
824
|
font-weight: 400;
|
|
825
825
|
}
|
|
826
826
|
|
|
827
827
|
label {
|
|
828
828
|
top: 9px;
|
|
829
|
-
font-size:
|
|
829
|
+
font-size: 13px;
|
|
830
830
|
|
|
831
831
|
&.show-label {
|
|
832
832
|
top: -9px;
|
|
833
|
-
font-size:
|
|
833
|
+
font-size: 12px;
|
|
834
834
|
}
|
|
835
835
|
}
|
|
836
836
|
|
|
837
837
|
textarea {
|
|
838
|
-
font-size:
|
|
838
|
+
font-size: 13px;
|
|
839
839
|
}
|
|
840
840
|
|
|
841
841
|
span {
|
|
@@ -854,7 +854,7 @@ Responsive Classes
|
|
|
854
854
|
.ac-file-upload {
|
|
855
855
|
label {
|
|
856
856
|
height: 36px;
|
|
857
|
-
font-size:
|
|
857
|
+
font-size: 13px;
|
|
858
858
|
}
|
|
859
859
|
}
|
|
860
860
|
}
|
|
@@ -47,28 +47,28 @@
|
|
|
47
47
|
|
|
48
48
|
.ac-modal-inner {
|
|
49
49
|
margin: 0 auto;
|
|
50
|
-
background-color: $
|
|
50
|
+
background-color: $white-100;
|
|
51
51
|
border-radius: 4px;
|
|
52
52
|
overflow: hidden;
|
|
53
53
|
box-shadow: 12px 26px 118px rgba(0, 0, 0, 0.16);
|
|
54
54
|
|
|
55
55
|
.ac-modal-header {
|
|
56
|
-
background-color: $
|
|
56
|
+
background-color: $white-100;
|
|
57
57
|
padding: 10px 20px;
|
|
58
58
|
display: flex;
|
|
59
59
|
align-items: center;
|
|
60
60
|
justify-content: space-between;
|
|
61
|
-
border: 1px solid $
|
|
61
|
+
border: 1px solid $primary-90;
|
|
62
62
|
|
|
63
63
|
h6 {
|
|
64
|
-
color: $
|
|
64
|
+
color: $primary-10;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
.ms-close-button {
|
|
68
68
|
button {
|
|
69
69
|
cursor: pointer;
|
|
70
70
|
padding: 3px 5px;
|
|
71
|
-
color: $
|
|
71
|
+
color: $primary-10;
|
|
72
72
|
}
|
|
73
73
|
}
|
|
74
74
|
}
|
|
@@ -94,9 +94,9 @@
|
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
&.is-description {
|
|
97
|
-
font-family: $
|
|
97
|
+
font-family: $font-heading;
|
|
98
98
|
font-weight: 400;
|
|
99
|
-
color: $
|
|
99
|
+
color: $primary-20;
|
|
100
100
|
|
|
101
101
|
strong {
|
|
102
102
|
font-weight: 500;
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
.ac-modal-footer {
|
|
111
|
-
border-top: 1px solid $
|
|
111
|
+
border-top: 1px solid $primary-90;
|
|
112
112
|
padding: 10px 20px;
|
|
113
113
|
}
|
|
114
114
|
}
|