@appscode/design-system 1.1.0-beta.5 → 1.1.0-beta.51
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/_colors.scss +45 -114
- package/base/utilities/_global.scss +25 -19
- package/base/utilities/_typography.scss +2 -2
- package/base/utilities/dark-theme.scss +2 -8
- package/components/_ac-alert-box.scss +2 -2
- package/components/_ac-code-highlight.scss +9 -12
- package/components/_ac-drag.scss +4 -4
- package/components/_ac-modal.scss +2 -2
- package/components/_ac-select-box.scss +5 -5
- package/components/_ac-table.scss +7 -7
- package/components/_ac-tabs.scss +29 -26
- package/components/_all.scss +7 -5
- package/components/_buttons.scss +10 -10
- package/components/_graph.scss +10 -10
- package/components/_image-upload.scss +4 -4
- package/components/_input-card.scss +232 -0
- package/components/{_ac-input.scss → _input.scss} +53 -7
- package/components/_left-sidebar-menu.scss +9 -13
- package/components/_monaco-editor.scss +2 -2
- package/components/_multi-select.scss +589 -0
- package/components/_navbar.scss +7 -7
- package/components/_nested-list.scss +2 -2
- package/components/_overview-info.scss +3 -3
- package/components/_pricing-table.scss +5 -5
- package/components/_progress-bar.scss +61 -74
- package/components/_subscription-card.scss +8 -10
- package/components/_table-of-content.scss +4 -4
- package/components/{_ac-terminal.scss → _terminal.scss} +62 -73
- package/components/_widget-menu.scss +7 -12
- package/components/_wizard.scss +13 -286
- package/components/bbum/_information-center.scss +8 -10
- package/components/bbum/_mobile-desktop.scss +9 -14
- package/components/bbum/_single-post-preview.scss +9 -9
- package/components/ui-builder/_ui-builder.scss +194 -10
- package/components/ui-builder/_vue-open-api.scss +58 -13
- package/icons/close-icon.svg +3 -0
- package/layouts/_code-preview.scss +6 -7
- package/package.json +1 -1
- package/vue-components/types/importFlow.ts +16 -0
- package/vue-components/types/notification.ts +3 -3
- package/vue-components/v2/banner/Banner.vue +1 -1
- package/vue-components/v2/editor/FilteredFileEditor.vue +2 -2
- package/vue-components/v2/modal/Modal.vue +1 -1
- package/vue-components/v2/pagination/Pagination.vue +1 -0
- package/vue-components/v3/alert/Alert.vue +2 -2
- package/vue-components/v3/banner/Banner.vue +2 -2
- package/vue-components/v3/breadcrumbs/Breadcrumb.vue +66 -4
- package/vue-components/v3/button/Button.vue +33 -11
- package/vue-components/v3/cards/Cluster.vue +7 -3
- package/vue-components/v3/cards/FeatureCard.vue +1 -1
- package/vue-components/v3/cards/FeatureCards.vue +1 -1
- package/vue-components/v3/cards/InfoCard.vue +1 -2
- package/vue-components/v3/cards/Vendor.vue +1 -1
- package/vue-components/v3/content/ContentTable.vue +1 -1
- package/vue-components/v3/editor/FilteredFileEditor.vue +5 -1
- package/vue-components/v3/footer/FooterArea.vue +6 -0
- package/vue-components/v3/footer/Info.vue +10 -8
- package/vue-components/v3/footer/Status.vue +24 -23
- package/vue-components/v3/footer/Usage.vue +20 -30
- package/vue-components/v3/form/Form.vue +0 -3
- package/vue-components/v3/form-fields/AcSingleInput.vue +503 -1
- package/vue-components/v3/header/Header.vue +2 -2
- package/vue-components/v3/loaders/InfoCardLoader.vue +18 -60
- package/vue-components/v3/loaders/SingleInfoCardLoader.vue +24 -0
- package/vue-components/v3/modal/Modal.vue +6 -11
- package/vue-components/v3/navbar/NavbarItemContent.vue +1 -1
- package/vue-components/v3/navbar/User.vue +4 -4
- package/vue-components/v3/notification/AlertBox.vue +233 -3
- package/vue-components/v3/notification/Notification.vue +2 -2
- package/vue-components/v3/option-dots/Options.vue +3 -2
- package/vue-components/v3/pagination/Pagination.vue +2 -1
- package/vue-components/v3/preloader/Preloader.vue +1 -1
- package/vue-components/v3/sidebar/ClusterSwitcher.vue +1 -761
- package/vue-components/v3/sidebar/Sidebar.vue +3 -30
- package/vue-components/v3/sidebar/SidebarFooter.vue +5 -2
- package/vue-components/v3/sidebar/Steps.vue +55 -51
- package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabs.vue +78 -2
- package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabsLayout.vue +12 -3
- package/vue-components/v3/table/InfoTable.vue +6 -4
- package/vue-components/v3/table/Table.vue +16 -16
- package/vue-components/v3/table/TableRow.vue +2 -2
- package/vue-components/v3/tag/Tag.vue +1 -0
- package/components/_ac-card.scss +0 -0
- package/components/_ac-multi-select.scss +0 -780
- package/vue-components/types/longRunningTasks.ts +0 -20
- package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +0 -94
- package/vue-components/v3/modals/LongRunningTasksModal.vue +0 -402
- package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +0 -151
- /package/components/{_ac-accordion.scss → _accordion.scss} +0 -0
- /package/components/{_ac-report.scss → _report.scss} +0 -0
|
@@ -1,118 +1,44 @@
|
|
|
1
1
|
// ===================================PREVIOUS STYLE========================================
|
|
2
|
-
// Base Color
|
|
3
|
-
// $ac-orange: #ff8000;
|
|
4
|
-
// $warning: #f7ad2a;
|
|
5
|
-
// $success: #158748;
|
|
6
|
-
// $info: #0aafff;
|
|
7
|
-
// $purple: #791e94;
|
|
8
|
-
// $ac-red: #ff3729;
|
|
9
|
-
|
|
10
|
-
// Products Color
|
|
11
|
-
// $voyager-primary: #2d2a78;
|
|
12
|
-
// $guard-primary: #d84e27;
|
|
13
|
-
// $kubeci-primary: #2c3e50;
|
|
14
|
-
// $kubed-primary: #1c7bd4;
|
|
15
|
-
// $kubedb-primary: #4d4dcb;
|
|
16
|
-
// $kubesheild-primary: #2516c7;
|
|
17
|
-
// $kubevault-primary: #326ce5;
|
|
18
|
-
// $pharmer-primary: #326de6;
|
|
19
|
-
// $searchlight-primary: #111738;
|
|
20
|
-
// $servicebroker-primary: #29b4a2;
|
|
21
|
-
// $stash-primary: #5e2dea;
|
|
22
|
-
// $swift-primary: #3f51b6;
|
|
23
|
-
|
|
24
|
-
// Colors Primary
|
|
25
2
|
// root colors
|
|
26
|
-
:root {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
// --ac-white-lighter: #f2f5f8;
|
|
39
|
-
// --ac-white-lightest: #f8f9fb;
|
|
40
|
-
|
|
41
|
-
// --ac-black: #000000;
|
|
42
|
-
// --ac-color-text-90: #323232;
|
|
43
|
-
// --ac-link-black: #32325d;
|
|
44
|
-
// --ac-gray-darker: #494949;
|
|
45
|
-
// --ac-gray: #767676;
|
|
46
|
-
// --ac-gray-lighter: #a4a4a4;
|
|
47
|
-
// --ac-white-text: #b4c0cc;
|
|
48
|
-
|
|
49
|
-
// theme color
|
|
50
|
-
// --dark-bg: #21272e;
|
|
51
|
-
// --dark-bg-light: #2e323c;
|
|
52
|
-
|
|
53
|
-
// --ac-blue-light: #eceff4;
|
|
54
|
-
// --ac-bg-light-gray: #f4f6f9;
|
|
55
|
-
// --table-header: #e4e8ef;
|
|
56
|
-
// --ac-label-text: #a6abbd;
|
|
57
|
-
|
|
58
|
-
--font-hsl-hue: 0;
|
|
59
|
-
--font-hsl-saturation: 0%;
|
|
60
|
-
--font-hsl-lightness: 11%;
|
|
61
|
-
|
|
62
|
-
--ac-primary: hsla(
|
|
63
|
-
var(--hsl-hue),
|
|
64
|
-
var(--hsl-saturation),
|
|
65
|
-
var(--hsl-lightness),
|
|
66
|
-
1
|
|
67
|
-
);
|
|
68
|
-
|
|
69
|
-
--ac-text: hsla(
|
|
70
|
-
var(--font-hsl-hue),
|
|
71
|
-
calc(var(--font-hsl-saturation) + 10%),
|
|
72
|
-
calc(var(--font-hsl-lightness) + 10%),
|
|
73
|
-
1
|
|
74
|
-
);
|
|
75
|
-
--ac-text-heading: hsla(
|
|
76
|
-
var(--font-hsl-hue),
|
|
77
|
-
var(--font-hsl-saturation),
|
|
78
|
-
var(--font-hsl-lightness),
|
|
79
|
-
1
|
|
80
|
-
);
|
|
81
|
-
--ac-color-value: hsl(
|
|
82
|
-
var(--font-hsl-hue),
|
|
83
|
-
var(--font-hsl-saturation),
|
|
84
|
-
calc(var(--font-hsl-lightness) + 25%)
|
|
85
|
-
);
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
$ac-bg: var(--ac-bg);
|
|
3
|
+
// :root {
|
|
4
|
+
// --hsl-hue: 208;
|
|
5
|
+
// --hsl-saturation: 77%;
|
|
6
|
+
// --hsl-lightness: 40%;
|
|
7
|
+
|
|
8
|
+
// --ac-primary: hsla(var(--hsl-hue),
|
|
9
|
+
// var(--hsl-saturation),
|
|
10
|
+
// var(--hsl-lightness),
|
|
11
|
+
// 1);
|
|
12
|
+
// }
|
|
13
|
+
|
|
14
|
+
// transparent: var(--ac-bg);
|
|
89
15
|
// $primary: var(--ac-primary);
|
|
90
16
|
// $primary-20: var(--ac-color-value);
|
|
91
17
|
|
|
92
18
|
// Colors
|
|
93
|
-
$ac-black: var(--ac-black);
|
|
94
|
-
$primary-10-90: var(--ac-color-text-90);
|
|
95
|
-
$ac-link-black: var(--ac-link-black);
|
|
96
|
-
$black-40: var(--ac-gray-darker);
|
|
97
|
-
$black-30: var(--ac-gray-dark);
|
|
98
|
-
$ac-gray: var(--ac-gray);
|
|
99
|
-
$ac-gray-light: var(--ac-gray-light);
|
|
100
|
-
$ac-gray-lighter: var(--ac-gray-lighter);
|
|
101
|
-
$ac-gray-lightest: var(--ac-gray-lightest);
|
|
102
|
-
$white-100
|
|
103
|
-
$white-
|
|
104
|
-
$white-
|
|
105
|
-
$white-100: var(--ac-white);
|
|
106
|
-
$ac-full-white: var(--ac-full-white);
|
|
19
|
+
// $ac-black: var(--ac-black);
|
|
20
|
+
// $primary-10-90: var(--ac-color-text-90);
|
|
21
|
+
// $ac-link-black: var(--ac-link-black);
|
|
22
|
+
// $black-40: var(--ac-gray-darker);
|
|
23
|
+
// $black-30: var(--ac-gray-dark);
|
|
24
|
+
// $ac-gray: var(--ac-gray);
|
|
25
|
+
// $ac-gray-light: var(--ac-gray-light);
|
|
26
|
+
// $ac-gray-lighter: var(--ac-gray-lighter);
|
|
27
|
+
// $ac-gray-lightest: var(--ac-gray-lightest);
|
|
28
|
+
// $white-100: var(--ac-white-light);
|
|
29
|
+
// $white-100er: var(--ac-white-lighter);
|
|
30
|
+
// $white-100est: var(--ac-white-lightest);
|
|
31
|
+
// $white-100: var(--ac-white);
|
|
32
|
+
// $ac-full-white: var(--ac-full-white);
|
|
107
33
|
|
|
108
34
|
// $info-light: var(--ac-blue-light);
|
|
109
|
-
|
|
110
|
-
$table-header: var(--table-header);
|
|
111
|
-
$ac-label-text: var(--ac-label-text);
|
|
35
|
+
// transparent-light-gray: var(--ac-bg-light-gray);
|
|
36
|
+
// $table-header: var(--table-header);
|
|
37
|
+
// $ac-label-text: var(--ac-label-text);
|
|
112
38
|
|
|
113
39
|
// for dark theme CSS
|
|
114
|
-
$dark-bg: var(--dark-bg);
|
|
115
|
-
$
|
|
40
|
+
// $dark-bg: var(--dark-bg);
|
|
41
|
+
// $black-8: var(--dark-bg-light);
|
|
116
42
|
// ===================================PREVIOUS STYLE========================================
|
|
117
43
|
|
|
118
44
|
// white and black
|
|
@@ -128,13 +54,12 @@ $primary-20: hsl($primary-hue, $primary-saturation, 20%);
|
|
|
128
54
|
$primary-30: hsl($primary-hue, $primary-saturation, 30%);
|
|
129
55
|
$primary-40: hsl($primary-hue, $primary-saturation, 40%);
|
|
130
56
|
$primary: hsl($primary-hue, $primary-saturation, 40%);
|
|
131
|
-
$ac-primary: hsl(var(--hsl-hue), var(--hsl-saturation), 40%);
|
|
132
|
-
|
|
133
57
|
$primary-50: hsl($primary-hue, $primary-saturation, 50%);
|
|
134
58
|
$primary-60: hsl($primary-hue, $primary-saturation, 60%);
|
|
135
59
|
$primary-70: hsl($primary-hue, $primary-saturation, 70%);
|
|
136
60
|
$primary-80: hsl($primary-hue, $primary-saturation, 80%);
|
|
137
61
|
$primary-90: hsl($primary-hue, $primary-saturation, 90%);
|
|
62
|
+
$primary-93: hsl($primary-hue, $primary-saturation, 93%);
|
|
138
63
|
$primary-95: hsl($primary-hue, $primary-saturation, 95%);
|
|
139
64
|
$primary-97: hsl($primary-hue, $primary-saturation, 97%);
|
|
140
65
|
|
|
@@ -152,6 +77,7 @@ $green-60: hsl($green-hue, $green-saturation, 60%);
|
|
|
152
77
|
$green-70: hsl($green-hue, $green-saturation, 70%);
|
|
153
78
|
$green-80: hsl($green-hue, $green-saturation, 80%);
|
|
154
79
|
$green-90: hsl($green-hue, $green-saturation, 90%);
|
|
80
|
+
$green-93: hsl($green-hue, $green-saturation, 93%);
|
|
155
81
|
$green-95: hsl($green-hue, $green-saturation, 95%);
|
|
156
82
|
$green-97: hsl($green-hue, $green-saturation, 97%);
|
|
157
83
|
|
|
@@ -169,6 +95,7 @@ $blue-60: hsl($blue-hue, $blue-saturation, 60%);
|
|
|
169
95
|
$blue-70: hsl($blue-hue, $blue-saturation, 70%);
|
|
170
96
|
$blue-80: hsl($blue-hue, $blue-saturation, 80%);
|
|
171
97
|
$blue-90: hsl($blue-hue, $blue-saturation, 90%);
|
|
98
|
+
$blue-93: hsl($blue-hue, $blue-saturation, 93%);
|
|
172
99
|
$blue-95: hsl($blue-hue, $blue-saturation, 95%);
|
|
173
100
|
$blue-97: hsl($blue-hue, $blue-saturation, 97%);
|
|
174
101
|
|
|
@@ -186,6 +113,7 @@ $purple-60: hsl($purple-hue, $purple-saturation, 60%);
|
|
|
186
113
|
$purple-70: hsl($purple-hue, $purple-saturation, 70%);
|
|
187
114
|
$purple-80: hsl($purple-hue, $purple-saturation, 80%);
|
|
188
115
|
$purple-90: hsl($purple-hue, $purple-saturation, 90%);
|
|
116
|
+
$purple-93: hsl($purple-hue, $purple-saturation, 93%);
|
|
189
117
|
$purple-95: hsl($purple-hue, $purple-saturation, 95%);
|
|
190
118
|
$purple-97: hsl($purple-hue, $purple-saturation, 97%);
|
|
191
119
|
|
|
@@ -203,6 +131,7 @@ $yellow-60: hsl($yellow-hue, $yellow-saturation, 60%);
|
|
|
203
131
|
$yellow-70: hsl($yellow-hue, $yellow-saturation, 70%);
|
|
204
132
|
$yellow-80: hsl($yellow-hue, $yellow-saturation, 80%);
|
|
205
133
|
$yellow-90: hsl($yellow-hue, $yellow-saturation, 90%);
|
|
134
|
+
$yellow-93: hsl($yellow-hue, $yellow-saturation, 93%);
|
|
206
135
|
$yellow-95: hsl($yellow-hue, $yellow-saturation, 95%);
|
|
207
136
|
$yellow-97: hsl($yellow-hue, $yellow-saturation, 97%);
|
|
208
137
|
|
|
@@ -213,13 +142,14 @@ $red-5: hsl($red-hue, $red-saturation, 5%);
|
|
|
213
142
|
$red-10: hsl($red-hue, $red-saturation, 10%);
|
|
214
143
|
$red-20: hsl($red-hue, $red-saturation, 20%);
|
|
215
144
|
$red-30: hsl($red-hue, $red-saturation, 30%);
|
|
145
|
+
$danger: hsl($red-hue, $red-saturation, 40%);
|
|
216
146
|
$red-40: hsl($red-hue, $red-saturation, 40%);
|
|
217
147
|
$red-50: hsl($red-hue, $red-saturation, 50%);
|
|
218
|
-
$danger: hsl($red-hue, $red-saturation, 50%);
|
|
219
148
|
$red-60: hsl($red-hue, $red-saturation, 60%);
|
|
220
149
|
$red-70: hsl($red-hue, $red-saturation, 70%);
|
|
221
150
|
$red-80: hsl($red-hue, $red-saturation, 80%);
|
|
222
151
|
$red-90: hsl($red-hue, $red-saturation, 90%);
|
|
152
|
+
$red-93: hsl($red-hue, $red-saturation, 93%);
|
|
223
153
|
$red-95: hsl($red-hue, $red-saturation, 95%);
|
|
224
154
|
$red-97: hsl($red-hue, $red-saturation, 97%);
|
|
225
155
|
|
|
@@ -237,6 +167,7 @@ $black-60: hsl($black-hue, $black-saturation, 60%);
|
|
|
237
167
|
$black-70: hsl($black-hue, $black-saturation, 70%);
|
|
238
168
|
$black-80: hsl($black-hue, $black-saturation, 80%);
|
|
239
169
|
$black-90: hsl($black-hue, $black-saturation, 90%);
|
|
170
|
+
$black-93: hsl($black-hue, $black-saturation, 93%);
|
|
240
171
|
$black-95: hsl($black-hue, $black-saturation, 95%);
|
|
241
172
|
$black-97: hsl($black-hue, $black-saturation, 97%);
|
|
242
173
|
|
|
@@ -299,7 +230,7 @@ $black-97: hsl($black-hue, $black-saturation, 97%);
|
|
|
299
230
|
"primary",
|
|
300
231
|
$primary-hue,
|
|
301
232
|
$primary-saturation,
|
|
302
|
-
|
|
233
|
+
93,
|
|
303
234
|
97,
|
|
304
235
|
2
|
|
305
236
|
);
|
|
@@ -309,7 +240,7 @@ $black-97: hsl($black-hue, $black-saturation, 97%);
|
|
|
309
240
|
"primary",
|
|
310
241
|
$primary-hue,
|
|
311
242
|
$primary-saturation,
|
|
312
|
-
|
|
243
|
+
93,
|
|
313
244
|
97,
|
|
314
245
|
2
|
|
315
246
|
);
|
|
@@ -359,7 +290,7 @@ $black-97: hsl($black-hue, $black-saturation, 97%);
|
|
|
359
290
|
"green",
|
|
360
291
|
$green-hue,
|
|
361
292
|
$green-saturation,
|
|
362
|
-
|
|
293
|
+
93,
|
|
363
294
|
97,
|
|
364
295
|
2
|
|
365
296
|
);
|
|
@@ -369,7 +300,7 @@ $black-97: hsl($black-hue, $black-saturation, 97%);
|
|
|
369
300
|
"green",
|
|
370
301
|
$green-hue,
|
|
371
302
|
$green-saturation,
|
|
372
|
-
|
|
303
|
+
93,
|
|
373
304
|
97,
|
|
374
305
|
2
|
|
375
306
|
);
|
|
@@ -419,7 +350,7 @@ $black-97: hsl($black-hue, $black-saturation, 97%);
|
|
|
419
350
|
"purple",
|
|
420
351
|
$purple-hue,
|
|
421
352
|
$purple-saturation,
|
|
422
|
-
|
|
353
|
+
93,
|
|
423
354
|
97,
|
|
424
355
|
2
|
|
425
356
|
);
|
|
@@ -429,7 +360,7 @@ $black-97: hsl($black-hue, $black-saturation, 97%);
|
|
|
429
360
|
"purple",
|
|
430
361
|
$purple-hue,
|
|
431
362
|
$purple-saturation,
|
|
432
|
-
|
|
363
|
+
93,
|
|
433
364
|
97,
|
|
434
365
|
2
|
|
435
366
|
);
|
|
@@ -6,16 +6,14 @@ $positions: (
|
|
|
6
6
|
"r": "right",
|
|
7
7
|
);
|
|
8
8
|
|
|
9
|
-
@each $key,
|
|
10
|
-
$position in $positions {
|
|
9
|
+
@each $key, $position in $positions {
|
|
11
10
|
.b-#{$key}-n {
|
|
12
11
|
border-#{$position}: none !important;
|
|
13
12
|
}
|
|
14
13
|
}
|
|
15
14
|
|
|
16
15
|
// border position 1px
|
|
17
|
-
@each $key,
|
|
18
|
-
$position in $positions {
|
|
16
|
+
@each $key, $position in $positions {
|
|
19
17
|
.b-#{$key}-1 {
|
|
20
18
|
border-#{$position}: 1px solid $primary-90;
|
|
21
19
|
}
|
|
@@ -26,6 +24,13 @@ $position in $positions {
|
|
|
26
24
|
border: 1px solid $primary-90;
|
|
27
25
|
}
|
|
28
26
|
|
|
27
|
+
.is-fullwidth {
|
|
28
|
+
width: 100%;
|
|
29
|
+
}
|
|
30
|
+
.is-fullheight {
|
|
31
|
+
height: 100%;
|
|
32
|
+
}
|
|
33
|
+
|
|
29
34
|
// for ellipsis
|
|
30
35
|
@for $i from 0 through 10 {
|
|
31
36
|
.is-ellipsis-#{$i} {
|
|
@@ -40,7 +45,7 @@ $position in $positions {
|
|
|
40
45
|
}
|
|
41
46
|
|
|
42
47
|
.form-content {
|
|
43
|
-
width:
|
|
48
|
+
width: 800px;
|
|
44
49
|
}
|
|
45
50
|
|
|
46
51
|
// .dropdown-content {
|
|
@@ -83,7 +88,7 @@ hr {
|
|
|
83
88
|
|
|
84
89
|
// .is-dark-theme {
|
|
85
90
|
// .dropdown-content {
|
|
86
|
-
// background-color: $
|
|
91
|
+
// background-color: $black-80;
|
|
87
92
|
// }
|
|
88
93
|
// }
|
|
89
94
|
|
|
@@ -338,12 +343,12 @@ hr {
|
|
|
338
343
|
background-color: transparent;
|
|
339
344
|
}
|
|
340
345
|
|
|
341
|
-
.is-danger {
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
}
|
|
346
|
+
// .is-danger {
|
|
347
|
+
// font-size: 12px;
|
|
348
|
+
// line-height: 22px;
|
|
349
|
+
// color: $danger;
|
|
350
|
+
// text-align: left;
|
|
351
|
+
// }
|
|
347
352
|
|
|
348
353
|
p.is-danger {
|
|
349
354
|
color: $danger;
|
|
@@ -355,8 +360,8 @@ code {
|
|
|
355
360
|
|
|
356
361
|
.is-dark-theme {
|
|
357
362
|
code {
|
|
358
|
-
background-color: $
|
|
359
|
-
color: $
|
|
363
|
+
background-color: $black-80;
|
|
364
|
+
color: $white-100;
|
|
360
365
|
}
|
|
361
366
|
}
|
|
362
367
|
|
|
@@ -429,7 +434,6 @@ button {
|
|
|
429
434
|
|
|
430
435
|
// Shake animation
|
|
431
436
|
@keyframes shake {
|
|
432
|
-
|
|
433
437
|
10%,
|
|
434
438
|
90% {
|
|
435
439
|
transform: translate3d(-1px, 0, 0);
|
|
@@ -730,7 +734,7 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
730
734
|
}
|
|
731
735
|
|
|
732
736
|
&.is-danger {
|
|
733
|
-
background-color:
|
|
737
|
+
background-color: $danger;
|
|
734
738
|
}
|
|
735
739
|
}
|
|
736
740
|
|
|
@@ -769,7 +773,8 @@ Responsive Classes
|
|
|
769
773
|
}
|
|
770
774
|
|
|
771
775
|
// Small devices (landscape phones, 576px and up)
|
|
772
|
-
@media (min-width: 576px) and (max-width: 767.98px) {
|
|
776
|
+
@media (min-width: 576px) and (max-width: 767.98px) {
|
|
777
|
+
}
|
|
773
778
|
|
|
774
779
|
// Medium devices (tablets, 768px and up)
|
|
775
780
|
@media (min-width: 768px) and (max-width: 991.98px) {
|
|
@@ -788,7 +793,8 @@ Responsive Classes
|
|
|
788
793
|
}
|
|
789
794
|
|
|
790
795
|
// Extra large devices (large desktops, 1200px and up)
|
|
791
|
-
@media (min-width: 1200px) {
|
|
796
|
+
@media (min-width: 1200px) {
|
|
797
|
+
}
|
|
792
798
|
|
|
793
799
|
// FHD devices
|
|
794
800
|
@media (min-width: 1408px) and (max-width: 1600) {
|
|
@@ -796,4 +802,4 @@ Responsive Classes
|
|
|
796
802
|
// grid-gap: 0px;
|
|
797
803
|
// grid-template-columns: 240px calc(100% - 260px);
|
|
798
804
|
// }
|
|
799
|
-
}
|
|
805
|
+
}
|
|
@@ -6,7 +6,7 @@ $font-paragraph: "Roboto", sans-serif;
|
|
|
6
6
|
|
|
7
7
|
html,
|
|
8
8
|
body {
|
|
9
|
-
background-color:
|
|
9
|
+
background-color: transparent;
|
|
10
10
|
font-family: $font-paragraph;
|
|
11
11
|
font-weight: 400;
|
|
12
12
|
font-size: 13px;
|
|
@@ -134,4 +134,4 @@ strong {
|
|
|
134
134
|
|
|
135
135
|
.material-icons {
|
|
136
136
|
font-size: 1em;
|
|
137
|
-
}
|
|
137
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
$dark-bg: var(--dark-bg);
|
|
2
|
-
$
|
|
2
|
+
$black-8: var(--dark-bg-light);
|
|
3
3
|
|
|
4
4
|
.is-dark-theme {
|
|
5
5
|
--ac-bg: var(--dark-bg);
|
|
@@ -17,10 +17,4 @@ $dark-bg-light: var(--dark-bg-light);
|
|
|
17
17
|
--ac-white-lightest: #1f2229;
|
|
18
18
|
--ac-label-text: #8c8c8c;
|
|
19
19
|
--ac-bg-light-gray: #252830;
|
|
20
|
-
|
|
21
|
-
--ac-color-value: hsl(
|
|
22
|
-
var(--font-hsl-hue),
|
|
23
|
-
var(--font-hsl-saturation),
|
|
24
|
-
calc(var(--font-hsl-lightness) + 60%)
|
|
25
|
-
);
|
|
26
|
-
}
|
|
20
|
+
}
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
// padding: 0 15px;
|
|
122
122
|
|
|
123
123
|
// &:hover {
|
|
124
|
-
// color: $
|
|
124
|
+
// color: $primary-90;
|
|
125
125
|
// }
|
|
126
126
|
// }
|
|
127
127
|
|
|
@@ -177,7 +177,7 @@
|
|
|
177
177
|
// // dark theme start
|
|
178
178
|
// .is-dark-theme {
|
|
179
179
|
// .ac-notification.is-danger {
|
|
180
|
-
// background-color: $
|
|
180
|
+
// background-color: $black-80;
|
|
181
181
|
// }
|
|
182
182
|
// }
|
|
183
183
|
// // dark theme end
|
|
@@ -2,8 +2,9 @@
|
|
|
2
2
|
pre {
|
|
3
3
|
font-size: 13px;
|
|
4
4
|
color: $primary-10;
|
|
5
|
-
background-color: $
|
|
5
|
+
background-color: $primary-90;
|
|
6
6
|
}
|
|
7
|
+
|
|
7
8
|
&.is-dark {
|
|
8
9
|
pre {
|
|
9
10
|
background-color: $primary-10;
|
|
@@ -11,6 +12,7 @@
|
|
|
11
12
|
}
|
|
12
13
|
}
|
|
13
14
|
}
|
|
15
|
+
|
|
14
16
|
code[class*="language-"],
|
|
15
17
|
pre[class*="language-"] {
|
|
16
18
|
font-size: 14px !important;
|
|
@@ -19,7 +21,7 @@ pre[class*="language-"] {
|
|
|
19
21
|
.editor-writable {
|
|
20
22
|
width: 100%;
|
|
21
23
|
border-radius: 4px !important;
|
|
22
|
-
border: 1px solid $white-100
|
|
24
|
+
border: 1px solid $white-100 !important;
|
|
23
25
|
}
|
|
24
26
|
|
|
25
27
|
.monaco-editor {
|
|
@@ -32,21 +34,16 @@ pre[class*="language-"] {
|
|
|
32
34
|
Responsive Classes
|
|
33
35
|
*****************************************/
|
|
34
36
|
// Extra small devices (portrait phones, less than 576px)
|
|
35
|
-
@media (max-width: 575.98px) {
|
|
36
|
-
}
|
|
37
|
+
@media (max-width: 575.98px) {}
|
|
37
38
|
|
|
38
39
|
// Small devices (landscape phones, 576px and up)
|
|
39
|
-
@media (min-width: 576px) and (max-width: 767.98px) {
|
|
40
|
-
}
|
|
40
|
+
@media (min-width: 576px) and (max-width: 767.98px) {}
|
|
41
41
|
|
|
42
42
|
// Medium devices (tablets, 768px and up)
|
|
43
|
-
@media (min-width: 768px) and (max-width: 991.98px) {
|
|
44
|
-
}
|
|
43
|
+
@media (min-width: 768px) and (max-width: 991.98px) {}
|
|
45
44
|
|
|
46
45
|
// Large devices (desktops, 992px and up)
|
|
47
|
-
@media (min-width: 992px) and (max-width: 1199.98px) {
|
|
48
|
-
}
|
|
46
|
+
@media (min-width: 992px) and (max-width: 1199.98px) {}
|
|
49
47
|
|
|
50
48
|
// Extra large devices (large desktops, 1200px and up)
|
|
51
|
-
@media (min-width: 1200px) {
|
|
52
|
-
}
|
|
49
|
+
@media (min-width: 1200px) {}
|
package/components/_ac-drag.scss
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
.dragable-list-items {
|
|
22
|
-
background-color: $
|
|
22
|
+
background-color: $primary-90;
|
|
23
23
|
border-radius: 4px;
|
|
24
24
|
max-height: 400px;
|
|
25
25
|
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
padding-bottom: 4px;
|
|
39
39
|
|
|
40
40
|
&.is-not-change {
|
|
41
|
-
background-color: $
|
|
41
|
+
background-color: $primary-90;
|
|
42
42
|
margin-left: -40px !important;
|
|
43
43
|
padding-left: 80px;
|
|
44
44
|
}
|
|
@@ -135,6 +135,7 @@
|
|
|
135
135
|
|
|
136
136
|
ul {
|
|
137
137
|
li {
|
|
138
|
+
|
|
138
139
|
span,
|
|
139
140
|
strong {
|
|
140
141
|
font-weight: 400;
|
|
@@ -243,5 +244,4 @@ Responsive Classes
|
|
|
243
244
|
}
|
|
244
245
|
|
|
245
246
|
// Extra large devices (large desktops, 1200px and up)
|
|
246
|
-
@media (min-width: 1200px) {
|
|
247
|
-
}
|
|
247
|
+
@media (min-width: 1200px) {}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
// top: 0;
|
|
16
16
|
// width: 100%;
|
|
17
17
|
// height: 100%;
|
|
18
|
-
// background-color: $
|
|
18
|
+
// background-color: $black-5;
|
|
19
19
|
// z-index: -1;
|
|
20
20
|
// opacity: 0.5;
|
|
21
21
|
// }
|
|
@@ -209,4 +209,4 @@
|
|
|
209
209
|
|
|
210
210
|
// // Extra large devices (large desktops, 1200px and up)
|
|
211
211
|
// @media (min-width: 1200px) {
|
|
212
|
-
// }
|
|
212
|
+
// }
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
.ac-select-box {
|
|
2
2
|
select {
|
|
3
3
|
background-color: $info-light;
|
|
4
|
-
border: 1px solid $
|
|
4
|
+
border: 1px solid $primary-10;
|
|
5
5
|
font-size: 13px;
|
|
6
6
|
height: 42px;
|
|
7
7
|
padding-left: 20px;
|
|
@@ -34,16 +34,16 @@
|
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
&.select:not(.is-multiple):not(.is-loading)::after {
|
|
37
|
-
border-color: $
|
|
37
|
+
border-color: $primary-10;
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
.is-dark-theme {
|
|
42
42
|
.select {
|
|
43
43
|
select {
|
|
44
|
-
background-color: $
|
|
45
|
-
color: $
|
|
44
|
+
background-color: $black-80;
|
|
45
|
+
color: $white-100;
|
|
46
46
|
border: 1px solid $primary-90;
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
|
-
}
|
|
49
|
+
}
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
// margin-bottom: 0;
|
|
74
74
|
|
|
75
75
|
// thead {
|
|
76
|
-
// background-color: $
|
|
76
|
+
// background-color: $primary-90;
|
|
77
77
|
// font-size: 13px;
|
|
78
78
|
// font-family: $font-heading;
|
|
79
79
|
// line-height: initial;
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
// box-shadow: inset 0 0 0 1px $primary;
|
|
135
135
|
// border-radius: 4px;
|
|
136
136
|
// border-bottom: none;
|
|
137
|
-
// color: $
|
|
137
|
+
// color: $black-5;
|
|
138
138
|
// }
|
|
139
139
|
|
|
140
140
|
// tr {
|
|
@@ -240,7 +240,7 @@
|
|
|
240
240
|
// box-shadow: inset 0 0 0 1px $primary;
|
|
241
241
|
// border-radius: 4px;
|
|
242
242
|
// border-bottom: none;
|
|
243
|
-
// color: $
|
|
243
|
+
// color: $black-5;
|
|
244
244
|
// }
|
|
245
245
|
|
|
246
246
|
// &.is-hoverless {
|
|
@@ -267,7 +267,7 @@
|
|
|
267
267
|
// right: -451px;
|
|
268
268
|
// top: -1px;
|
|
269
269
|
// visibility: visible;
|
|
270
|
-
// background-color: $
|
|
270
|
+
// background-color: $primary-90;
|
|
271
271
|
// }
|
|
272
272
|
// }
|
|
273
273
|
|
|
@@ -323,7 +323,7 @@
|
|
|
323
323
|
// .ac-single-checkbox {
|
|
324
324
|
// .is-checkradio[type="checkbox"] {
|
|
325
325
|
// &.ac-checkbox + label {
|
|
326
|
-
// color: $
|
|
326
|
+
// color: $primary-20;
|
|
327
327
|
|
|
328
328
|
// &::before {
|
|
329
329
|
// height: 16px;
|
|
@@ -346,7 +346,7 @@
|
|
|
346
346
|
// }
|
|
347
347
|
|
|
348
348
|
// &:checked + label::after {
|
|
349
|
-
// border-color: $
|
|
349
|
+
// border-color: $primary-90;
|
|
350
350
|
// }
|
|
351
351
|
// }
|
|
352
352
|
// }
|
|
@@ -439,7 +439,7 @@
|
|
|
439
439
|
// // table inner shadow
|
|
440
440
|
// .table-inner-shadow {
|
|
441
441
|
// border-radius: 0px;
|
|
442
|
-
// background: $
|
|
442
|
+
// background: $primary-90;
|
|
443
443
|
// box-shadow: inset 5px 5px 10px #e3e6e9, inset -5px -5px 10px #ffffff;
|
|
444
444
|
// }
|
|
445
445
|
|