@appscode/design-system 1.1.0-alpha.8 → 1.1.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/base/utilities/_all.scss +1 -1
- package/base/utilities/_default.scss +41 -41
- package/base/utilities/_derived-variables.scss +8 -9
- package/base/utilities/_extended.scss +9 -5
- package/base/utilities/_initial-variables.scss +52 -50
- package/base/utilities/_mixin.scss +11 -11
- package/base/utilities/_typography.scss +22 -22
- package/base/utilities/dark-theme.scss +1 -1
- package/components/_ac-accordion.scss +6 -6
- package/components/_ac-alert-box.scss +27 -28
- package/components/_ac-calendar.scss +4 -4
- package/components/_ac-card.scss +55 -55
- package/components/_ac-code-highlight.scss +6 -6
- package/components/_ac-content-layout.scss +165 -165
- package/components/_ac-drag.scss +11 -11
- package/components/_ac-input.scss +85 -85
- package/components/_ac-modal.scss +8 -8
- package/components/_ac-multi-select.scss +751 -751
- package/components/_ac-options.scss +12 -13
- package/components/_ac-select-box.scss +5 -5
- package/components/_ac-table.scss +55 -55
- package/components/_ac-tabs.scss +36 -36
- package/components/_ac-tags.scss +22 -22
- package/components/_ac-terminal.scss +253 -253
- package/components/_add-card.scss +3 -3
- package/components/_app-drawer.scss +4 -4
- package/components/_basic-card.scss +108 -114
- package/components/_breadcumb.scss +5 -5
- package/components/_buttons.scss +64 -64
- package/components/_card-body-wrapper.scss +5 -5
- package/components/_dashboard-header.scss +29 -29
- package/components/_direct-deploy.scss +8 -8
- package/components/_go-to-top.scss +1 -1
- package/components/_image-upload.scss +3 -3
- package/components/_left-sidebar-menu.scss +374 -376
- package/components/_monaco-editor.scss +1 -1
- package/components/_navbar.scss +65 -65
- package/components/_nested-list.scss +1 -1
- package/components/_overview-info.scss +7 -7
- package/components/_overview-page.scss +4 -4
- package/components/_pagination.scss +110 -110
- package/components/_payment-card.scss +20 -20
- package/components/_preloader.scss +1 -1
- package/components/_preview-modal.scss +18 -18
- package/components/_pricing-table.scss +10 -10
- package/components/_progress-bar.scss +12 -12
- package/components/_subscription-card.scss +14 -14
- package/components/_table-of-content.scss +4 -4
- package/components/_tfa.scss +9 -9
- package/components/_widget-menu.scss +17 -17
- package/components/_wizard.scss +82 -82
- package/components/ac-toaster/_ac-toasted.scss +1 -1
- package/components/bbum/_activities-header.scss +1 -1
- package/components/bbum/_card-team.scss +12 -12
- package/components/bbum/_information-center.scss +13 -13
- package/components/bbum/_left-sidebar.scss +8 -8
- package/components/bbum/_mobile-desktop.scss +7 -7
- package/components/bbum/_post.scss +5 -5
- package/components/bbum/_sign-up-notification.scss +10 -10
- package/components/bbum/_single-post-preview.scss +21 -21
- package/components/bbum/_user-profile.scss +10 -10
- package/components/ui-builder/_ui-builder.scss +15 -15
- package/components/ui-builder/_vue-open-api.scss +2 -2
- package/layouts/_code-preview.scss +11 -11
- package/package.json +1 -1
- package/vue-components/plugins/time-convert.js +49 -0
- package/vue-components/text.vue +1 -0
- package/vue-components/types/cluster.ts +6 -0
- package/vue-components/types/longRunningTasks.ts +20 -0
- package/vue-components/types/notification.ts +6 -0
- package/vue-components/types/previewYaml.ts +8 -0
- package/vue-components/types/table.ts +54 -0
- package/vue-components/types/theme.ts +10 -0
- package/vue-components/types/user.ts +22 -0
- package/vue-components/v2/card/OverviewCards.vue +17 -2
- package/vue-components/v2/editor/ResourceKeyValueEditor.vue +21 -21
- package/vue-components/v2/icons/Ellipsis.vue +2 -1
- package/vue-components/v2/modal/Modal.vue +0 -5
- package/vue-components/v2/navbar/Appdrawer.vue +37 -12
- package/vue-components/v2/navbar/Navbar.vue +3 -3
- package/vue-components/v2/navbar/NavbarItem.vue +3 -1
- package/vue-components/v2/navbar/NavbarItemContent.vue +1 -1
- package/vue-components/v2/navbar/User.vue +5 -22
- package/vue-components/v2/pagination/Pagination.vue +65 -0
- package/vue-components/v2/sidebar/SidebarItem.vue +10 -7
- package/vue-components/v3/accordion/Accordion.vue +151 -0
- package/vue-components/v3/alert/Alert.vue +238 -0
- package/vue-components/v3/alert/Toast.vue +79 -0
- package/vue-components/v3/banner/Banner.vue +10 -0
- package/vue-components/v3/breadcrumbs/Breadcrumb.vue +104 -0
- package/vue-components/v3/button/Button.vue +831 -58
- package/vue-components/v3/button/Buttons.vue +6 -0
- package/vue-components/v3/button/DownloadBtn.vue +31 -0
- package/vue-components/v3/cards/Card.vue +32 -0
- package/vue-components/v3/cards/CardContent.vue +7 -0
- package/vue-components/v3/cards/CardHeader.vue +14 -0
- package/vue-components/v3/cards/Cards.vue +7 -0
- package/vue-components/v3/cards/Cluster.vue +150 -0
- package/vue-components/v3/cards/Counter.vue +27 -0
- package/vue-components/v3/cards/FeatureCard.vue +40 -0
- package/vue-components/v3/cards/FeatureCards.vue +6 -0
- package/vue-components/v3/cards/InfoCard.vue +248 -0
- package/vue-components/v3/cards/Monitoring.vue +94 -0
- package/vue-components/v3/cards/OverviewCard.vue +24 -0
- package/vue-components/v3/cards/OverviewCards.vue +31 -0
- package/vue-components/v3/cards/Payment.vue +62 -0
- package/vue-components/v3/cards/Vendor.vue +23 -0
- package/vue-components/v3/content/ContentHeader.vue +39 -30
- package/vue-components/v3/content/ContentLayout.vue +20 -0
- package/vue-components/v3/content/ContentTable.vue +37 -61
- package/vue-components/v3/dropdown/DropdownDivider.vue +2 -0
- package/vue-components/v3/dropdown/DropdownItem.vue +2 -0
- package/vue-components/v3/dropdown/DropdownMenu.vue +85 -91
- package/vue-components/v3/editor/Editor.vue +100 -113
- package/vue-components/v3/editor/FilteredFileEditor.vue +124 -127
- package/vue-components/v3/editor/ResourceKeyValueEditor.vue +70 -94
- package/vue-components/v3/footer/FooterArea.vue +34 -0
- package/vue-components/v3/footer/FooterItem.vue +29 -0
- package/vue-components/v3/footer/FooterItems.vue +15 -0
- package/vue-components/v3/footer/Info.vue +23 -0
- package/vue-components/v3/footer/Status.vue +42 -0
- package/vue-components/v3/footer/Usage.vue +44 -0
- package/vue-components/v3/form/Form.vue +24 -33
- package/vue-components/v3/form/FormFooterControl.vue +7 -0
- package/vue-components/v3/form/FormFooterControls.vue +7 -0
- package/vue-components/v3/form-fields/AcSingleInput.vue +520 -0
- package/vue-components/v3/form-fields/Input.vue +19 -14
- package/vue-components/v3/header/Header.vue +117 -24
- package/vue-components/v3/header/HeaderItem.vue +18 -0
- package/vue-components/v3/header/HeaderItems.vue +4 -0
- package/vue-components/v3/icons/Ellipsis.vue +2 -0
- package/vue-components/v3/loaders/ResourceLoader.vue +4 -12
- package/vue-components/v3/loaders/SidebarLoader.vue +4 -12
- package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +17 -15
- package/vue-components/v3/modal/Modal.vue +292 -96
- package/vue-components/v3/modals/DeleteConfirmationModal.vue +37 -50
- package/vue-components/v3/modals/JsonShowModal.vue +62 -68
- package/vue-components/v3/modals/LongRunningTasksModal.vue +145 -143
- package/vue-components/v3/navbar/Appdrawer.vue +196 -51
- package/vue-components/v3/navbar/Navbar.vue +296 -0
- package/vue-components/v3/navbar/NavbarItem.vue +81 -0
- package/vue-components/v3/navbar/NavbarItemContent.vue +284 -0
- package/vue-components/v3/navbar/Notification.vue +179 -0
- package/vue-components/v3/navbar/ThemeMode.vue +128 -112
- package/vue-components/v3/navbar/User.vue +383 -268
- package/vue-components/v3/notification/AlertBox.vue +39 -42
- package/vue-components/v3/notification/Notification.vue +49 -43
- package/vue-components/v3/notification/NotificationItem.vue +51 -19
- package/vue-components/v3/option-dots/Options.vue +188 -0
- package/vue-components/v3/pagination/Pagination.vue +203 -99
- package/vue-components/v3/preloader/Preloader.vue +23 -0
- package/vue-components/v3/searchbars/SearchBar.vue +51 -34
- package/vue-components/v3/sidebar/AccentColorPicker.vue +97 -0
- package/vue-components/v3/sidebar/ClusterSwitcher.vue +834 -81
- package/vue-components/v3/sidebar/Sidebar.vue +271 -0
- package/vue-components/v3/sidebar/SidebarBody.vue +7 -0
- package/vue-components/v3/sidebar/SidebarFooter.vue +80 -0
- package/vue-components/v3/sidebar/SidebarHeader.vue +124 -0
- package/vue-components/v3/sidebar/SidebarItem.vue +62 -0
- package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +101 -104
- package/vue-components/v3/sidebar/SidebarMenuList.vue +9 -0
- package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabs.vue +128 -0
- package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabsLayout.vue +29 -0
- package/vue-components/v3/sidebar/sidebar-tabs/TabsContent.vue +99 -0
- package/vue-components/v3/tab/TabItem.vue +10 -12
- package/vue-components/v3/tab/Tabs.vue +9 -0
- package/vue-components/v3/tab/TabsBody.vue +7 -0
- package/vue-components/v3/table/EmptyTableInfo.vue +8 -0
- package/vue-components/v3/table/FakeTableCell.vue +22 -31
- package/vue-components/v3/table/InfoTable.vue +85 -59
- package/vue-components/v3/table/MultiInfoTable.vue +72 -95
- package/vue-components/v3/table/Table.vue +582 -151
- package/vue-components/v3/table/TableCell.vue +20 -23
- package/vue-components/v3/table/TableContainer.vue +50 -28
- package/vue-components/v3/table/TableRow.vue +63 -85
- package/vue-components/v3/table/table-cell/ArrayCell.vue +67 -79
- package/vue-components/v3/table/table-cell/CellValue.vue +97 -103
- package/vue-components/v3/table/table-cell/GenericCell.vue +43 -42
- package/vue-components/v3/table/table-cell/ObjectCell.vue +67 -79
- package/vue-components/v3/table/table-cell/ValueWithModal.vue +22 -31
- package/vue-components/v3/tabs/EditorTabs.vue +18 -24
- package/vue-components/v3/tag/Tag.vue +15 -12
- package/vue-components/v3/tag/Tags.vue +7 -0
- package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +26 -23
- package/mixins/stickyContent.js +0 -141
- package/plugins/caching.ts +0 -243
|
@@ -16,18 +16,18 @@
|
|
|
16
16
|
top: 0;
|
|
17
17
|
width: 4px;
|
|
18
18
|
height: 100%;
|
|
19
|
-
background-color: $
|
|
19
|
+
background-color: $primary;
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
.single-accordion-item {
|
|
26
|
-
background-color: $
|
|
26
|
+
background-color: $white-100;
|
|
27
27
|
padding: 15px 20px;
|
|
28
28
|
margin-bottom: 15px;
|
|
29
29
|
border-radius: 4px;
|
|
30
|
-
border: 1px solid $
|
|
30
|
+
border: 1px solid $primary-90;
|
|
31
31
|
|
|
32
32
|
&.open {
|
|
33
33
|
.accordion-heading {
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
.icon {
|
|
57
57
|
width: 20px;
|
|
58
58
|
height: 20px;
|
|
59
|
-
border: 1px solid $
|
|
59
|
+
border: 1px solid $primary-90;
|
|
60
60
|
line-height: 20px;
|
|
61
61
|
display: flex;
|
|
62
62
|
justify-content: center;
|
|
@@ -73,8 +73,8 @@
|
|
|
73
73
|
overflow: hidden;
|
|
74
74
|
|
|
75
75
|
p {
|
|
76
|
-
font-size:
|
|
77
|
-
color: $
|
|
76
|
+
font-size: 13px;
|
|
77
|
+
color: $primary-10;
|
|
78
78
|
line-height: 1.6;
|
|
79
79
|
}
|
|
80
80
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
// for alert message
|
|
2
2
|
.ac-notification {
|
|
3
3
|
background-color: #dee7f5;
|
|
4
|
-
font-size:
|
|
5
|
-
color: $
|
|
4
|
+
font-size: 13px;
|
|
5
|
+
color: $primary;
|
|
6
6
|
min-height: 36px;
|
|
7
7
|
display: flex;
|
|
8
8
|
align-items: center;
|
|
9
9
|
padding: 8px 16px;
|
|
10
10
|
overflow: hidden;
|
|
11
|
-
border: 1px solid $
|
|
11
|
+
border: 1px solid $primary;
|
|
12
12
|
border-radius: 4px;
|
|
13
13
|
justify-content: flex-start;
|
|
14
14
|
position: relative;
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
min-width: 280px;
|
|
17
17
|
|
|
18
18
|
p {
|
|
19
|
-
color: $
|
|
19
|
+
color: $primary;
|
|
20
20
|
|
|
21
21
|
.close-icon {
|
|
22
22
|
padding-right: 10px;
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
|
|
26
26
|
a {
|
|
27
27
|
text-decoration: underline;
|
|
28
|
-
color: $
|
|
28
|
+
color: $primary;
|
|
29
29
|
|
|
30
30
|
&:hover {
|
|
31
31
|
color: hsla(
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
box-shadow: none;
|
|
47
47
|
border: none;
|
|
48
48
|
font-size: 14px;
|
|
49
|
-
color: $
|
|
49
|
+
color: $danger;
|
|
50
50
|
width: 40px;
|
|
51
51
|
height: 100%;
|
|
52
52
|
display: flex;
|
|
@@ -55,15 +55,14 @@
|
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
-
|
|
59
58
|
.toast {
|
|
60
59
|
box-shadow: $ac-shadow-sm;
|
|
61
|
-
border: 1px solid $
|
|
60
|
+
border: 1px solid $primary-90;
|
|
62
61
|
width: 350px;
|
|
63
62
|
|
|
64
63
|
.toast-header {
|
|
65
64
|
padding: 8px 12px;
|
|
66
|
-
border-bottom: 1px solid $
|
|
65
|
+
border-bottom: 1px solid $primary-90;
|
|
67
66
|
|
|
68
67
|
.button {
|
|
69
68
|
&:hover {
|
|
@@ -80,7 +79,7 @@
|
|
|
80
79
|
// mixin for .ac-notification
|
|
81
80
|
@mixin acNotification($colorName) {
|
|
82
81
|
background-color: scale-color($color: $colorName, $lightness: 80%);
|
|
83
|
-
color: $
|
|
82
|
+
color: $white-100;
|
|
84
83
|
border-color: $colorName;
|
|
85
84
|
|
|
86
85
|
p {
|
|
@@ -103,17 +102,17 @@
|
|
|
103
102
|
var(--hsl-lightness),
|
|
104
103
|
0.2
|
|
105
104
|
);
|
|
106
|
-
color: $
|
|
107
|
-
border-color: $
|
|
105
|
+
color: $white-100;
|
|
106
|
+
border-color: $primary;
|
|
108
107
|
|
|
109
108
|
p {
|
|
110
|
-
color: $
|
|
109
|
+
color: $primary;
|
|
111
110
|
|
|
112
111
|
a {
|
|
113
|
-
color: $
|
|
112
|
+
color: $primary;
|
|
114
113
|
|
|
115
114
|
&:hover {
|
|
116
|
-
color: $
|
|
115
|
+
color: $primary;
|
|
117
116
|
opacity: 0.8;
|
|
118
117
|
}
|
|
119
118
|
}
|
|
@@ -127,22 +126,22 @@
|
|
|
127
126
|
|
|
128
127
|
// is.info
|
|
129
128
|
.ac-notification.is-info {
|
|
130
|
-
@include acNotification($
|
|
129
|
+
@include acNotification($info);
|
|
131
130
|
}
|
|
132
131
|
|
|
133
132
|
// is.success
|
|
134
133
|
.ac-notification.is-success {
|
|
135
|
-
@include acNotification($
|
|
134
|
+
@include acNotification($success);
|
|
136
135
|
}
|
|
137
136
|
|
|
138
137
|
// is-error
|
|
139
138
|
.ac-notification.is-error {
|
|
140
|
-
@include acNotification($
|
|
139
|
+
@include acNotification($danger);
|
|
141
140
|
}
|
|
142
141
|
|
|
143
142
|
// is-warning
|
|
144
143
|
.ac-notification.is-warning {
|
|
145
|
-
@include acNotification($
|
|
144
|
+
@include acNotification($warning);
|
|
146
145
|
}
|
|
147
146
|
|
|
148
147
|
/*====================================
|
|
@@ -161,7 +160,7 @@ AC Toast
|
|
|
161
160
|
margin-bottom: 10px;
|
|
162
161
|
|
|
163
162
|
* {
|
|
164
|
-
color: $
|
|
163
|
+
color: $white-100;
|
|
165
164
|
}
|
|
166
165
|
|
|
167
166
|
p {
|
|
@@ -179,7 +178,7 @@ AC Toast
|
|
|
179
178
|
padding: 0 15px;
|
|
180
179
|
|
|
181
180
|
&:hover {
|
|
182
|
-
color: $
|
|
181
|
+
color: $white-100-lighter;
|
|
183
182
|
}
|
|
184
183
|
}
|
|
185
184
|
|
|
@@ -187,7 +186,7 @@ AC Toast
|
|
|
187
186
|
border-radius: 0px;
|
|
188
187
|
background-color: transparent;
|
|
189
188
|
border: none;
|
|
190
|
-
color: $
|
|
189
|
+
color: $white-100;
|
|
191
190
|
position: absolute;
|
|
192
191
|
right: 0;
|
|
193
192
|
top: 0;
|
|
@@ -203,33 +202,33 @@ AC Toast
|
|
|
203
202
|
// mixin for .ac-toast
|
|
204
203
|
@mixin acToast($colorName) {
|
|
205
204
|
background-color: $colorName;
|
|
206
|
-
color: $
|
|
205
|
+
color: $white-100;
|
|
207
206
|
border-color: $colorName;
|
|
208
207
|
}
|
|
209
208
|
|
|
210
209
|
// is-primary
|
|
211
210
|
.ac-toast.is-primary {
|
|
212
|
-
@include acToast($
|
|
211
|
+
@include acToast($primary);
|
|
213
212
|
}
|
|
214
213
|
|
|
215
214
|
// is-info
|
|
216
215
|
.ac-toast.is-info {
|
|
217
|
-
@include acToast($
|
|
216
|
+
@include acToast($info);
|
|
218
217
|
}
|
|
219
218
|
|
|
220
219
|
// is.success
|
|
221
220
|
.ac-toast.is-success {
|
|
222
|
-
@include acToast($
|
|
221
|
+
@include acToast($success);
|
|
223
222
|
}
|
|
224
223
|
|
|
225
224
|
// is-error
|
|
226
225
|
.ac-toast.is-error {
|
|
227
|
-
@include acToast($
|
|
226
|
+
@include acToast($danger);
|
|
228
227
|
}
|
|
229
228
|
|
|
230
229
|
// is-warning
|
|
231
230
|
.ac-toast.is-warning {
|
|
232
|
-
@include acToast($
|
|
231
|
+
@include acToast($warning);
|
|
233
232
|
}
|
|
234
233
|
|
|
235
234
|
// dark theme start
|
|
@@ -5,19 +5,19 @@
|
|
|
5
5
|
height: 45px !important;
|
|
6
6
|
padding: 15px !important;
|
|
7
7
|
font-weight: normal !important;
|
|
8
|
-
font-size:
|
|
8
|
+
font-size: 13px !important;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
.vc-highlight {
|
|
12
12
|
width: 45px !important;
|
|
13
|
-
background-color: $
|
|
13
|
+
background-color: $primary !important;
|
|
14
14
|
height: 45px !important;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
.vc-weeks {
|
|
18
18
|
padding: 25px 30px !important;
|
|
19
19
|
font-weight: normal !important;
|
|
20
|
-
font-size:
|
|
20
|
+
font-size: 13px !important;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
.vc-weekday {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
margin-right: -30px !important;
|
|
28
28
|
margin-bottom: 25px !important;
|
|
29
29
|
font-weight: 500;
|
|
30
|
-
font-size:
|
|
30
|
+
font-size: 13px !important;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
.vc-bg-blue-200 {
|
package/components/_ac-card.scss
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
display: block;
|
|
9
9
|
padding: 20px;
|
|
10
10
|
border-radius: 4px;
|
|
11
|
-
border: 1px solid $
|
|
11
|
+
border: 1px solid $primary-90;
|
|
12
12
|
overflow: hidden;
|
|
13
13
|
background-color: hsla(
|
|
14
14
|
var(--hsl-hue),
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
transition: 0.3s ease-in-out;
|
|
20
20
|
|
|
21
21
|
&.is-selected {
|
|
22
|
-
border: 1px solid $
|
|
22
|
+
border: 1px solid $primary !important;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
&.style-two {
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
position: absolute;
|
|
42
42
|
content: "";
|
|
43
43
|
background-color: #27ae60;
|
|
44
|
-
border: 2px solid $
|
|
44
|
+
border: 2px solid $white-100;
|
|
45
45
|
box-sizing: border-box;
|
|
46
46
|
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
|
|
47
47
|
width: 10px;
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
.ac-card-title {
|
|
56
56
|
h4 {
|
|
57
57
|
font-size: 12px;
|
|
58
|
-
font-family: $
|
|
58
|
+
font-family: $font-paragraph;
|
|
59
59
|
line-height: 140%;
|
|
60
60
|
}
|
|
61
61
|
}
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
.ac-card-body {
|
|
65
65
|
p {
|
|
66
66
|
font-size: 12px;
|
|
67
|
-
color: $
|
|
67
|
+
color: $primary-10;
|
|
68
68
|
font-weight: 400;
|
|
69
69
|
|
|
70
70
|
&:not(:last-child) {
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
&.style-three {
|
|
78
|
-
background-color: $
|
|
78
|
+
background-color: $info-light;
|
|
79
79
|
width: 190px;
|
|
80
80
|
margin-bottom: 20px;
|
|
81
81
|
margin-right: 20px;
|
|
@@ -97,18 +97,18 @@
|
|
|
97
97
|
|
|
98
98
|
.ac-card-name {
|
|
99
99
|
p {
|
|
100
|
-
font-size:
|
|
101
|
-
color: $
|
|
100
|
+
font-size: 13px;
|
|
101
|
+
color: $primary-10;
|
|
102
102
|
line-height: 1;
|
|
103
103
|
|
|
104
104
|
&.free {
|
|
105
|
-
color: $
|
|
105
|
+
color: $primary;
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
&:hover {
|
|
111
|
-
background-color: $
|
|
111
|
+
background-color: $black-60;
|
|
112
112
|
}
|
|
113
113
|
}
|
|
114
114
|
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
h3 {
|
|
125
125
|
font-size: 16px;
|
|
126
126
|
line-height: 1;
|
|
127
|
-
font-family: $
|
|
127
|
+
font-family: $font-paragraph;
|
|
128
128
|
}
|
|
129
129
|
}
|
|
130
130
|
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
font-size: 36px;
|
|
136
136
|
line-height: 1;
|
|
137
137
|
font-weight: 600;
|
|
138
|
-
color: $
|
|
138
|
+
color: $primary-5;
|
|
139
139
|
display: inline-block;
|
|
140
140
|
position: relative;
|
|
141
141
|
z-index: 1;
|
|
@@ -177,12 +177,12 @@
|
|
|
177
177
|
}
|
|
178
178
|
|
|
179
179
|
&:hover {
|
|
180
|
-
border: 1px solid $
|
|
180
|
+
border: 1px solid $primary;
|
|
181
181
|
|
|
182
182
|
.ac-card-title {
|
|
183
183
|
h4 {
|
|
184
184
|
a {
|
|
185
|
-
color: $
|
|
185
|
+
color: $primary;
|
|
186
186
|
}
|
|
187
187
|
}
|
|
188
188
|
}
|
|
@@ -197,20 +197,20 @@
|
|
|
197
197
|
width: 40px;
|
|
198
198
|
overflow: hidden;
|
|
199
199
|
margin-right: 15px;
|
|
200
|
-
background: $
|
|
200
|
+
background: $white-100;
|
|
201
201
|
padding: 8px;
|
|
202
202
|
height: 40px;
|
|
203
203
|
border-radius: 50%;
|
|
204
204
|
display: flex;
|
|
205
205
|
align-items: center;
|
|
206
|
-
border: 1px solid $
|
|
206
|
+
border: 1px solid $primary-90;
|
|
207
207
|
}
|
|
208
208
|
|
|
209
209
|
.ac-card-title {
|
|
210
210
|
width: calc(100% - 55px);
|
|
211
211
|
h4 {
|
|
212
212
|
a {
|
|
213
|
-
color: $
|
|
213
|
+
color: $primary-5;
|
|
214
214
|
}
|
|
215
215
|
|
|
216
216
|
font-size: 16px;
|
|
@@ -219,7 +219,7 @@
|
|
|
219
219
|
}
|
|
220
220
|
|
|
221
221
|
p {
|
|
222
|
-
font-size:
|
|
222
|
+
font-size: 13px;
|
|
223
223
|
color: $ac-gray;
|
|
224
224
|
}
|
|
225
225
|
}
|
|
@@ -227,8 +227,8 @@
|
|
|
227
227
|
|
|
228
228
|
.ac-card-body {
|
|
229
229
|
p {
|
|
230
|
-
color: $
|
|
231
|
-
font-size:
|
|
230
|
+
color: $black-30;
|
|
231
|
+
font-size: 13px;
|
|
232
232
|
line-height: 140%;
|
|
233
233
|
}
|
|
234
234
|
}
|
|
@@ -242,7 +242,7 @@
|
|
|
242
242
|
position: absolute;
|
|
243
243
|
content: "";
|
|
244
244
|
background-color: #27ae60;
|
|
245
|
-
border: 2px solid $
|
|
245
|
+
border: 2px solid $white-100;
|
|
246
246
|
box-sizing: border-box;
|
|
247
247
|
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
|
|
248
248
|
width: 10px;
|
|
@@ -256,15 +256,15 @@
|
|
|
256
256
|
// offer card scss start
|
|
257
257
|
.pricing-card-wrpper {
|
|
258
258
|
&.offer-card {
|
|
259
|
-
background-color: $
|
|
260
|
-
border: 1px solid $
|
|
259
|
+
background-color: $white-100-lighter;
|
|
260
|
+
border: 1px solid $primary-90;
|
|
261
261
|
border-radius: 4px;
|
|
262
262
|
display: flex;
|
|
263
263
|
position: relative;
|
|
264
264
|
z-index: 1;
|
|
265
265
|
|
|
266
266
|
&:after {
|
|
267
|
-
@include absulate-shape($
|
|
267
|
+
@include absulate-shape($primary, 100%, 4px);
|
|
268
268
|
background: linear-gradient(90deg, #f99a00 0%, #3f19ad 98.84%);
|
|
269
269
|
}
|
|
270
270
|
|
|
@@ -296,7 +296,7 @@
|
|
|
296
296
|
|
|
297
297
|
&.is-primary {
|
|
298
298
|
&:after {
|
|
299
|
-
@include absulate-shape($
|
|
299
|
+
@include absulate-shape($primary, 100%, 4px);
|
|
300
300
|
border-radius: 4px 4px 0 0;
|
|
301
301
|
}
|
|
302
302
|
}
|
|
@@ -304,12 +304,12 @@
|
|
|
304
304
|
&.is-warning {
|
|
305
305
|
&.is-selected {
|
|
306
306
|
&.pricing {
|
|
307
|
-
border: 1px solid $
|
|
307
|
+
border: 1px solid $warning;
|
|
308
308
|
}
|
|
309
309
|
}
|
|
310
310
|
|
|
311
311
|
&:after {
|
|
312
|
-
@include absulate-shape($
|
|
312
|
+
@include absulate-shape($warning, 100%, 4px);
|
|
313
313
|
border-radius: 4px 4px 0 0;
|
|
314
314
|
}
|
|
315
315
|
}
|
|
@@ -317,12 +317,12 @@
|
|
|
317
317
|
&.is-green {
|
|
318
318
|
&.is-selected {
|
|
319
319
|
&.pricing {
|
|
320
|
-
border: 1px solid $
|
|
320
|
+
border: 1px solid $success;
|
|
321
321
|
}
|
|
322
322
|
}
|
|
323
323
|
|
|
324
324
|
&:after {
|
|
325
|
-
@include absulate-shape($
|
|
325
|
+
@include absulate-shape($success, 100%, 4px);
|
|
326
326
|
border-radius: 4px 4px 0 0;
|
|
327
327
|
}
|
|
328
328
|
}
|
|
@@ -330,22 +330,22 @@
|
|
|
330
330
|
&.is-danger {
|
|
331
331
|
&.is-selected {
|
|
332
332
|
&.pricing {
|
|
333
|
-
border: 1px solid $
|
|
333
|
+
border: 1px solid $danger;
|
|
334
334
|
}
|
|
335
335
|
}
|
|
336
336
|
|
|
337
337
|
&:after {
|
|
338
|
-
@include absulate-shape($
|
|
338
|
+
@include absulate-shape($danger, 100%, 4px);
|
|
339
339
|
border-radius: 4px 4px 0 0;
|
|
340
340
|
}
|
|
341
341
|
}
|
|
342
342
|
|
|
343
343
|
&.pricing {
|
|
344
|
-
border: 1px solid $
|
|
344
|
+
border: 1px solid $primary-90;
|
|
345
345
|
border-radius: 4px;
|
|
346
346
|
|
|
347
347
|
&.is-selected {
|
|
348
|
-
border: 1px solid $
|
|
348
|
+
border: 1px solid $primary;
|
|
349
349
|
}
|
|
350
350
|
}
|
|
351
351
|
|
|
@@ -354,28 +354,28 @@
|
|
|
354
354
|
display: flex;
|
|
355
355
|
justify-content: space-between;
|
|
356
356
|
padding: 10px;
|
|
357
|
-
border-bottom: 1px solid $
|
|
357
|
+
border-bottom: 1px solid $primary-90;
|
|
358
358
|
|
|
359
359
|
&:last-child {
|
|
360
|
-
border-bottom: 1px dashed $
|
|
360
|
+
border-bottom: 1px dashed $primary-90;
|
|
361
361
|
}
|
|
362
362
|
|
|
363
363
|
a.inline-button {
|
|
364
364
|
font-size: 12px;
|
|
365
|
-
color: $
|
|
365
|
+
color: $primary-10;
|
|
366
366
|
text-decoration: underline;
|
|
367
367
|
}
|
|
368
368
|
|
|
369
369
|
span {
|
|
370
|
-
color: $
|
|
370
|
+
color: $primary-10;
|
|
371
371
|
font-size: 12px;
|
|
372
372
|
font-weight: 600;
|
|
373
373
|
}
|
|
374
374
|
|
|
375
375
|
p {
|
|
376
376
|
font-weight: 500;
|
|
377
|
-
font-size:
|
|
378
|
-
color: $
|
|
377
|
+
font-size: 13px;
|
|
378
|
+
color: $primary-10;
|
|
379
379
|
|
|
380
380
|
span {
|
|
381
381
|
font-size: 12px;
|
|
@@ -390,7 +390,7 @@
|
|
|
390
390
|
.button.ac-button {
|
|
391
391
|
&.grediant-1 {
|
|
392
392
|
border-radius: 4px;
|
|
393
|
-
color: $
|
|
393
|
+
color: $white-100;
|
|
394
394
|
letter-spacing: 0;
|
|
395
395
|
font-size: 12px;
|
|
396
396
|
border: none;
|
|
@@ -420,14 +420,14 @@
|
|
|
420
420
|
flex-wrap: wrap;
|
|
421
421
|
|
|
422
422
|
.ac-single-card {
|
|
423
|
-
border: 1px solid $
|
|
423
|
+
border: 1px solid $primary-90;
|
|
424
424
|
|
|
425
425
|
&:hover {
|
|
426
426
|
border: 1px solid transparent;
|
|
427
427
|
}
|
|
428
428
|
|
|
429
429
|
&.style-three {
|
|
430
|
-
background-color: $
|
|
430
|
+
background-color: $white-100-lighter;
|
|
431
431
|
width: 183px;
|
|
432
432
|
padding: 15px 15px 20px;
|
|
433
433
|
height: 115px;
|
|
@@ -451,7 +451,7 @@
|
|
|
451
451
|
font-size: 12px;
|
|
452
452
|
line-height: 14px;
|
|
453
453
|
text-align: center;
|
|
454
|
-
color: $
|
|
454
|
+
color: $primary-10;
|
|
455
455
|
}
|
|
456
456
|
}
|
|
457
457
|
}
|
|
@@ -462,24 +462,24 @@
|
|
|
462
462
|
|
|
463
463
|
// features card start
|
|
464
464
|
.features-card-wrapper {
|
|
465
|
-
background-color: $
|
|
465
|
+
background-color: $white-100;
|
|
466
466
|
padding: 10px;
|
|
467
467
|
border-radius: 4px;
|
|
468
|
-
border: 1px solid $
|
|
468
|
+
border: 1px solid $primary-90;
|
|
469
469
|
|
|
470
470
|
.f-header {
|
|
471
471
|
display: grid;
|
|
472
472
|
grid-template-columns: 40px auto 20px;
|
|
473
473
|
grid-gap: 15px;
|
|
474
|
-
border-bottom: 1px solid $
|
|
474
|
+
border-bottom: 1px solid $primary-90;
|
|
475
475
|
padding-bottom: 10px;
|
|
476
476
|
margin-bottom: 10px;
|
|
477
477
|
align-items: flex-start;
|
|
478
478
|
|
|
479
479
|
.f-title-tag {
|
|
480
480
|
.tag {
|
|
481
|
-
background-color: $
|
|
482
|
-
color: $
|
|
481
|
+
background-color: $primary;
|
|
482
|
+
color: $white-100;
|
|
483
483
|
}
|
|
484
484
|
}
|
|
485
485
|
}
|
|
@@ -487,9 +487,9 @@
|
|
|
487
487
|
p {
|
|
488
488
|
font-style: normal;
|
|
489
489
|
font-weight: normal;
|
|
490
|
-
font-size:
|
|
490
|
+
font-size: 13px;
|
|
491
491
|
line-height: 160%;
|
|
492
|
-
color: $
|
|
492
|
+
color: $primary-10;
|
|
493
493
|
margin-bottom: 25px;
|
|
494
494
|
}
|
|
495
495
|
|
|
@@ -500,9 +500,9 @@
|
|
|
500
500
|
.name,
|
|
501
501
|
.f-number {
|
|
502
502
|
font-weight: 500;
|
|
503
|
-
font-size:
|
|
503
|
+
font-size: 13px;
|
|
504
504
|
line-height: 16px;
|
|
505
|
-
color: $
|
|
505
|
+
color: $primary-10;
|
|
506
506
|
margin-bottom: 10px;
|
|
507
507
|
}
|
|
508
508
|
}
|
|
@@ -512,9 +512,9 @@
|
|
|
512
512
|
li {
|
|
513
513
|
font-style: normal;
|
|
514
514
|
font-weight: normal;
|
|
515
|
-
font-size:
|
|
515
|
+
font-size: 13px;
|
|
516
516
|
line-height: 163%;
|
|
517
|
-
color: $
|
|
517
|
+
color: $primary-10;
|
|
518
518
|
margin-bottom: 5px;
|
|
519
519
|
|
|
520
520
|
i.fa {
|
|
@@ -579,7 +579,7 @@ Responsive Classes
|
|
|
579
579
|
ul {
|
|
580
580
|
li {
|
|
581
581
|
p {
|
|
582
|
-
font-size:
|
|
582
|
+
font-size: 13px;
|
|
583
583
|
line-height: 1;
|
|
584
584
|
}
|
|
585
585
|
}
|
|
@@ -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 {
|