@appscode/design-system 1.1.0-beta.34 → 1.1.0-beta.36
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 +31 -98
- package/base/utilities/_global.scss +9 -9
- 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-multi-select.scss +17 -17
- 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 +6 -5
- package/components/_buttons.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/_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} +15 -46
- 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 +193 -11
- package/components/ui-builder/_vue-open-api.scss +58 -13
- package/layouts/_code-preview.scss +6 -7
- package/package.json +1 -1
- package/vue-components/v3/alert/Alert.vue +1 -1
- package/vue-components/v3/breadcrumbs/Breadcrumb.vue +4 -2
- package/vue-components/v3/button/Button.vue +18 -11
- package/vue-components/v3/cards/Vendor.vue +1 -1
- package/vue-components/v3/editor/FilteredFileEditor.vue +4 -0
- package/vue-components/v3/footer/Status.vue +3 -9
- package/vue-components/v3/form/Form.vue +0 -3
- package/vue-components/v3/header/Header.vue +1 -1
- package/vue-components/v3/modals/LongRunningTasksModal.vue +1 -1
- package/vue-components/v3/navbar/User.vue +4 -4
- package/vue-components/v3/notification/AlertBox.vue +2 -1
- package/vue-components/v3/pagination/Pagination.vue +2 -1
- package/vue-components/v3/sidebar/ClusterSwitcher.vue +20 -17
- package/vue-components/v3/sidebar/Sidebar.vue +1 -29
- package/vue-components/v3/sidebar/SidebarFooter.vue +5 -2
- package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabs.vue +39 -2
- package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabsLayout.vue +12 -3
- package/vue-components/v3/table/Table.vue +8 -8
- package/vue-components/v3/table/TableRow.vue +2 -2
- package/components/_ac-card.scss +0 -0
- /package/components/{_ac-accordion.scss → _accordion.scss} +0 -0
- /package/components/{_ac-report.scss → _report.scss} +0 -0
|
@@ -1,110 +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(var(--hsl-hue),
|
|
63
|
-
var(--hsl-saturation),
|
|
64
|
-
var(--hsl-lightness),
|
|
65
|
-
1);
|
|
66
|
-
|
|
67
|
-
--ac-text: hsla(var(--font-hsl-hue),
|
|
68
|
-
calc(var(--font-hsl-saturation) + 10%),
|
|
69
|
-
calc(var(--font-hsl-lightness) + 10%),
|
|
70
|
-
1);
|
|
71
|
-
--ac-text-heading: hsla(var(--font-hsl-hue),
|
|
72
|
-
var(--font-hsl-saturation),
|
|
73
|
-
var(--font-hsl-lightness),
|
|
74
|
-
1);
|
|
75
|
-
--ac-color-value: hsl(var(--font-hsl-hue),
|
|
76
|
-
var(--font-hsl-saturation),
|
|
77
|
-
calc(var(--font-hsl-lightness) + 25%));
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
$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);
|
|
81
15
|
// $primary: var(--ac-primary);
|
|
82
16
|
// $primary-20: var(--ac-color-value);
|
|
83
17
|
|
|
84
18
|
// Colors
|
|
85
|
-
$ac-black: var(--ac-black);
|
|
86
|
-
$primary-10-90: var(--ac-color-text-90);
|
|
87
|
-
$ac-link-black: var(--ac-link-black);
|
|
88
|
-
$black-40: var(--ac-gray-darker);
|
|
89
|
-
$black-30: var(--ac-gray-dark);
|
|
90
|
-
$ac-gray: var(--ac-gray);
|
|
91
|
-
$ac-gray-light: var(--ac-gray-light);
|
|
92
|
-
$ac-gray-lighter: var(--ac-gray-lighter);
|
|
93
|
-
$ac-gray-lightest: var(--ac-gray-lightest);
|
|
94
|
-
$white-100
|
|
95
|
-
$white-
|
|
96
|
-
$white-
|
|
97
|
-
$white-100: var(--ac-white);
|
|
98
|
-
$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);
|
|
99
33
|
|
|
100
34
|
// $info-light: var(--ac-blue-light);
|
|
101
|
-
|
|
102
|
-
$table-header: var(--table-header);
|
|
103
|
-
$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);
|
|
104
38
|
|
|
105
39
|
// for dark theme CSS
|
|
106
|
-
$dark-bg: var(--dark-bg);
|
|
107
|
-
$
|
|
40
|
+
// $dark-bg: var(--dark-bg);
|
|
41
|
+
// $black-8: var(--dark-bg-light);
|
|
108
42
|
// ===================================PREVIOUS STYLE========================================
|
|
109
43
|
|
|
110
44
|
// white and black
|
|
@@ -120,7 +54,6 @@ $primary-20: hsl($primary-hue, $primary-saturation, 20%);
|
|
|
120
54
|
$primary-30: hsl($primary-hue, $primary-saturation, 30%);
|
|
121
55
|
$primary-40: hsl($primary-hue, $primary-saturation, 40%);
|
|
122
56
|
$primary: hsl($primary-hue, $primary-saturation, 40%);
|
|
123
|
-
$ac-primary: hsl(var(--hsl-hue), var(--hsl-saturation), 40%);
|
|
124
57
|
$primary-50: hsl($primary-hue, $primary-saturation, 50%);
|
|
125
58
|
$primary-60: hsl($primary-hue, $primary-saturation, 60%);
|
|
126
59
|
$primary-70: hsl($primary-hue, $primary-saturation, 70%);
|
|
@@ -83,7 +83,7 @@ hr {
|
|
|
83
83
|
|
|
84
84
|
// .is-dark-theme {
|
|
85
85
|
// .dropdown-content {
|
|
86
|
-
// background-color: $
|
|
86
|
+
// background-color: $black-80;
|
|
87
87
|
// }
|
|
88
88
|
// }
|
|
89
89
|
|
|
@@ -339,12 +339,12 @@ hr {
|
|
|
339
339
|
background-color: transparent;
|
|
340
340
|
}
|
|
341
341
|
|
|
342
|
-
.is-danger {
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
}
|
|
342
|
+
// .is-danger {
|
|
343
|
+
// font-size: 12px;
|
|
344
|
+
// line-height: 22px;
|
|
345
|
+
// color: $danger;
|
|
346
|
+
// text-align: left;
|
|
347
|
+
// }
|
|
348
348
|
|
|
349
349
|
p.is-danger {
|
|
350
350
|
color: $danger;
|
|
@@ -356,8 +356,8 @@ code {
|
|
|
356
356
|
|
|
357
357
|
.is-dark-theme {
|
|
358
358
|
code {
|
|
359
|
-
background-color: $
|
|
360
|
-
color: $
|
|
359
|
+
background-color: $black-80;
|
|
360
|
+
color: $white-100;
|
|
361
361
|
}
|
|
362
362
|
}
|
|
363
363
|
|
|
@@ -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
|
+
// }
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
// }
|
|
41
41
|
|
|
42
42
|
// .multiselect__tag {
|
|
43
|
-
// background-color: $
|
|
43
|
+
// background-color: $black-80;
|
|
44
44
|
// margin-top: 4px;
|
|
45
45
|
// margin-bottom: 0;
|
|
46
46
|
|
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
// &.has-bg-color {
|
|
215
215
|
// label.show-label {
|
|
216
216
|
// &:after {
|
|
217
|
-
// background-color:
|
|
217
|
+
// background-color: transparent;
|
|
218
218
|
// }
|
|
219
219
|
// }
|
|
220
220
|
// }
|
|
@@ -228,7 +228,7 @@
|
|
|
228
228
|
// font-size: 12px;
|
|
229
229
|
// top: -9px;
|
|
230
230
|
// font-weight: 500;
|
|
231
|
-
// color: $
|
|
231
|
+
// color: $black-5;
|
|
232
232
|
// }
|
|
233
233
|
// }
|
|
234
234
|
|
|
@@ -407,7 +407,7 @@
|
|
|
407
407
|
// left: 20px;
|
|
408
408
|
// top: 11px;
|
|
409
409
|
// cursor: text;
|
|
410
|
-
// color: $
|
|
410
|
+
// color: $primary-10;
|
|
411
411
|
// position: absolute;
|
|
412
412
|
// z-index: 99;
|
|
413
413
|
// transition: 0.3s ease-in-out;
|
|
@@ -425,7 +425,7 @@
|
|
|
425
425
|
// left: 15px;
|
|
426
426
|
// padding: 0 5px;
|
|
427
427
|
// font-size: 13px;
|
|
428
|
-
// color: $
|
|
428
|
+
// color: $black-5;
|
|
429
429
|
|
|
430
430
|
// &::after {
|
|
431
431
|
// background-color: $white-100;
|
|
@@ -615,33 +615,33 @@
|
|
|
615
615
|
// }
|
|
616
616
|
|
|
617
617
|
// &::-webkit-scrollbar-thumb {
|
|
618
|
-
// background-color: $
|
|
618
|
+
// background-color: $black-80;
|
|
619
619
|
// border-radius: 50px;
|
|
620
620
|
// height: 2px !important;
|
|
621
621
|
// }
|
|
622
622
|
|
|
623
623
|
// &::-moz-scrollbar-thumb {
|
|
624
|
-
// background-color: $
|
|
624
|
+
// background-color: $black-80;
|
|
625
625
|
// border-radius: 50px;
|
|
626
626
|
// height: 2px !important;
|
|
627
627
|
// }
|
|
628
628
|
|
|
629
629
|
// &::-ms-scrollbar-thumb {
|
|
630
|
-
// background-color: $
|
|
630
|
+
// background-color: $black-80;
|
|
631
631
|
// border-radius: 50px;
|
|
632
632
|
// height: 2px !important;
|
|
633
633
|
// }
|
|
634
634
|
|
|
635
635
|
// &::-webkit-scrollbar-thumb:hover {
|
|
636
|
-
// background-color: $
|
|
636
|
+
// background-color: $black-80;
|
|
637
637
|
// }
|
|
638
638
|
|
|
639
639
|
// &::-moz-scrollbar-thumb:hover {
|
|
640
|
-
// background-color: $
|
|
640
|
+
// background-color: $black-80;
|
|
641
641
|
// }
|
|
642
642
|
|
|
643
643
|
// &::-ms-scrollbar-thumb:hover {
|
|
644
|
-
// background-color: $
|
|
644
|
+
// background-color: $black-80;
|
|
645
645
|
// }
|
|
646
646
|
|
|
647
647
|
// &:hover::-webkit-scrollbar-corner {
|
|
@@ -700,33 +700,33 @@
|
|
|
700
700
|
// }
|
|
701
701
|
|
|
702
702
|
// &::-webkit-scrollbar-thumb {
|
|
703
|
-
// background-color: $
|
|
703
|
+
// background-color: $black-80;
|
|
704
704
|
// border-radius: 50px;
|
|
705
705
|
// height: 2px !important;
|
|
706
706
|
// }
|
|
707
707
|
|
|
708
708
|
// &::-moz-scrollbar-thumb {
|
|
709
|
-
// background-color: $
|
|
709
|
+
// background-color: $black-80;
|
|
710
710
|
// border-radius: 50px;
|
|
711
711
|
// height: 2px !important;
|
|
712
712
|
// }
|
|
713
713
|
|
|
714
714
|
// &::-ms-scrollbar-thumb {
|
|
715
|
-
// background-color: $
|
|
715
|
+
// background-color: $black-80;
|
|
716
716
|
// border-radius: 50px;
|
|
717
717
|
// height: 2px !important;
|
|
718
718
|
// }
|
|
719
719
|
|
|
720
720
|
// &::-webkit-scrollbar-thumb:hover {
|
|
721
|
-
// background-color: $
|
|
721
|
+
// background-color: $black-80;
|
|
722
722
|
// }
|
|
723
723
|
|
|
724
724
|
// &::-moz-scrollbar-thumb:hover {
|
|
725
|
-
// background-color: $
|
|
725
|
+
// background-color: $black-80;
|
|
726
726
|
// }
|
|
727
727
|
|
|
728
728
|
// &::-ms-scrollbar-thumb:hover {
|
|
729
|
-
// background-color: $
|
|
729
|
+
// background-color: $black-80;
|
|
730
730
|
// }
|
|
731
731
|
|
|
732
732
|
// &:hover::-webkit-scrollbar-corner {
|
|
@@ -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
|
|
package/components/_ac-tabs.scss
CHANGED
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
|
|
123
123
|
&.is-toggle {
|
|
124
124
|
ul {
|
|
125
|
-
border: 1px solid $
|
|
125
|
+
border: 1px solid $primary-10;
|
|
126
126
|
border-radius: 4px;
|
|
127
127
|
padding: 4px;
|
|
128
128
|
flex-grow: inherit;
|
|
@@ -158,6 +158,7 @@
|
|
|
158
158
|
&.kubedb-ui-tabs {
|
|
159
159
|
ul {
|
|
160
160
|
border-bottom: none;
|
|
161
|
+
|
|
161
162
|
li {
|
|
162
163
|
&.is-active {
|
|
163
164
|
a {
|
|
@@ -213,7 +214,7 @@
|
|
|
213
214
|
li {
|
|
214
215
|
&.is-active {
|
|
215
216
|
a {
|
|
216
|
-
background-color: $
|
|
217
|
+
background-color: $primary-90;
|
|
217
218
|
color: $primary;
|
|
218
219
|
}
|
|
219
220
|
}
|
|
@@ -245,30 +246,32 @@
|
|
|
245
246
|
}
|
|
246
247
|
|
|
247
248
|
// dark theme
|
|
248
|
-
.is-dark-theme {
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
}
|
|
249
|
+
// .is-dark-theme {
|
|
250
|
+
// .tabs {
|
|
251
|
+
// &.is-toggle {
|
|
252
|
+
// a {
|
|
253
|
+
// &:hover {
|
|
254
|
+
// background-color: $dark-bg;
|
|
255
|
+
// }
|
|
256
|
+
// }
|
|
257
|
+
// }
|
|
258
|
+
|
|
259
|
+
// a {
|
|
260
|
+
// border-bottom: 1px solid $primary-90;
|
|
261
|
+
// color: $white-100;
|
|
262
|
+
// }
|
|
263
|
+
|
|
264
|
+
// &.ac-tabs.is-line {
|
|
265
|
+
// ul {
|
|
266
|
+
// li.is-active {
|
|
267
|
+
// a {
|
|
268
|
+
// color: $primary-10;
|
|
269
|
+
// }
|
|
270
|
+
// }
|
|
271
|
+
// }
|
|
272
|
+
// }
|
|
273
|
+
// }
|
|
274
|
+
// }
|
|
272
275
|
|
|
273
276
|
/****************************************
|
|
274
277
|
Responsive Classes
|
package/components/_all.scss
CHANGED
|
@@ -1,17 +1,13 @@
|
|
|
1
|
-
@import "ac-terminal";
|
|
2
1
|
// @import "ac-alert-box";
|
|
3
2
|
// @import "ac-accordion";
|
|
4
3
|
// @import "buttons";
|
|
5
4
|
// @import "breadcumb";
|
|
6
|
-
@import "ac-card";
|
|
7
5
|
// @import "ac-multi-select";
|
|
8
6
|
// @import "ac-code-highlight";
|
|
9
7
|
// @import "navbar";
|
|
10
8
|
// @import "app-drawer";
|
|
11
9
|
// @import "ac-drag";
|
|
12
10
|
// @import "left-sidebar-menu";
|
|
13
|
-
@import "ac-input";
|
|
14
|
-
@import "ac-report";
|
|
15
11
|
// @import "ac-content-layout";
|
|
16
12
|
// @import "ac-table";
|
|
17
13
|
// @import "ac-tabs";
|
|
@@ -27,7 +23,12 @@
|
|
|
27
23
|
// @import "go-to-top";
|
|
28
24
|
// @import "ac-toaster/ac-toasted";
|
|
29
25
|
// @import "preview-modal";
|
|
30
|
-
@import "wizard";
|
|
31
26
|
// @import "bbum/all";
|
|
27
|
+
// @import "wizard";
|
|
28
|
+
|
|
29
|
+
@import "terminal";
|
|
30
|
+
@import "input-card";
|
|
31
|
+
@import "input";
|
|
32
|
+
@import "report";
|
|
32
33
|
@import "ui-builder/ui-builder";
|
|
33
34
|
@import "ui-builder/vue-open-api";
|