@appscode/design-system 1.0.43-alpha.22 → 1.0.43-alpha.221
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 +7 -0
- package/base/utilities/_customize-bulma.scss +191 -0
- package/base/utilities/_default.scss +286 -126
- package/base/utilities/_derived-variables.scss +6 -1
- package/base/utilities/_grid.scss +29 -0
- package/base/utilities/_initial-variables.scss +27 -17
- package/base/utilities/_mixin.scss +1 -17
- package/base/utilities/_typography.scss +18 -14
- package/base/utilities/dark-theme.scss +9 -145
- package/components/_ac-accordion.scss +14 -5
- package/components/_ac-alert-box.scss +41 -7
- package/components/_ac-card.scss +48 -10
- package/components/_ac-code-highlight.scss +5 -1
- package/components/_ac-content-layout.scss +2 -2
- package/components/_ac-drag.scss +2 -0
- package/components/_ac-input.scss +64 -23
- package/components/_ac-modal.scss +1 -1
- package/components/_ac-multi-select.scss +247 -9
- package/components/_ac-options.scss +24 -9
- package/components/_ac-select-box.scss +13 -3
- package/components/_ac-table.scss +15 -5
- package/components/_ac-tabs.scss +46 -5
- package/components/_ac-tags.scss +85 -0
- package/components/_ac-terminal.scss +270 -0
- package/components/_all.scss +28 -0
- package/components/_app-drawer.scss +2 -2
- package/components/_breadcumb.scss +2 -0
- package/components/_buttons.scss +50 -37
- package/components/_card-body-wrapper.scss +2 -2
- package/components/_dashboard-header.scss +32 -0
- package/components/_direct-deploy.scss +69 -0
- package/components/_go-to-top.scss +1 -1
- package/components/_graph.scss +45 -0
- package/components/_image-upload.scss +5 -3
- package/components/_left-sidebar-menu.scss +121 -69
- package/components/_monaco-editor.scss +1 -1
- package/components/_navbar.scss +170 -10
- package/components/_overview-info.scss +3 -3
- package/components/_pagination.scss +8 -0
- package/components/_payment-card.scss +10 -1
- package/components/_preview-modal.scss +18 -5
- package/components/_pricing-table.scss +1 -1
- package/components/_progress-bar.scss +4 -4
- package/components/_subscription-card.scss +11 -4
- package/components/_table-of-content.scss +1 -1
- package/components/_tfa.scss +69 -0
- package/components/_transitions.scss +261 -0
- package/components/_wizard.scss +16 -3
- package/components/bbum/_all.scss +9 -0
- package/components/bbum/_card-team.scss +1 -1
- package/components/bbum/_information-center.scss +15 -1
- package/components/bbum/_sign-up-notification.scss +1 -1
- package/components/bbum/_single-post-preview.scss +2 -2
- package/components/bbum/_user-profile.scss +2 -3
- package/components/ui-builder/_ui-builder.scss +76 -1
- package/components/ui-builder/_vue-open-api.scss +104 -0
- package/layouts/_all.scss +2 -0
- package/layouts/_code-preview.scss +5 -2
- package/main.scss +6 -54
- package/package.json +4 -7
- package/plugins/caching.ts +243 -0
- package/plugins/theme.js +4 -0
- package/plugins/time-convert.js +49 -0
- package/plugins/vue-toaster.js +3 -0
- package/vue-components/v2/banner/Banner.vue +2 -2
- package/vue-components/v2/breadcrumbs/Breadcrumb.vue +97 -0
- package/vue-components/v2/button/Button.vue +5 -0
- package/vue-components/v2/button/DownloadBtn.vue +45 -0
- package/vue-components/v2/card/Card.vue +1 -0
- package/vue-components/v2/card/PaymentCards.vue +11 -2
- package/vue-components/v2/content/ContentTable.vue +12 -7
- package/vue-components/v2/editor/Editor.vue +43 -24
- package/vue-components/v2/editor/FilteredFileEditor.vue +189 -0
- package/vue-components/v2/editor/MonacoEditor.vue +125 -0
- package/vue-components/v2/editor/ResourceKeyValueEditor.vue +209 -0
- package/vue-components/v2/form-fields/Input.vue +1 -1
- package/vue-components/v2/loaders/ResourceLoader.vue +101 -0
- package/vue-components/v2/loaders/SidebarLoader.vue +43 -0
- package/vue-components/v2/modal/Modal.vue +38 -4
- package/vue-components/v2/modals/DeleteConfirmationModal.vue +79 -0
- package/vue-components/v2/modals/JsonShowModal.vue +12 -2
- package/vue-components/v2/navbar/Appdrawer.vue +10 -9
- package/vue-components/v2/navbar/ThemeMode.vue +50 -44
- package/vue-components/v2/navbar/User.vue +229 -17
- package/vue-components/v2/notification/Notification.vue +101 -0
- package/vue-components/v2/notification/NotificationItem.vue +44 -0
- package/vue-components/v2/pagination/Pagination.vue +16 -3
- package/vue-components/v2/preloader/Preloader.vue +5 -5
- package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
- package/vue-components/v2/sidebar/SidebarItem.vue +23 -1
- package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
- package/vue-components/v2/tab/TabItem.vue +1 -1
- package/vue-components/v2/table/Table.vue +44 -8
- package/vue-components/v2/table/TableRow.vue +12 -2
- package/vue-components/v2/table/table-cell/CellValue.vue +33 -4
- package/vue-components/v2/table/table-cell/GenericCell.vue +56 -0
- package/vue-components/v2/table/table-cell/ObjectCell.vue +4 -1
- package/vue-components/v2/tabs/EditorTabs.vue +1 -1
- package/vue-components/v3/button/Button.vue +6 -1
- package/vue-components/v3/content/ContentHeader.vue +2 -1
- package/vue-components/v3/content/ContentTable.vue +20 -2
- package/vue-components/v3/editor/Editor.vue +42 -33
- package/vue-components/v3/editor/FilteredFileEditor.vue +186 -0
- package/vue-components/v3/editor/MonacoEditor.vue +131 -0
- package/vue-components/v3/editor/ResourceKeyValueEditor.vue +125 -0
- package/vue-components/v3/form/Form.vue +63 -0
- package/vue-components/v3/form-fields/Input.vue +11 -10
- package/vue-components/v3/header/HeaderItem.vue +5 -0
- package/vue-components/v3/header/HeaderItems.vue +5 -0
- package/vue-components/v3/loaders/ResourceLoader.vue +83 -0
- package/vue-components/v3/loaders/SidebarLoader.vue +34 -0
- package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +92 -0
- package/vue-components/v3/modal/Modal.vue +38 -6
- package/vue-components/v3/modals/DeleteConfirmationModal.vue +85 -0
- package/vue-components/v3/modals/JsonShowModal.vue +25 -16
- package/vue-components/v3/modals/LongRunningTasksModal.vue +337 -0
- package/vue-components/v3/navbar/Appdrawer.vue +12 -7
- package/vue-components/v3/navbar/ThemeMode.vue +49 -47
- package/vue-components/v3/navbar/User.vue +242 -18
- package/vue-components/v3/notification/Notification.vue +98 -0
- package/vue-components/v3/notification/NotificationItem.vue +52 -0
- package/vue-components/v3/pagination/Pagination.vue +16 -3
- package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
- package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
- package/vue-components/v3/tab/TabItem.vue +1 -1
- package/vue-components/v3/table/MultiInfoTable.vue +143 -0
- package/vue-components/v3/table/Table.vue +47 -13
- package/vue-components/v3/table/TableContainer.vue +34 -0
- package/vue-components/v3/table/TableRow.vue +64 -3
- package/vue-components/v3/table/table-cell/CellValue.vue +28 -3
- package/vue-components/v3/table/table-cell/GenericCell.vue +75 -0
- package/vue-components/v3/table/table-cell/ObjectCell.vue +7 -2
- package/vue-components/v3/tabs/EditorTabs.vue +1 -1
- package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +148 -0
|
@@ -4,14 +4,6 @@
|
|
|
4
4
|
$ac-family-heading: "Roboto", sans-serif;
|
|
5
5
|
$ac-family-paragraph: "Roboto", sans-serif;
|
|
6
6
|
|
|
7
|
-
$ac-size-1: 48px;
|
|
8
|
-
$ac-size-2: 36px;
|
|
9
|
-
$ac-size-3: 28px;
|
|
10
|
-
$ac-size-4: 22px;
|
|
11
|
-
$ac-size-5: 18px;
|
|
12
|
-
$ac-size-6: 16px;
|
|
13
|
-
$ac-size-7: 14px;
|
|
14
|
-
|
|
15
7
|
// body font size
|
|
16
8
|
$font-size-medium: 16px;
|
|
17
9
|
$font-size-semi-normal: 15px;
|
|
@@ -23,10 +15,10 @@ $font-size-tiny: 11px;
|
|
|
23
15
|
// Base Color
|
|
24
16
|
$ac-orange: #ff8000;
|
|
25
17
|
$ac-yellow: #f7ad2a;
|
|
26
|
-
$ac-green: #
|
|
18
|
+
$ac-green: #158748;
|
|
27
19
|
$ac-blue: #0aafff;
|
|
28
20
|
$ac-purple: #791e94;
|
|
29
|
-
$ac-red: #
|
|
21
|
+
$ac-red: #ff3729;
|
|
30
22
|
|
|
31
23
|
// Products Color
|
|
32
24
|
$voyager-primary: #2d2a78;
|
|
@@ -49,28 +41,32 @@ $swift-primary: #3f51b6;
|
|
|
49
41
|
--hsl-saturation: 77%;
|
|
50
42
|
--hsl-lightness: 42%;
|
|
51
43
|
--contrast-threshold: 60%;
|
|
52
|
-
|
|
53
44
|
--ac-bg: #ffffff;
|
|
54
45
|
--ac-white: #ffffff;
|
|
46
|
+
--ac-full-white: #ffffff;
|
|
55
47
|
--ac-gray-dark: #5f5f5f;
|
|
56
48
|
--ac-gray-light: #8d8d8d;
|
|
57
49
|
--ac-gray-lightest: #d1d1d1;
|
|
58
50
|
--ac-white-light: #e7e7e7;
|
|
59
|
-
--ac-white-lighter: #
|
|
51
|
+
--ac-white-lighter: #f2f5f8;
|
|
52
|
+
--ac-white-lightest: #f8f9fb;
|
|
60
53
|
|
|
61
54
|
--ac-black: #000000;
|
|
62
55
|
--ac-color-text-90: #323232;
|
|
56
|
+
--ac-link-black: #32325d;
|
|
63
57
|
--ac-gray-darker: #494949;
|
|
64
58
|
--ac-gray: #767676;
|
|
65
59
|
--ac-gray-lighter: #a4a4a4;
|
|
60
|
+
--ac-white-text: #b4c0cc;
|
|
61
|
+
|
|
66
62
|
// theme color
|
|
67
63
|
--dark-bg: #21272e;
|
|
68
64
|
--dark-bg-light: #2e323c;
|
|
69
65
|
|
|
70
|
-
--ac-
|
|
66
|
+
--ac-blue-light: #eceff4;
|
|
71
67
|
--ac-bg-light-gray: #f4f6f9;
|
|
72
68
|
--table-header: #e4e8ef;
|
|
73
|
-
--ac-
|
|
69
|
+
--ac-label-text: #a6abbd;
|
|
74
70
|
|
|
75
71
|
--font-hsl-hue: 0;
|
|
76
72
|
--font-hsl-saturation: 0%;
|
|
@@ -82,6 +78,7 @@ $swift-primary: #3f51b6;
|
|
|
82
78
|
var(--hsl-lightness),
|
|
83
79
|
1
|
|
84
80
|
);
|
|
81
|
+
|
|
85
82
|
--ac-text: hsla(
|
|
86
83
|
var(--font-hsl-hue),
|
|
87
84
|
calc(var(--font-hsl-saturation) + 10%),
|
|
@@ -107,7 +104,8 @@ $ac-color-value: var(--ac-color-value);
|
|
|
107
104
|
|
|
108
105
|
// Colors
|
|
109
106
|
$ac-black: var(--ac-black);
|
|
110
|
-
$ac-color-text-90: var(ac-color-text-90);
|
|
107
|
+
$ac-color-text-90: var(--ac-color-text-90);
|
|
108
|
+
$ac-link-black: var(--ac-link-black);
|
|
111
109
|
$ac-gray-darker: var(--ac-gray-darker);
|
|
112
110
|
$ac-gray-dark: var(--ac-gray-dark);
|
|
113
111
|
$ac-gray: var(--ac-gray);
|
|
@@ -116,12 +114,14 @@ $ac-gray-lighter: var(--ac-gray-lighter);
|
|
|
116
114
|
$ac-gray-lightest: var(--ac-gray-lightest);
|
|
117
115
|
$ac-white-light: var(--ac-white-light);
|
|
118
116
|
$ac-white-lighter: var(--ac-white-lighter);
|
|
117
|
+
$ac-white-lightest: var(--ac-white-lightest);
|
|
119
118
|
$ac-white: var(--ac-white);
|
|
119
|
+
$ac-full-white: var(--ac-full-white);
|
|
120
120
|
|
|
121
|
-
$ac-
|
|
121
|
+
$ac-blue-light: var(--ac-blue-light);
|
|
122
122
|
$ac-bg-light-gray: var(--ac-bg-light-gray);
|
|
123
123
|
$table-header: var(--table-header);
|
|
124
|
-
$ac-
|
|
124
|
+
$ac-label-text: var(--ac-label-text);
|
|
125
125
|
|
|
126
126
|
// for dark theme CSS
|
|
127
127
|
$dark-bg: var(--dark-bg);
|
|
@@ -182,6 +182,16 @@ $dark-bg-light: var(--dark-bg-light);
|
|
|
182
182
|
}
|
|
183
183
|
}
|
|
184
184
|
|
|
185
|
+
.mx-auto {
|
|
186
|
+
margin: 0 auto;
|
|
187
|
+
}
|
|
188
|
+
.mr-auto{
|
|
189
|
+
margin-right: auto;
|
|
190
|
+
}
|
|
191
|
+
.ml-auto{
|
|
192
|
+
margin-left: auto;
|
|
193
|
+
}
|
|
194
|
+
|
|
185
195
|
/* Deafult height & widht */
|
|
186
196
|
@for $i from 0 through 300 {
|
|
187
197
|
.height-#{$i} {
|
|
@@ -83,23 +83,7 @@
|
|
|
83
83
|
&:hover {
|
|
84
84
|
background-color: $colorName;
|
|
85
85
|
color: $ac-white;
|
|
86
|
-
|
|
87
|
-
@if (type_of($colorName) == "color") {
|
|
88
|
-
box-shadow: 0px
|
|
89
|
-
6px
|
|
90
|
-
12px
|
|
91
|
-
scale-color($color: $colorName, $lightness: 70%);
|
|
92
|
-
} @else {
|
|
93
|
-
box-shadow: 0px
|
|
94
|
-
6px
|
|
95
|
-
12px
|
|
96
|
-
hsla(
|
|
97
|
-
var(--hsl-hue),
|
|
98
|
-
var(--hsl-saturation),
|
|
99
|
-
var(--hsl-lightness),
|
|
100
|
-
0.3
|
|
101
|
-
);
|
|
102
|
-
}
|
|
86
|
+
box-shadow: none;
|
|
103
87
|
|
|
104
88
|
img {
|
|
105
89
|
filter: brightness(100) !important;
|
|
@@ -3,9 +3,12 @@ body {
|
|
|
3
3
|
background-color: $ac-bg;
|
|
4
4
|
font-family: $ac-family-paragraph;
|
|
5
5
|
font-weight: 400;
|
|
6
|
-
font-size:
|
|
6
|
+
font-size: 13px;
|
|
7
|
+
color: $ac-color-text;
|
|
8
|
+
}
|
|
9
|
+
p {
|
|
10
|
+
font-size: 13px;
|
|
7
11
|
}
|
|
8
|
-
|
|
9
12
|
h1,
|
|
10
13
|
h2,
|
|
11
14
|
h3,
|
|
@@ -18,33 +21,27 @@ h6 {
|
|
|
18
21
|
}
|
|
19
22
|
|
|
20
23
|
h1 {
|
|
21
|
-
font-size: $
|
|
22
|
-
line-height: $ac-size-1 + 10;
|
|
24
|
+
font-size: $size-1;
|
|
23
25
|
}
|
|
24
26
|
|
|
25
27
|
h2 {
|
|
26
|
-
font-size: $
|
|
27
|
-
line-height: $ac-size-2 + 10;
|
|
28
|
+
font-size: $size-2;
|
|
28
29
|
}
|
|
29
30
|
|
|
30
31
|
h3 {
|
|
31
|
-
font-size: $
|
|
32
|
-
line-height: $ac-size-3 + 10;
|
|
32
|
+
font-size: $size-3;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
h4 {
|
|
36
|
-
font-size: $
|
|
37
|
-
line-height: $ac-size-4 + 10;
|
|
36
|
+
font-size: $size-4;
|
|
38
37
|
}
|
|
39
38
|
|
|
40
39
|
h5 {
|
|
41
|
-
font-size: $
|
|
42
|
-
line-height: $ac-size-5 + 10;
|
|
40
|
+
font-size: $size-5;
|
|
43
41
|
}
|
|
44
42
|
|
|
45
43
|
h6 {
|
|
46
|
-
font-size: $
|
|
47
|
-
line-height: $ac-size-6 + 10;
|
|
44
|
+
font-size: $size-6;
|
|
48
45
|
}
|
|
49
46
|
|
|
50
47
|
h6 {
|
|
@@ -92,6 +89,10 @@ hr {
|
|
|
92
89
|
margin: 15px 0;
|
|
93
90
|
}
|
|
94
91
|
|
|
92
|
+
strong {
|
|
93
|
+
color: $ac-color-value;
|
|
94
|
+
}
|
|
95
|
+
|
|
95
96
|
.is-font-medium {
|
|
96
97
|
font-weight: 500;
|
|
97
98
|
}
|
|
@@ -99,3 +100,6 @@ hr {
|
|
|
99
100
|
.is-font-bold {
|
|
100
101
|
font-weight: 700;
|
|
101
102
|
}
|
|
103
|
+
.material-icons{
|
|
104
|
+
font-size: 1em;
|
|
105
|
+
}
|
|
@@ -4,159 +4,23 @@ $dark-bg-light: var(--dark-bg-light);
|
|
|
4
4
|
.is-dark-theme {
|
|
5
5
|
--ac-bg: var(--dark-bg);
|
|
6
6
|
--ac-white: #21272e;
|
|
7
|
-
--ac-black: #
|
|
8
|
-
--ac-
|
|
7
|
+
--ac-link-black: #6969c0;
|
|
8
|
+
--ac-black: var(--ac-white-text);
|
|
9
|
+
--ac-text-heading: var(--ac-white-text);
|
|
9
10
|
--ac-text: #98a6b4;
|
|
11
|
+
--ac-blue-light: #2e323c;
|
|
12
|
+
--ac-gray-darker: #a6a6a6;
|
|
10
13
|
--ac-gray-light: #424242;
|
|
11
14
|
--ac-gray-lightest: #777777;
|
|
12
15
|
--ac-white-light: #3f3f3f;
|
|
13
16
|
--ac-white-lighter: #2e323c;
|
|
14
|
-
--ac-
|
|
15
|
-
--ac-
|
|
17
|
+
--ac-white-lightest: #1f2229;
|
|
18
|
+
--ac-label-text: #8c8c8c;
|
|
19
|
+
--ac-bg-light-gray: #252830;
|
|
20
|
+
|
|
16
21
|
--ac-color-value: hsl(
|
|
17
22
|
var(--font-hsl-hue),
|
|
18
23
|
var(--font-hsl-saturation),
|
|
19
24
|
calc(var(--font-hsl-lightness) + 60%)
|
|
20
25
|
);
|
|
21
|
-
|
|
22
|
-
body {
|
|
23
|
-
.ac-navbar-area {
|
|
24
|
-
background-color: var(--dark-bg-light);
|
|
25
|
-
--ac-white: #ffffff;
|
|
26
|
-
--ac-white-lighter: #f1f1f1;
|
|
27
|
-
|
|
28
|
-
.ac-navbar {
|
|
29
|
-
.search-item {
|
|
30
|
-
background-color: rgba(0, 0, 0, 0.2);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.ac-navbar-menu {
|
|
34
|
-
.ac-menu-item {
|
|
35
|
-
.quick-access {
|
|
36
|
-
--ac-white: var(--dark-bg-light);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.ac-menu-content {
|
|
40
|
-
background-color: var(--dark-bg-light);
|
|
41
|
-
|
|
42
|
-
&::after {
|
|
43
|
-
--ac-white: var(--dark-bg-light);
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.user-profile-wrapper {
|
|
47
|
-
--ac-white: var(--dark-bg-light);
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.ac-options {
|
|
56
|
-
.options-items {
|
|
57
|
-
--ac-white: var(--dark-bg-light);
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
h6.wizard-title.has-line:after {
|
|
62
|
-
--ac-input-bg-color: #555;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.ac-payment-card,
|
|
66
|
-
.ac-single-card,
|
|
67
|
-
.button.ac-button,
|
|
68
|
-
.option-dots {
|
|
69
|
-
--ac-white: #b4c0cc;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.tabs {
|
|
73
|
-
a {
|
|
74
|
-
border-bottom: 1px solid $ac-white-lighter;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.nested-body {
|
|
79
|
-
code {
|
|
80
|
-
background-color: var(--dark-bg-light);
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.ac-single-input {
|
|
85
|
-
input,
|
|
86
|
-
.file-input,
|
|
87
|
-
.ac-dropdown-content {
|
|
88
|
-
background-color: transparent;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
label {
|
|
92
|
-
color: #999999;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
.ac-single-card {
|
|
97
|
-
background-color: var(--dark-bg-light);
|
|
98
|
-
|
|
99
|
-
&.style-three {
|
|
100
|
-
background-color: var(--dark-bg-light);
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
.ac-card-body {
|
|
104
|
-
p {
|
|
105
|
-
color: #999999;
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
.information-center {
|
|
111
|
-
.information-center-inner {
|
|
112
|
-
.info-body {
|
|
113
|
-
.block-list {
|
|
114
|
-
background-color: var(--dark-bg-light);
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.single-subscription-card {
|
|
121
|
-
background-color: var(--dark-bg-light);
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
.pricing-card-wrpper {
|
|
125
|
-
&.offer-card {
|
|
126
|
-
background-color: var(--dark-bg-light);
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
.ac-card {
|
|
130
|
-
background-color: var(--dark-bg-light);
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.ac-certificate-info {
|
|
135
|
-
--ac-bg-light-gray: var(--dark-bg-light);
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
// multiselect
|
|
139
|
-
.multi-select-wrapper {
|
|
140
|
-
// .multiselect .multiselect__tags {
|
|
141
|
-
// --ac-border: #404040;
|
|
142
|
-
// }
|
|
143
|
-
.multiselect__content-wrapper {
|
|
144
|
-
background-color: var(--dark-bg-light);
|
|
145
|
-
|
|
146
|
-
.multiselect__content .multiselect__element .multiselect__option {
|
|
147
|
-
color: #b4c0cc;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
.multiselect__option--group {
|
|
151
|
-
color: #b4c0cc;
|
|
152
|
-
background-color: var(--dark-bg-light);
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
.multiselect__option--selected {
|
|
156
|
-
color: #b4c0cc;
|
|
157
|
-
background-color: var(--dark-bg-light);
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
26
|
}
|
|
@@ -27,6 +27,13 @@
|
|
|
27
27
|
padding: 15px 20px;
|
|
28
28
|
margin-bottom: 15px;
|
|
29
29
|
border-radius: 4px;
|
|
30
|
+
border: 1px solid $ac-white-light;
|
|
31
|
+
|
|
32
|
+
&.open {
|
|
33
|
+
.accordion-heading {
|
|
34
|
+
margin-bottom: 10px;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
30
37
|
|
|
31
38
|
&:last-child {
|
|
32
39
|
margin-bottom: 0;
|
|
@@ -36,7 +43,6 @@
|
|
|
36
43
|
display: flex;
|
|
37
44
|
align-items: center;
|
|
38
45
|
justify-content: space-between;
|
|
39
|
-
margin-bottom: 10px;
|
|
40
46
|
|
|
41
47
|
h3 {
|
|
42
48
|
cursor: pointer;
|
|
@@ -48,10 +54,13 @@
|
|
|
48
54
|
}
|
|
49
55
|
|
|
50
56
|
.icon {
|
|
51
|
-
width:
|
|
52
|
-
height:
|
|
53
|
-
border: 1px solid $ac-
|
|
54
|
-
line-height:
|
|
57
|
+
width: 20px;
|
|
58
|
+
height: 20px;
|
|
59
|
+
border: 1px solid $ac-white-light;
|
|
60
|
+
line-height: 20px;
|
|
61
|
+
display: flex;
|
|
62
|
+
justify-content: center;
|
|
63
|
+
align-items: center;
|
|
55
64
|
font-size: 10px;
|
|
56
65
|
border-radius: 50%;
|
|
57
66
|
cursor: pointer;
|
|
@@ -6,19 +6,21 @@
|
|
|
6
6
|
min-height: 36px;
|
|
7
7
|
display: flex;
|
|
8
8
|
align-items: center;
|
|
9
|
-
padding:
|
|
9
|
+
padding: 8px 16px;
|
|
10
10
|
overflow: hidden;
|
|
11
11
|
border: 1px solid $ac-primary;
|
|
12
12
|
border-radius: 4px;
|
|
13
|
-
justify-content:
|
|
13
|
+
justify-content: flex-start;
|
|
14
14
|
position: relative;
|
|
15
15
|
z-index: 1;
|
|
16
|
+
min-width: 280px;
|
|
16
17
|
|
|
17
18
|
p {
|
|
18
19
|
color: $ac-primary;
|
|
19
20
|
|
|
20
|
-
|
|
21
|
+
.close-icon {
|
|
21
22
|
padding-right: 10px;
|
|
23
|
+
font-size: 15px;
|
|
22
24
|
}
|
|
23
25
|
|
|
24
26
|
a {
|
|
@@ -45,8 +47,33 @@
|
|
|
45
47
|
border: none;
|
|
46
48
|
font-size: 14px;
|
|
47
49
|
color: $ac-danger;
|
|
48
|
-
width:
|
|
50
|
+
width: 40px;
|
|
49
51
|
height: 100%;
|
|
52
|
+
display: flex;
|
|
53
|
+
align-items: center;
|
|
54
|
+
justify-content: center;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
.toast {
|
|
60
|
+
box-shadow: $ac-shadow-sm;
|
|
61
|
+
border: 1px solid $ac-white-light;
|
|
62
|
+
width: 350px;
|
|
63
|
+
|
|
64
|
+
.toast-header {
|
|
65
|
+
padding: 8px 12px;
|
|
66
|
+
border-bottom: 1px solid $ac-white-light;
|
|
67
|
+
|
|
68
|
+
.button {
|
|
69
|
+
&:hover {
|
|
70
|
+
color: #000000;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.toast-body {
|
|
76
|
+
padding: 8px 12px;
|
|
50
77
|
}
|
|
51
78
|
}
|
|
52
79
|
|
|
@@ -138,10 +165,11 @@ AC Toast
|
|
|
138
165
|
}
|
|
139
166
|
|
|
140
167
|
p {
|
|
141
|
-
padding-left:
|
|
168
|
+
padding-left: 16px;
|
|
142
169
|
|
|
143
170
|
i.fa {
|
|
144
171
|
padding-right: 0 !important;
|
|
172
|
+
margin-right: 4px;
|
|
145
173
|
}
|
|
146
174
|
}
|
|
147
175
|
|
|
@@ -157,7 +185,6 @@ AC Toast
|
|
|
157
185
|
|
|
158
186
|
button.close-button {
|
|
159
187
|
border-radius: 0px;
|
|
160
|
-
border-left: 1px solid $ac-white;
|
|
161
188
|
background-color: transparent;
|
|
162
189
|
border: none;
|
|
163
190
|
color: $ac-white;
|
|
@@ -169,7 +196,7 @@ AC Toast
|
|
|
169
196
|
width: 30px;
|
|
170
197
|
z-index: 1;
|
|
171
198
|
cursor: pointer;
|
|
172
|
-
border-left: 1px solid
|
|
199
|
+
border-left: 1px solid #dddddd;
|
|
173
200
|
}
|
|
174
201
|
}
|
|
175
202
|
|
|
@@ -205,6 +232,13 @@ AC Toast
|
|
|
205
232
|
@include acToast($ac-warning);
|
|
206
233
|
}
|
|
207
234
|
|
|
235
|
+
// dark theme start
|
|
236
|
+
.is-dark-theme {
|
|
237
|
+
.ac-notification.is-error {
|
|
238
|
+
background-color: $dark-bg-light;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
// dark theme end
|
|
208
242
|
/****************************************
|
|
209
243
|
Responsive Classes
|
|
210
244
|
*****************************************/
|
package/components/_ac-card.scss
CHANGED
|
@@ -29,8 +29,6 @@
|
|
|
29
29
|
margin-bottom: 13px;
|
|
30
30
|
|
|
31
31
|
.ac-card-logo {
|
|
32
|
-
min-width: 30px;
|
|
33
|
-
max-width: 30px;
|
|
34
32
|
margin-right: 10px;
|
|
35
33
|
position: relative;
|
|
36
34
|
z-index: 1;
|
|
@@ -77,12 +75,13 @@
|
|
|
77
75
|
}
|
|
78
76
|
|
|
79
77
|
&.style-three {
|
|
80
|
-
background-color: $ac-
|
|
78
|
+
background-color: $ac-blue-light;
|
|
81
79
|
width: 190px;
|
|
82
80
|
margin-bottom: 20px;
|
|
83
81
|
margin-right: 20px;
|
|
84
82
|
padding: 30px 20px 20px;
|
|
85
83
|
height: 140px;
|
|
84
|
+
cursor: pointer;
|
|
86
85
|
|
|
87
86
|
.ac-card-logo {
|
|
88
87
|
max-width: 50px;
|
|
@@ -109,7 +108,7 @@
|
|
|
109
108
|
}
|
|
110
109
|
|
|
111
110
|
&:hover {
|
|
112
|
-
background-color: $ac-
|
|
111
|
+
background-color: $ac-bg-light-gray;
|
|
113
112
|
}
|
|
114
113
|
}
|
|
115
114
|
|
|
@@ -136,7 +135,7 @@
|
|
|
136
135
|
font-size: 36px;
|
|
137
136
|
line-height: 1;
|
|
138
137
|
font-weight: 600;
|
|
139
|
-
color:
|
|
138
|
+
color: $ac-color-heading;
|
|
140
139
|
display: inline-block;
|
|
141
140
|
position: relative;
|
|
142
141
|
z-index: 1;
|
|
@@ -144,7 +143,7 @@
|
|
|
144
143
|
&:after {
|
|
145
144
|
position: absolute;
|
|
146
145
|
content: "";
|
|
147
|
-
left:
|
|
146
|
+
left: 0;
|
|
148
147
|
bottom: 0;
|
|
149
148
|
width: 100%;
|
|
150
149
|
height: 5px;
|
|
@@ -172,6 +171,11 @@
|
|
|
172
171
|
}
|
|
173
172
|
}
|
|
174
173
|
|
|
174
|
+
&.is-disabled {
|
|
175
|
+
opacity: 0.5;
|
|
176
|
+
cursor: not-allowed;
|
|
177
|
+
}
|
|
178
|
+
|
|
175
179
|
&:hover {
|
|
176
180
|
border: 1px solid $ac-primary;
|
|
177
181
|
|
|
@@ -187,15 +191,23 @@
|
|
|
187
191
|
.ac-card-header {
|
|
188
192
|
display: flex;
|
|
189
193
|
align-items: center;
|
|
190
|
-
margin-bottom:
|
|
194
|
+
margin-bottom: 16px;
|
|
191
195
|
|
|
192
196
|
.ac-card-logo {
|
|
193
197
|
width: 40px;
|
|
194
198
|
overflow: hidden;
|
|
195
199
|
margin-right: 15px;
|
|
200
|
+
background: $ac-white;
|
|
201
|
+
padding: 8px;
|
|
202
|
+
height: 40px;
|
|
203
|
+
border-radius: 50%;
|
|
204
|
+
display: flex;
|
|
205
|
+
align-items: center;
|
|
206
|
+
border: 1px solid $ac-white-light;
|
|
196
207
|
}
|
|
197
208
|
|
|
198
209
|
.ac-card-title {
|
|
210
|
+
width: calc(100% - 55px);
|
|
199
211
|
h4 {
|
|
200
212
|
a {
|
|
201
213
|
color: $ac-color-heading;
|
|
@@ -208,7 +220,7 @@
|
|
|
208
220
|
|
|
209
221
|
p {
|
|
210
222
|
font-size: $font-size-small;
|
|
211
|
-
color: $ac-gray
|
|
223
|
+
color: $ac-gray;
|
|
212
224
|
}
|
|
213
225
|
}
|
|
214
226
|
}
|
|
@@ -244,7 +256,7 @@
|
|
|
244
256
|
// offer card scss start
|
|
245
257
|
.pricing-card-wrpper {
|
|
246
258
|
&.offer-card {
|
|
247
|
-
background-color:
|
|
259
|
+
background-color: $ac-white-lighter;
|
|
248
260
|
border: 1px solid $ac-white-light;
|
|
249
261
|
border-radius: 4px;
|
|
250
262
|
display: flex;
|
|
@@ -415,7 +427,7 @@
|
|
|
415
427
|
}
|
|
416
428
|
|
|
417
429
|
&.style-three {
|
|
418
|
-
background-color:
|
|
430
|
+
background-color: $ac-white-lighter;
|
|
419
431
|
width: 183px;
|
|
420
432
|
padding: 15px 15px 20px;
|
|
421
433
|
height: 115px;
|
|
@@ -514,7 +526,33 @@
|
|
|
514
526
|
}
|
|
515
527
|
|
|
516
528
|
// features card end
|
|
529
|
+
// dark theme start
|
|
530
|
+
.is-dark-theme {
|
|
531
|
+
.ac-single-card {
|
|
532
|
+
background-color: var(--dark-bg-light);
|
|
533
|
+
|
|
534
|
+
&.style-three {
|
|
535
|
+
background-color: var(--dark-bg-light);
|
|
536
|
+
}
|
|
517
537
|
|
|
538
|
+
.ac-card-body {
|
|
539
|
+
p {
|
|
540
|
+
color: $ac-label-text;
|
|
541
|
+
}
|
|
542
|
+
}
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
.pricing-card-wrpper {
|
|
546
|
+
&.offer-card {
|
|
547
|
+
background-color: var(--dark-bg-light);
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
.ac-card {
|
|
551
|
+
background-color: var(--dark-bg-light);
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
}
|
|
555
|
+
// dark theme end
|
|
518
556
|
/****************************************
|
|
519
557
|
Responsive Classes
|
|
520
558
|
*****************************************/
|
|
@@ -11,11 +11,15 @@
|
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
|
+
code[class*="language-"],
|
|
15
|
+
pre[class*="language-"] {
|
|
16
|
+
font-size: 14px !important;
|
|
17
|
+
}
|
|
14
18
|
|
|
15
19
|
.editor-writable {
|
|
16
20
|
width: 100%;
|
|
17
21
|
border-radius: 4px !important;
|
|
18
|
-
border: 1px solid
|
|
22
|
+
border: 1px solid $ac-white-light !important;
|
|
19
23
|
}
|
|
20
24
|
|
|
21
25
|
.monaco-editor {
|
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
border: none;
|
|
7
7
|
|
|
8
8
|
&.style-2 {
|
|
9
|
-
border: 1px solid $
|
|
9
|
+
border: 1px solid $ac-white-light;
|
|
10
10
|
box-shadow: none;
|
|
11
11
|
padding: 0;
|
|
12
12
|
border-radius: 4px;
|
|
13
13
|
|
|
14
14
|
.ac-content-header {
|
|
15
|
-
background-color: $
|
|
15
|
+
background-color: $ac-white-light;
|
|
16
16
|
|
|
17
17
|
&.is-bg-white {
|
|
18
18
|
.ac-cheader-left {
|