@appscode/design-system 1.1.0-alpha.9 → 1.1.0-beta.3
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/_video-player.scss +65 -0
- package/base/utilities/_all.scss +6 -5
- package/base/utilities/_colors.scss +446 -0
- package/base/utilities/_customize-bulma.scss +23 -27
- package/base/utilities/_extended.scss +3 -2
- package/base/utilities/{_default.scss → _global.scss} +171 -323
- package/base/utilities/_layouts.scss +157 -0
- package/base/utilities/_mixin.scss +11 -11
- package/base/utilities/_spacing.scss +96 -0
- package/base/utilities/_typography.scss +56 -24
- package/base/utilities/dark-theme.scss +1 -1
- package/components/_ac-accordion.scss +117 -117
- package/components/_ac-alert-box.scss +205 -263
- package/components/_ac-calendar.scss +4 -4
- package/components/_ac-card.scss +122 -130
- 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 +38 -520
- package/components/_ac-modal.scss +212 -212
- package/components/_ac-multi-select.scss +780 -751
- package/components/_ac-options.scss +122 -123
- package/components/_ac-select-box.scss +5 -5
- package/components/_ac-table.scss +503 -502
- package/components/_ac-tabs.scss +39 -38
- package/components/_ac-tags.scss +116 -116
- package/components/_ac-terminal.scss +95 -51
- package/components/_add-card.scss +3 -3
- package/components/_all.scss +31 -28
- package/components/_app-drawer.scss +0 -134
- package/components/_breadcumb.scss +0 -71
- package/components/_buttons.scss +779 -779
- package/components/_card-body-wrapper.scss +5 -5
- package/components/_dashboard-header.scss +0 -115
- 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 +448 -579
- package/components/_monaco-editor.scss +1 -1
- package/components/_navbar.scss +786 -752
- 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 +106 -124
- package/components/_payment-card.scss +21 -21
- 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 +247 -247
- 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 +514 -2
- package/layouts/_code-preview.scss +11 -11
- package/main.scss +26 -10
- 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/Card.vue +1 -1
- 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 +32 -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/base/utilities/_derived-variables.scss +0 -25
- package/base/utilities/_initial-variables.scss +0 -215
- package/components/_basic-card.scss +0 -128
- package/mixins/stickyContent.js +0 -141
- package/plugins/caching.ts +0 -243
package/components/_ac-card.scss
CHANGED
|
@@ -5,77 +5,67 @@
|
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
.ac-single-card {
|
|
8
|
-
|
|
9
|
-
padding: 20px;
|
|
10
|
-
border-radius: 4px;
|
|
11
|
-
border: 1px solid $ac-white-light;
|
|
12
|
-
overflow: hidden;
|
|
13
|
-
background-color: hsla(
|
|
14
|
-
var(--hsl-hue),
|
|
15
|
-
var(--hsl-saturation),
|
|
16
|
-
var(--hsl-lightness),
|
|
17
|
-
0.03
|
|
18
|
-
);
|
|
8
|
+
border: 1px solid $primary-90;
|
|
19
9
|
transition: 0.3s ease-in-out;
|
|
20
10
|
|
|
21
11
|
&.is-selected {
|
|
22
|
-
border: 1px solid $
|
|
12
|
+
border: 1px solid $primary !important;
|
|
23
13
|
}
|
|
24
14
|
|
|
25
|
-
&.style-two {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
&.
|
|
78
|
-
background-color: $
|
|
15
|
+
// &.style-two {
|
|
16
|
+
// padding: 10px;
|
|
17
|
+
|
|
18
|
+
// .ac-card-header {
|
|
19
|
+
// margin-bottom: 13px;
|
|
20
|
+
|
|
21
|
+
// .ac-card-logo {
|
|
22
|
+
// margin-right: 10px;
|
|
23
|
+
// position: relative;
|
|
24
|
+
// z-index: 1;
|
|
25
|
+
|
|
26
|
+
// img {
|
|
27
|
+
// width: 100%;
|
|
28
|
+
// }
|
|
29
|
+
|
|
30
|
+
// .card-status {
|
|
31
|
+
// position: absolute;
|
|
32
|
+
// content: "";
|
|
33
|
+
// background-color: #27ae60;
|
|
34
|
+
// border: 2px solid $white-100;
|
|
35
|
+
// box-sizing: border-box;
|
|
36
|
+
// box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
|
|
37
|
+
// width: 10px;
|
|
38
|
+
// height: 10px;
|
|
39
|
+
// border-radius: 50%;
|
|
40
|
+
// right: 0;
|
|
41
|
+
// top: 5px;
|
|
42
|
+
// }
|
|
43
|
+
// }
|
|
44
|
+
|
|
45
|
+
// .ac-card-title {
|
|
46
|
+
// h4 {
|
|
47
|
+
// font-size: 12px;
|
|
48
|
+
// font-family: $font-paragraph;
|
|
49
|
+
// line-height: 140%;
|
|
50
|
+
// }
|
|
51
|
+
// }
|
|
52
|
+
// }
|
|
53
|
+
|
|
54
|
+
// .ac-card-body {
|
|
55
|
+
// p {
|
|
56
|
+
// font-size: 12px;
|
|
57
|
+
// color: $primary-10;
|
|
58
|
+
// font-weight: 400;
|
|
59
|
+
|
|
60
|
+
// &:not(:last-child) {
|
|
61
|
+
// margin-bottom: 8px;
|
|
62
|
+
// }
|
|
63
|
+
// }
|
|
64
|
+
// }
|
|
65
|
+
// }
|
|
66
|
+
|
|
67
|
+
&.vendor-card {
|
|
68
|
+
background-color: $primary-97;
|
|
79
69
|
width: 190px;
|
|
80
70
|
margin-bottom: 20px;
|
|
81
71
|
margin-right: 20px;
|
|
@@ -85,8 +75,9 @@
|
|
|
85
75
|
|
|
86
76
|
.ac-card-logo {
|
|
87
77
|
max-width: 50px;
|
|
88
|
-
|
|
89
|
-
margin:
|
|
78
|
+
// margin: 0 auto 20px;
|
|
79
|
+
margin-inline: auto;
|
|
80
|
+
margin-bottom: 10px;
|
|
90
81
|
display: flex;
|
|
91
82
|
align-items: center;
|
|
92
83
|
|
|
@@ -97,22 +88,25 @@
|
|
|
97
88
|
|
|
98
89
|
.ac-card-name {
|
|
99
90
|
p {
|
|
100
|
-
font-size:
|
|
101
|
-
color: $
|
|
91
|
+
font-size: 13px;
|
|
92
|
+
color: $primary-10;
|
|
102
93
|
line-height: 1;
|
|
103
94
|
|
|
104
95
|
&.free {
|
|
105
|
-
color: $
|
|
96
|
+
color: $primary;
|
|
106
97
|
}
|
|
107
98
|
}
|
|
108
99
|
}
|
|
109
100
|
|
|
110
|
-
&:hover {
|
|
111
|
-
|
|
112
|
-
}
|
|
101
|
+
// &:hover {
|
|
102
|
+
// background-color: $black-60;
|
|
103
|
+
// }
|
|
113
104
|
}
|
|
114
105
|
|
|
115
106
|
&.card-counter {
|
|
107
|
+
|
|
108
|
+
padding: 16px;
|
|
109
|
+
|
|
116
110
|
.card-header {
|
|
117
111
|
display: flex;
|
|
118
112
|
justify-content: space-between;
|
|
@@ -124,7 +118,7 @@
|
|
|
124
118
|
h3 {
|
|
125
119
|
font-size: 16px;
|
|
126
120
|
line-height: 1;
|
|
127
|
-
font-family: $
|
|
121
|
+
font-family: $font-paragraph;
|
|
128
122
|
}
|
|
129
123
|
}
|
|
130
124
|
|
|
@@ -135,7 +129,7 @@
|
|
|
135
129
|
font-size: 36px;
|
|
136
130
|
line-height: 1;
|
|
137
131
|
font-weight: 600;
|
|
138
|
-
color: $
|
|
132
|
+
color: $primary-5;
|
|
139
133
|
display: inline-block;
|
|
140
134
|
position: relative;
|
|
141
135
|
z-index: 1;
|
|
@@ -177,12 +171,12 @@
|
|
|
177
171
|
}
|
|
178
172
|
|
|
179
173
|
&:hover {
|
|
180
|
-
border: 1px solid $
|
|
174
|
+
border: 1px solid $primary;
|
|
181
175
|
|
|
182
176
|
.ac-card-title {
|
|
183
177
|
h4 {
|
|
184
178
|
a {
|
|
185
|
-
color: $
|
|
179
|
+
color: $primary;
|
|
186
180
|
}
|
|
187
181
|
}
|
|
188
182
|
}
|
|
@@ -197,20 +191,21 @@
|
|
|
197
191
|
width: 40px;
|
|
198
192
|
overflow: hidden;
|
|
199
193
|
margin-right: 15px;
|
|
200
|
-
background: $
|
|
194
|
+
background: $white-100;
|
|
201
195
|
padding: 8px;
|
|
202
196
|
height: 40px;
|
|
203
197
|
border-radius: 50%;
|
|
204
198
|
display: flex;
|
|
205
199
|
align-items: center;
|
|
206
|
-
border: 1px solid $
|
|
200
|
+
border: 1px solid $primary-90;
|
|
207
201
|
}
|
|
208
202
|
|
|
209
203
|
.ac-card-title {
|
|
210
204
|
width: calc(100% - 55px);
|
|
205
|
+
|
|
211
206
|
h4 {
|
|
212
207
|
a {
|
|
213
|
-
color: $
|
|
208
|
+
color: $primary-5;
|
|
214
209
|
}
|
|
215
210
|
|
|
216
211
|
font-size: 16px;
|
|
@@ -219,7 +214,7 @@
|
|
|
219
214
|
}
|
|
220
215
|
|
|
221
216
|
p {
|
|
222
|
-
font-size:
|
|
217
|
+
font-size: 13px;
|
|
223
218
|
color: $ac-gray;
|
|
224
219
|
}
|
|
225
220
|
}
|
|
@@ -227,8 +222,8 @@
|
|
|
227
222
|
|
|
228
223
|
.ac-card-body {
|
|
229
224
|
p {
|
|
230
|
-
color: $
|
|
231
|
-
font-size:
|
|
225
|
+
color: $black-30;
|
|
226
|
+
font-size: 13px;
|
|
232
227
|
line-height: 140%;
|
|
233
228
|
}
|
|
234
229
|
}
|
|
@@ -242,7 +237,7 @@
|
|
|
242
237
|
position: absolute;
|
|
243
238
|
content: "";
|
|
244
239
|
background-color: #27ae60;
|
|
245
|
-
border: 2px solid $
|
|
240
|
+
border: 2px solid $white-100;
|
|
246
241
|
box-sizing: border-box;
|
|
247
242
|
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
|
|
248
243
|
width: 10px;
|
|
@@ -256,15 +251,15 @@
|
|
|
256
251
|
// offer card scss start
|
|
257
252
|
.pricing-card-wrpper {
|
|
258
253
|
&.offer-card {
|
|
259
|
-
background-color: $
|
|
260
|
-
border: 1px solid $
|
|
254
|
+
background-color: $white-100-lighter;
|
|
255
|
+
border: 1px solid $primary-90;
|
|
261
256
|
border-radius: 4px;
|
|
262
257
|
display: flex;
|
|
263
258
|
position: relative;
|
|
264
259
|
z-index: 1;
|
|
265
260
|
|
|
266
261
|
&:after {
|
|
267
|
-
@include absulate-shape($
|
|
262
|
+
@include absulate-shape($primary, 100%, 4px);
|
|
268
263
|
background: linear-gradient(90deg, #f99a00 0%, #3f19ad 98.84%);
|
|
269
264
|
}
|
|
270
265
|
|
|
@@ -296,7 +291,7 @@
|
|
|
296
291
|
|
|
297
292
|
&.is-primary {
|
|
298
293
|
&:after {
|
|
299
|
-
@include absulate-shape($
|
|
294
|
+
@include absulate-shape($primary, 100%, 4px);
|
|
300
295
|
border-radius: 4px 4px 0 0;
|
|
301
296
|
}
|
|
302
297
|
}
|
|
@@ -304,12 +299,12 @@
|
|
|
304
299
|
&.is-warning {
|
|
305
300
|
&.is-selected {
|
|
306
301
|
&.pricing {
|
|
307
|
-
border: 1px solid $
|
|
302
|
+
border: 1px solid $warning;
|
|
308
303
|
}
|
|
309
304
|
}
|
|
310
305
|
|
|
311
306
|
&:after {
|
|
312
|
-
@include absulate-shape($
|
|
307
|
+
@include absulate-shape($warning, 100%, 4px);
|
|
313
308
|
border-radius: 4px 4px 0 0;
|
|
314
309
|
}
|
|
315
310
|
}
|
|
@@ -317,12 +312,12 @@
|
|
|
317
312
|
&.is-green {
|
|
318
313
|
&.is-selected {
|
|
319
314
|
&.pricing {
|
|
320
|
-
border: 1px solid $
|
|
315
|
+
border: 1px solid $success;
|
|
321
316
|
}
|
|
322
317
|
}
|
|
323
318
|
|
|
324
319
|
&:after {
|
|
325
|
-
@include absulate-shape($
|
|
320
|
+
@include absulate-shape($success, 100%, 4px);
|
|
326
321
|
border-radius: 4px 4px 0 0;
|
|
327
322
|
}
|
|
328
323
|
}
|
|
@@ -330,22 +325,22 @@
|
|
|
330
325
|
&.is-danger {
|
|
331
326
|
&.is-selected {
|
|
332
327
|
&.pricing {
|
|
333
|
-
border: 1px solid $
|
|
328
|
+
border: 1px solid $danger;
|
|
334
329
|
}
|
|
335
330
|
}
|
|
336
331
|
|
|
337
332
|
&:after {
|
|
338
|
-
@include absulate-shape($
|
|
333
|
+
@include absulate-shape($danger, 100%, 4px);
|
|
339
334
|
border-radius: 4px 4px 0 0;
|
|
340
335
|
}
|
|
341
336
|
}
|
|
342
337
|
|
|
343
338
|
&.pricing {
|
|
344
|
-
border: 1px solid $
|
|
339
|
+
border: 1px solid $primary-90;
|
|
345
340
|
border-radius: 4px;
|
|
346
341
|
|
|
347
342
|
&.is-selected {
|
|
348
|
-
border: 1px solid $
|
|
343
|
+
border: 1px solid $primary;
|
|
349
344
|
}
|
|
350
345
|
}
|
|
351
346
|
|
|
@@ -354,28 +349,28 @@
|
|
|
354
349
|
display: flex;
|
|
355
350
|
justify-content: space-between;
|
|
356
351
|
padding: 10px;
|
|
357
|
-
border-bottom: 1px solid $
|
|
352
|
+
border-bottom: 1px solid $primary-90;
|
|
358
353
|
|
|
359
354
|
&:last-child {
|
|
360
|
-
border-bottom: 1px dashed $
|
|
355
|
+
border-bottom: 1px dashed $primary-90;
|
|
361
356
|
}
|
|
362
357
|
|
|
363
358
|
a.inline-button {
|
|
364
359
|
font-size: 12px;
|
|
365
|
-
color: $
|
|
360
|
+
color: $primary-10;
|
|
366
361
|
text-decoration: underline;
|
|
367
362
|
}
|
|
368
363
|
|
|
369
364
|
span {
|
|
370
|
-
color: $
|
|
365
|
+
color: $primary-10;
|
|
371
366
|
font-size: 12px;
|
|
372
367
|
font-weight: 600;
|
|
373
368
|
}
|
|
374
369
|
|
|
375
370
|
p {
|
|
376
371
|
font-weight: 500;
|
|
377
|
-
font-size:
|
|
378
|
-
color: $
|
|
372
|
+
font-size: 13px;
|
|
373
|
+
color: $primary-10;
|
|
379
374
|
|
|
380
375
|
span {
|
|
381
376
|
font-size: 12px;
|
|
@@ -390,7 +385,7 @@
|
|
|
390
385
|
.button.ac-button {
|
|
391
386
|
&.grediant-1 {
|
|
392
387
|
border-radius: 4px;
|
|
393
|
-
color: $
|
|
388
|
+
color: $white-100;
|
|
394
389
|
letter-spacing: 0;
|
|
395
390
|
font-size: 12px;
|
|
396
391
|
border: none;
|
|
@@ -420,14 +415,14 @@
|
|
|
420
415
|
flex-wrap: wrap;
|
|
421
416
|
|
|
422
417
|
.ac-single-card {
|
|
423
|
-
border: 1px solid $
|
|
418
|
+
border: 1px solid $primary-90;
|
|
424
419
|
|
|
425
420
|
&:hover {
|
|
426
421
|
border: 1px solid transparent;
|
|
427
422
|
}
|
|
428
423
|
|
|
429
|
-
&.
|
|
430
|
-
background-color: $
|
|
424
|
+
&.vendor-card {
|
|
425
|
+
background-color: $white-100-lighter;
|
|
431
426
|
width: 183px;
|
|
432
427
|
padding: 15px 15px 20px;
|
|
433
428
|
height: 115px;
|
|
@@ -451,7 +446,7 @@
|
|
|
451
446
|
font-size: 12px;
|
|
452
447
|
line-height: 14px;
|
|
453
448
|
text-align: center;
|
|
454
|
-
color: $
|
|
449
|
+
color: $primary-10;
|
|
455
450
|
}
|
|
456
451
|
}
|
|
457
452
|
}
|
|
@@ -462,24 +457,24 @@
|
|
|
462
457
|
|
|
463
458
|
// features card start
|
|
464
459
|
.features-card-wrapper {
|
|
465
|
-
background-color: $
|
|
460
|
+
background-color: $white-100;
|
|
466
461
|
padding: 10px;
|
|
467
462
|
border-radius: 4px;
|
|
468
|
-
border: 1px solid $
|
|
463
|
+
border: 1px solid $primary-90;
|
|
469
464
|
|
|
470
465
|
.f-header {
|
|
471
466
|
display: grid;
|
|
472
467
|
grid-template-columns: 40px auto 20px;
|
|
473
468
|
grid-gap: 15px;
|
|
474
|
-
border-bottom: 1px solid $
|
|
469
|
+
border-bottom: 1px solid $primary-90;
|
|
475
470
|
padding-bottom: 10px;
|
|
476
471
|
margin-bottom: 10px;
|
|
477
472
|
align-items: flex-start;
|
|
478
473
|
|
|
479
474
|
.f-title-tag {
|
|
480
475
|
.tag {
|
|
481
|
-
background-color: $
|
|
482
|
-
color: $
|
|
476
|
+
background-color: $primary;
|
|
477
|
+
color: $white-100;
|
|
483
478
|
}
|
|
484
479
|
}
|
|
485
480
|
}
|
|
@@ -487,9 +482,9 @@
|
|
|
487
482
|
p {
|
|
488
483
|
font-style: normal;
|
|
489
484
|
font-weight: normal;
|
|
490
|
-
font-size:
|
|
485
|
+
font-size: 13px;
|
|
491
486
|
line-height: 160%;
|
|
492
|
-
color: $
|
|
487
|
+
color: $primary-10;
|
|
493
488
|
margin-bottom: 25px;
|
|
494
489
|
}
|
|
495
490
|
|
|
@@ -500,9 +495,9 @@
|
|
|
500
495
|
.name,
|
|
501
496
|
.f-number {
|
|
502
497
|
font-weight: 500;
|
|
503
|
-
font-size:
|
|
498
|
+
font-size: 13px;
|
|
504
499
|
line-height: 16px;
|
|
505
|
-
color: $
|
|
500
|
+
color: $primary-10;
|
|
506
501
|
margin-bottom: 10px;
|
|
507
502
|
}
|
|
508
503
|
}
|
|
@@ -512,9 +507,9 @@
|
|
|
512
507
|
li {
|
|
513
508
|
font-style: normal;
|
|
514
509
|
font-weight: normal;
|
|
515
|
-
font-size:
|
|
510
|
+
font-size: 13px;
|
|
516
511
|
line-height: 163%;
|
|
517
|
-
color: $
|
|
512
|
+
color: $primary-10;
|
|
518
513
|
margin-bottom: 5px;
|
|
519
514
|
|
|
520
515
|
i.fa {
|
|
@@ -531,7 +526,7 @@
|
|
|
531
526
|
.ac-single-card {
|
|
532
527
|
background-color: var(--dark-bg-light);
|
|
533
528
|
|
|
534
|
-
&.
|
|
529
|
+
&.vendor-card {
|
|
535
530
|
background-color: var(--dark-bg-light);
|
|
536
531
|
}
|
|
537
532
|
|
|
@@ -552,25 +547,22 @@
|
|
|
552
547
|
}
|
|
553
548
|
}
|
|
554
549
|
}
|
|
550
|
+
|
|
555
551
|
// dark theme end
|
|
556
552
|
/****************************************
|
|
557
553
|
Responsive Classes
|
|
558
554
|
*****************************************/
|
|
559
555
|
// Extra small devices (portrait phones, less than 576px)
|
|
560
|
-
@media (max-width: 575.98px) {
|
|
561
|
-
}
|
|
556
|
+
@media (max-width: 575.98px) {}
|
|
562
557
|
|
|
563
558
|
// Small devices (landscape phones, 576px and up)
|
|
564
|
-
@media (min-width: 576px) and (max-width: 767.98px) {
|
|
565
|
-
}
|
|
559
|
+
@media (min-width: 576px) and (max-width: 767.98px) {}
|
|
566
560
|
|
|
567
561
|
// Medium devices (tablets, 768px and up)
|
|
568
|
-
@media (min-width: 768px) and (max-width: 991.98px) {
|
|
569
|
-
}
|
|
562
|
+
@media (min-width: 768px) and (max-width: 991.98px) {}
|
|
570
563
|
|
|
571
564
|
// Large devices (desktops, 992px and up)
|
|
572
|
-
@media (min-width: 992px) and (max-width: 1199.98px) {
|
|
573
|
-
}
|
|
565
|
+
@media (min-width: 992px) and (max-width: 1199.98px) {}
|
|
574
566
|
|
|
575
567
|
// Extra large devices (large desktops, 1200px and up)
|
|
576
568
|
@media (min-width: 1200px) {
|
|
@@ -579,7 +571,7 @@ Responsive Classes
|
|
|
579
571
|
ul {
|
|
580
572
|
li {
|
|
581
573
|
p {
|
|
582
|
-
font-size:
|
|
574
|
+
font-size: 13px;
|
|
583
575
|
line-height: 1;
|
|
584
576
|
}
|
|
585
577
|
}
|
|
@@ -594,4 +586,4 @@ Responsive Classes
|
|
|
594
586
|
}
|
|
595
587
|
}
|
|
596
588
|
}
|
|
597
|
-
}
|
|
589
|
+
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
.ac-code-highlight {
|
|
2
2
|
pre {
|
|
3
|
-
font-size:
|
|
4
|
-
color: $
|
|
5
|
-
background-color: $
|
|
3
|
+
font-size: 13px;
|
|
4
|
+
color: $primary-10;
|
|
5
|
+
background-color: $white-100-lighter;
|
|
6
6
|
}
|
|
7
7
|
&.is-dark {
|
|
8
8
|
pre {
|
|
9
|
-
background-color: $
|
|
10
|
-
color: $
|
|
9
|
+
background-color: $primary-10;
|
|
10
|
+
color: $white-100;
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -19,7 +19,7 @@ pre[class*="language-"] {
|
|
|
19
19
|
.editor-writable {
|
|
20
20
|
width: 100%;
|
|
21
21
|
border-radius: 4px !important;
|
|
22
|
-
border: 1px solid $
|
|
22
|
+
border: 1px solid $white-100-light !important;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
.monaco-editor {
|