@appscode/design-system 1.0.43-alpha.6 → 1.0.43-alpha.63
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/_default.scss +136 -20
- package/base/utilities/_derived-variables.scss +2 -15
- package/base/utilities/_initial-variables.scss +99 -64
- package/base/utilities/_mixin.scss +90 -10
- package/base/utilities/_typography.scss +20 -7
- package/base/utilities/dark-theme.scss +25 -0
- package/components/_ac-accordion.scss +1 -0
- package/components/_ac-alert-box.scss +45 -10
- package/components/_ac-card.scss +54 -19
- package/components/_ac-code-highlight.scss +6 -0
- package/components/_ac-content-layout.scss +4 -4
- package/components/_ac-drag.scss +6 -6
- package/components/_ac-input.scss +72 -38
- package/components/_ac-modal.scss +5 -4
- package/components/_ac-multi-select.scss +220 -18
- package/components/_ac-options.scss +18 -8
- package/components/_ac-select-box.scss +5 -5
- package/components/_ac-table.scss +40 -33
- package/components/_ac-tabs.scss +64 -23
- package/components/_ac-tags.scss +2 -2
- package/components/_ac-terminal.scss +248 -0
- package/components/_app-drawer.scss +6 -6
- package/components/_breadcumb.scss +7 -2
- package/components/_buttons.scss +78 -32
- package/components/_card-body-wrapper.scss +3 -3
- package/components/_dashboard-header.scss +3 -3
- package/components/_direct-deploy.scss +69 -0
- package/components/_go-to-top.scss +1 -1
- package/components/_image-upload.scss +6 -4
- package/components/_left-sidebar-menu.scss +196 -46
- package/components/_monaco-editor.scss +1 -1
- package/components/_navbar.scss +103 -26
- package/components/_overview-info.scss +4 -4
- package/components/_overview-page.scss +1 -2
- package/components/_pagination.scss +45 -7
- package/components/_payment-card.scss +28 -12
- package/components/_preview-modal.scss +8 -8
- package/components/_pricing-table.scss +1 -1
- package/components/_progress-bar.scss +5 -5
- package/components/_subscription-card.scss +15 -8
- package/components/_table-of-content.scss +1 -1
- package/components/_tfa.scss +69 -0
- package/components/_widget-menu.scss +9 -9
- package/components/_wizard.scss +32 -20
- package/components/ac-toaster/_ac-toasted.scss +40 -8
- package/components/bbum/_card-team.scss +17 -9
- package/components/bbum/_information-center.scss +19 -5
- package/components/bbum/_mobile-desktop.scss +6 -6
- package/components/bbum/_post.scss +5 -4
- package/components/bbum/_sign-up-notification.scss +6 -6
- package/components/bbum/_single-post-preview.scss +9 -9
- package/components/bbum/_user-profile.scss +98 -90
- package/components/ui-builder/_ui-builder.scss +19 -8
- package/layouts/_404.scss +2 -1
- package/layouts/_code-preview.scss +14 -7
- package/main.scss +2 -0
- package/package.json +1 -1
- package/plugins/theme.js +142 -0
- package/plugins/vue-toaster.js +6 -6
- package/vue-components/v2/card/PaymentCards.vue +11 -2
- package/vue-components/v2/editor/Editor.vue +31 -17
- package/vue-components/v2/navbar/Appdrawer.vue +10 -9
- package/vue-components/v2/navbar/ThemeMode.vue +124 -0
- package/vue-components/v2/preloader/Preloader.vue +5 -5
- package/vue-components/v2/table/table-cell/CellValue.vue +10 -1
- package/vue-components/v3/dropdown/DropdownMenu.vue +1 -1
- package/vue-components/v3/editor/Editor.vue +33 -19
- package/vue-components/v3/navbar/Appdrawer.vue +12 -7
- package/vue-components/v3/navbar/ThemeMode.vue +118 -0
- package/vue-components/v3/table/table-cell/CellValue.vue +9 -0
|
@@ -5,21 +5,53 @@
|
|
|
5
5
|
border: none;
|
|
6
6
|
|
|
7
7
|
&:hover {
|
|
8
|
-
|
|
8
|
+
@if (type_of($colorName) == "color") {
|
|
9
|
+
background-color: darken($colorName, 9);
|
|
10
|
+
} @else {
|
|
11
|
+
background-color: hsla(
|
|
12
|
+
var(--hsl-hue),
|
|
13
|
+
var(--hsl-saturation),
|
|
14
|
+
calc(var(--hsl-lightness) - 9%),
|
|
15
|
+
1
|
|
16
|
+
);
|
|
17
|
+
}
|
|
18
|
+
|
|
9
19
|
// box-shadow: 0px 6px 12px scale-color($color: $colorName, $lightness: 70%);
|
|
10
20
|
}
|
|
21
|
+
|
|
11
22
|
&:focus-visible {
|
|
12
23
|
outline: none;
|
|
13
24
|
}
|
|
25
|
+
|
|
14
26
|
&.is-light {
|
|
15
|
-
|
|
27
|
+
@if (type_of($colorName) == "color") {
|
|
28
|
+
background-color: scale-color($colorName, $lightness: 90%);
|
|
29
|
+
} @else {
|
|
30
|
+
background-color: hsla(
|
|
31
|
+
var(--hsl-hue),
|
|
32
|
+
var(--hsl-saturation),
|
|
33
|
+
var(--hsl-lightness),
|
|
34
|
+
0.1
|
|
35
|
+
);
|
|
36
|
+
}
|
|
37
|
+
|
|
16
38
|
color: $colorName;
|
|
39
|
+
|
|
17
40
|
&.is-border {
|
|
18
41
|
border: 1px solid $colorName;
|
|
19
42
|
}
|
|
20
43
|
|
|
21
44
|
&:hover {
|
|
22
|
-
|
|
45
|
+
@if (type_of($colorName) == "color") {
|
|
46
|
+
background-color: scale-color($colorName, $lightness: 80%);
|
|
47
|
+
} @else {
|
|
48
|
+
background-color: hsla(
|
|
49
|
+
var(--hsl-hue),
|
|
50
|
+
var(--hsl-saturation),
|
|
51
|
+
var(--hsl-lightness),
|
|
52
|
+
0.2
|
|
53
|
+
);
|
|
54
|
+
}
|
|
23
55
|
}
|
|
24
56
|
}
|
|
25
57
|
|
|
@@ -35,13 +67,24 @@
|
|
|
35
67
|
}
|
|
36
68
|
|
|
37
69
|
&.is-square {
|
|
38
|
-
|
|
70
|
+
@if (type_of($colorName) == "color") {
|
|
71
|
+
background-color: scale-color($colorName, $lightness: 80%);
|
|
72
|
+
} @else {
|
|
73
|
+
background-color: hsla(
|
|
74
|
+
var(--hsl-hue),
|
|
75
|
+
var(--hsl-saturation),
|
|
76
|
+
var(--hsl-lightness),
|
|
77
|
+
0.2
|
|
78
|
+
);
|
|
79
|
+
}
|
|
80
|
+
|
|
39
81
|
color: $colorName;
|
|
40
82
|
|
|
41
83
|
&:hover {
|
|
42
84
|
background-color: $colorName;
|
|
43
85
|
color: $ac-white;
|
|
44
|
-
box-shadow:
|
|
86
|
+
box-shadow: none;
|
|
87
|
+
|
|
45
88
|
img {
|
|
46
89
|
filter: brightness(100) !important;
|
|
47
90
|
}
|
|
@@ -53,7 +96,16 @@
|
|
|
53
96
|
color: $colorName;
|
|
54
97
|
|
|
55
98
|
&:hover {
|
|
56
|
-
|
|
99
|
+
@if (type_of($colorName) == "color") {
|
|
100
|
+
background-color: scale-color($colorName, $lightness: 80%);
|
|
101
|
+
} @else {
|
|
102
|
+
background-color: hsla(
|
|
103
|
+
var(--hsl-hue),
|
|
104
|
+
var(--hsl-saturation),
|
|
105
|
+
var(--hsl-lightness),
|
|
106
|
+
0.2
|
|
107
|
+
);
|
|
108
|
+
}
|
|
57
109
|
}
|
|
58
110
|
|
|
59
111
|
&.is-outlined {
|
|
@@ -62,7 +114,7 @@
|
|
|
62
114
|
color: $ac-white;
|
|
63
115
|
|
|
64
116
|
&:hover {
|
|
65
|
-
background: $ac-white;
|
|
117
|
+
background-color: $ac-white;
|
|
66
118
|
color: $colorName;
|
|
67
119
|
}
|
|
68
120
|
}
|
|
@@ -77,7 +129,15 @@
|
|
|
77
129
|
&:hover {
|
|
78
130
|
background-color: $colorName;
|
|
79
131
|
color: $ac-white;
|
|
80
|
-
|
|
132
|
+
|
|
133
|
+
@if (type_of($colorName) == "color") {
|
|
134
|
+
box-shadow: 0px 6px 12px scale-color($color: $colorName, $lightness: 70%);
|
|
135
|
+
} @else {
|
|
136
|
+
box-shadow: 0px
|
|
137
|
+
6px
|
|
138
|
+
12px
|
|
139
|
+
hsla(var(--hsl-hue), var(--hsl-saturation), var(--hsl-lightness), 0.3);
|
|
140
|
+
}
|
|
81
141
|
}
|
|
82
142
|
|
|
83
143
|
&.is-large {
|
|
@@ -85,7 +145,17 @@
|
|
|
85
145
|
z-index: 1;
|
|
86
146
|
overflow: hidden;
|
|
87
147
|
border: 1px solid $colorName;
|
|
88
|
-
|
|
148
|
+
|
|
149
|
+
@if (type_of($colorName) == "color") {
|
|
150
|
+
background-color: scale-color($colorName, $lightness: 80%);
|
|
151
|
+
} @else {
|
|
152
|
+
background-color: hsla(
|
|
153
|
+
var(--hsl-hue),
|
|
154
|
+
var(--hsl-saturation),
|
|
155
|
+
var(--hsl-lightness),
|
|
156
|
+
0.2
|
|
157
|
+
);
|
|
158
|
+
}
|
|
89
159
|
|
|
90
160
|
span {
|
|
91
161
|
color: $colorName;
|
|
@@ -123,7 +193,17 @@
|
|
|
123
193
|
}
|
|
124
194
|
|
|
125
195
|
@mixin ac-tags($colorName) {
|
|
126
|
-
|
|
196
|
+
@if (type_of($colorName) == "color") {
|
|
197
|
+
background-color: scale-color($colorName, $lightness: 85%);
|
|
198
|
+
} @else {
|
|
199
|
+
background-color: hsla(
|
|
200
|
+
var(--hsl-hue),
|
|
201
|
+
var(--hsl-saturation),
|
|
202
|
+
var(--hsl-lightness),
|
|
203
|
+
0.15
|
|
204
|
+
);
|
|
205
|
+
}
|
|
206
|
+
|
|
127
207
|
border-color: $colorName;
|
|
128
208
|
color: $colorName;
|
|
129
209
|
}
|
|
@@ -1,10 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
html,
|
|
2
|
+
body {
|
|
3
3
|
background-color: $ac-bg;
|
|
4
4
|
font-family: $ac-family-paragraph;
|
|
5
|
-
font-weight:
|
|
5
|
+
font-weight: 400;
|
|
6
|
+
font-size: 13px;
|
|
7
|
+
color: $ac-color-text;
|
|
8
|
+
}
|
|
9
|
+
p {
|
|
10
|
+
font-size: 13px;
|
|
6
11
|
}
|
|
7
|
-
|
|
8
12
|
h1,
|
|
9
13
|
h2,
|
|
10
14
|
h3,
|
|
@@ -12,7 +16,7 @@ h4,
|
|
|
12
16
|
h5,
|
|
13
17
|
h6 {
|
|
14
18
|
font-family: $ac-family-heading;
|
|
15
|
-
font-weight:
|
|
19
|
+
font-weight: 500;
|
|
16
20
|
color: $ac-color-heading;
|
|
17
21
|
}
|
|
18
22
|
|
|
@@ -51,22 +55,27 @@ h6 {
|
|
|
51
55
|
font-size: $font-size-tiny;
|
|
52
56
|
line-height: $font-size-tiny + 10;
|
|
53
57
|
}
|
|
58
|
+
|
|
54
59
|
&.is-extra-small {
|
|
55
60
|
font-size: $font-size-extra-small;
|
|
56
61
|
line-height: $font-size-extra-small + 10;
|
|
57
62
|
}
|
|
63
|
+
|
|
58
64
|
&.is-small {
|
|
59
65
|
font-size: $font-size-small;
|
|
60
66
|
line-height: $font-size-small + 10;
|
|
61
67
|
}
|
|
68
|
+
|
|
62
69
|
&.is-normal {
|
|
63
70
|
font-size: $font-size-normal;
|
|
64
71
|
line-height: $font-size-normal + 10;
|
|
65
72
|
}
|
|
73
|
+
|
|
66
74
|
&.is-semi-normal {
|
|
67
75
|
font-size: $font-size-semi-normal;
|
|
68
76
|
line-height: $font-size-semi-normal + 10;
|
|
69
77
|
}
|
|
78
|
+
|
|
70
79
|
&.is-medium {
|
|
71
80
|
font-size: $font-size-medium;
|
|
72
81
|
line-height: $font-size-medium + 10;
|
|
@@ -86,10 +95,14 @@ hr {
|
|
|
86
95
|
margin: 15px 0;
|
|
87
96
|
}
|
|
88
97
|
|
|
98
|
+
strong {
|
|
99
|
+
color: $ac-color-value;
|
|
100
|
+
}
|
|
101
|
+
|
|
89
102
|
.is-font-medium {
|
|
90
|
-
font-weight:
|
|
103
|
+
font-weight: 500;
|
|
91
104
|
}
|
|
92
105
|
|
|
93
106
|
.is-font-bold {
|
|
94
|
-
font-weight:
|
|
107
|
+
font-weight: 700;
|
|
95
108
|
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
$dark-bg: var(--dark-bg);
|
|
2
|
+
$dark-bg-light: var(--dark-bg-light);
|
|
3
|
+
|
|
4
|
+
.is-dark-theme {
|
|
5
|
+
--ac-bg: var(--dark-bg);
|
|
6
|
+
--ac-white: #21272e;
|
|
7
|
+
--ac-link-black: #6969c0;
|
|
8
|
+
--ac-black: var(--ac-white-text);
|
|
9
|
+
--ac-text-heading: var(--ac-white-text);
|
|
10
|
+
--ac-text: #98a6b4;
|
|
11
|
+
--ac-blue-light: #2e323c;
|
|
12
|
+
--ac-gray-darker: #a6a6a6;
|
|
13
|
+
--ac-gray-light: #424242;
|
|
14
|
+
--ac-gray-lightest: #777777;
|
|
15
|
+
--ac-white-light: #3f3f3f;
|
|
16
|
+
--ac-white-lighter: #2e323c;
|
|
17
|
+
--ac-label-text: #8c8c8c;
|
|
18
|
+
--ac-bg-light-gray: #2e323c;
|
|
19
|
+
|
|
20
|
+
--ac-color-value: hsl(
|
|
21
|
+
var(--font-hsl-hue),
|
|
22
|
+
var(--font-hsl-saturation),
|
|
23
|
+
calc(var(--font-hsl-lightness) + 60%)
|
|
24
|
+
);
|
|
25
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// for alert message
|
|
2
2
|
.ac-notification {
|
|
3
|
-
background: #dee7f5;
|
|
3
|
+
background-color: #dee7f5;
|
|
4
4
|
font-size: $font-size-small;
|
|
5
5
|
color: $ac-primary;
|
|
6
6
|
min-height: 36px;
|
|
@@ -26,7 +26,12 @@
|
|
|
26
26
|
color: $ac-primary;
|
|
27
27
|
|
|
28
28
|
&:hover {
|
|
29
|
-
color:
|
|
29
|
+
color: hsla(
|
|
30
|
+
var(--hsl-hue),
|
|
31
|
+
var(--hsl-saturation),
|
|
32
|
+
calc(var(--hsl-lightness) - 10%),
|
|
33
|
+
1
|
|
34
|
+
);
|
|
30
35
|
}
|
|
31
36
|
}
|
|
32
37
|
}
|
|
@@ -47,7 +52,7 @@
|
|
|
47
52
|
|
|
48
53
|
// mixin for .ac-notification
|
|
49
54
|
@mixin acNotification($colorName) {
|
|
50
|
-
background: scale-color($color: $colorName, $lightness: 80%);
|
|
55
|
+
background-color: scale-color($color: $colorName, $lightness: 80%);
|
|
51
56
|
color: $ac-white;
|
|
52
57
|
border-color: $colorName;
|
|
53
58
|
|
|
@@ -64,10 +69,33 @@
|
|
|
64
69
|
}
|
|
65
70
|
}
|
|
66
71
|
}
|
|
72
|
+
@mixin acPrimaryNotification() {
|
|
73
|
+
background-color: hsla(
|
|
74
|
+
var(--hsl-hue),
|
|
75
|
+
var(--hsl-saturation),
|
|
76
|
+
var(--hsl-lightness),
|
|
77
|
+
0.2
|
|
78
|
+
);
|
|
79
|
+
color: $ac-white;
|
|
80
|
+
border-color: $ac-primary;
|
|
81
|
+
|
|
82
|
+
p {
|
|
83
|
+
color: $ac-primary;
|
|
84
|
+
|
|
85
|
+
a {
|
|
86
|
+
color: $ac-primary;
|
|
87
|
+
|
|
88
|
+
&:hover {
|
|
89
|
+
color: $ac-primary;
|
|
90
|
+
opacity: 0.8;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
67
95
|
|
|
68
96
|
// is-primary
|
|
69
97
|
.ac-notification.is-primary {
|
|
70
|
-
@include
|
|
98
|
+
@include acPrimaryNotification();
|
|
71
99
|
}
|
|
72
100
|
|
|
73
101
|
// is.info
|
|
@@ -106,7 +134,7 @@ AC Toast
|
|
|
106
134
|
margin-bottom: 10px;
|
|
107
135
|
|
|
108
136
|
* {
|
|
109
|
-
color:
|
|
137
|
+
color: $ac-white;
|
|
110
138
|
}
|
|
111
139
|
|
|
112
140
|
p {
|
|
@@ -123,16 +151,16 @@ AC Toast
|
|
|
123
151
|
padding: 0 15px;
|
|
124
152
|
|
|
125
153
|
&:hover {
|
|
126
|
-
color:
|
|
154
|
+
color: $ac-white-lighter;
|
|
127
155
|
}
|
|
128
156
|
}
|
|
129
157
|
|
|
130
158
|
button.close-button {
|
|
131
159
|
border-radius: 0px;
|
|
132
|
-
border-left: 1px solid
|
|
160
|
+
border-left: 1px solid $ac-white;
|
|
133
161
|
background-color: transparent;
|
|
134
162
|
border: none;
|
|
135
|
-
color:
|
|
163
|
+
color: $ac-white;
|
|
136
164
|
position: absolute;
|
|
137
165
|
right: 0;
|
|
138
166
|
top: 0;
|
|
@@ -141,13 +169,13 @@ AC Toast
|
|
|
141
169
|
width: 30px;
|
|
142
170
|
z-index: 1;
|
|
143
171
|
cursor: pointer;
|
|
144
|
-
border-left: 1px solid
|
|
172
|
+
border-left: 1px solid $ac-white;
|
|
145
173
|
}
|
|
146
174
|
}
|
|
147
175
|
|
|
148
176
|
// mixin for .ac-toast
|
|
149
177
|
@mixin acToast($colorName) {
|
|
150
|
-
background: $colorName;
|
|
178
|
+
background-color: $colorName;
|
|
151
179
|
color: $ac-white;
|
|
152
180
|
border-color: $colorName;
|
|
153
181
|
}
|
|
@@ -177,6 +205,13 @@ AC Toast
|
|
|
177
205
|
@include acToast($ac-warning);
|
|
178
206
|
}
|
|
179
207
|
|
|
208
|
+
// dark theme start
|
|
209
|
+
.is-dark-theme {
|
|
210
|
+
.ac-notification.is-error {
|
|
211
|
+
background-color: $dark-bg-light;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
// dark theme end
|
|
180
215
|
/****************************************
|
|
181
216
|
Responsive Classes
|
|
182
217
|
*****************************************/
|
package/components/_ac-card.scss
CHANGED
|
@@ -8,8 +8,14 @@
|
|
|
8
8
|
display: block;
|
|
9
9
|
padding: 20px;
|
|
10
10
|
border-radius: 4px;
|
|
11
|
+
border: 1px solid $ac-white-light;
|
|
11
12
|
overflow: hidden;
|
|
12
|
-
background-color:
|
|
13
|
+
background-color: hsla(
|
|
14
|
+
var(--hsl-hue),
|
|
15
|
+
var(--hsl-saturation),
|
|
16
|
+
var(--hsl-lightness),
|
|
17
|
+
0.03
|
|
18
|
+
);
|
|
13
19
|
transition: 0.3s ease-in-out;
|
|
14
20
|
|
|
15
21
|
&.is-selected {
|
|
@@ -36,7 +42,7 @@
|
|
|
36
42
|
.card-status {
|
|
37
43
|
position: absolute;
|
|
38
44
|
content: "";
|
|
39
|
-
background: #27ae60;
|
|
45
|
+
background-color: #27ae60;
|
|
40
46
|
border: 2px solid $ac-white;
|
|
41
47
|
box-sizing: border-box;
|
|
42
48
|
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
|
|
@@ -44,6 +50,7 @@
|
|
|
44
50
|
height: 10px;
|
|
45
51
|
border-radius: 50%;
|
|
46
52
|
right: 0;
|
|
53
|
+
top: 5px;
|
|
47
54
|
}
|
|
48
55
|
}
|
|
49
56
|
|
|
@@ -70,7 +77,7 @@
|
|
|
70
77
|
}
|
|
71
78
|
|
|
72
79
|
&.style-three {
|
|
73
|
-
background-color: $ac-
|
|
80
|
+
background-color: $ac-blue-light;
|
|
74
81
|
width: 190px;
|
|
75
82
|
margin-bottom: 20px;
|
|
76
83
|
margin-right: 20px;
|
|
@@ -92,7 +99,7 @@
|
|
|
92
99
|
.ac-card-name {
|
|
93
100
|
p {
|
|
94
101
|
font-size: $font-size-small;
|
|
95
|
-
color: $ac-
|
|
102
|
+
color: $ac-color-text;
|
|
96
103
|
line-height: 1;
|
|
97
104
|
|
|
98
105
|
&.free {
|
|
@@ -112,7 +119,7 @@
|
|
|
112
119
|
justify-content: space-between;
|
|
113
120
|
align-items: center;
|
|
114
121
|
box-shadow: none;
|
|
115
|
-
background: transparent;
|
|
122
|
+
background-color: transparent;
|
|
116
123
|
margin-bottom: 60px;
|
|
117
124
|
|
|
118
125
|
h3 {
|
|
@@ -129,7 +136,7 @@
|
|
|
129
136
|
font-size: 36px;
|
|
130
137
|
line-height: 1;
|
|
131
138
|
font-weight: 600;
|
|
132
|
-
color:
|
|
139
|
+
color: $ac-color-heading;
|
|
133
140
|
display: inline-block;
|
|
134
141
|
position: relative;
|
|
135
142
|
z-index: 1;
|
|
@@ -166,7 +173,7 @@
|
|
|
166
173
|
}
|
|
167
174
|
|
|
168
175
|
&:hover {
|
|
169
|
-
|
|
176
|
+
border: 1px solid $ac-primary;
|
|
170
177
|
|
|
171
178
|
.ac-card-title {
|
|
172
179
|
h4 {
|
|
@@ -201,14 +208,14 @@
|
|
|
201
208
|
|
|
202
209
|
p {
|
|
203
210
|
font-size: $font-size-small;
|
|
204
|
-
color: $ac-
|
|
211
|
+
color: $ac-gray-lightest;
|
|
205
212
|
}
|
|
206
213
|
}
|
|
207
214
|
}
|
|
208
215
|
|
|
209
216
|
.ac-card-body {
|
|
210
217
|
p {
|
|
211
|
-
color: $ac-
|
|
218
|
+
color: $ac-gray-dark;
|
|
212
219
|
font-size: $font-size-small;
|
|
213
220
|
line-height: 140%;
|
|
214
221
|
}
|
|
@@ -222,7 +229,7 @@
|
|
|
222
229
|
.card-status {
|
|
223
230
|
position: absolute;
|
|
224
231
|
content: "";
|
|
225
|
-
background: #27ae60;
|
|
232
|
+
background-color: #27ae60;
|
|
226
233
|
border: 2px solid $ac-white;
|
|
227
234
|
box-sizing: border-box;
|
|
228
235
|
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
|
|
@@ -230,13 +237,14 @@
|
|
|
230
237
|
height: 10px;
|
|
231
238
|
border-radius: 50%;
|
|
232
239
|
right: 0;
|
|
240
|
+
top: 5px;
|
|
233
241
|
}
|
|
234
242
|
}
|
|
235
243
|
|
|
236
244
|
// offer card scss start
|
|
237
245
|
.pricing-card-wrpper {
|
|
238
246
|
&.offer-card {
|
|
239
|
-
background:
|
|
247
|
+
background-color: $ac-white-lighter;
|
|
240
248
|
border: 1px solid $ac-white-light;
|
|
241
249
|
border-radius: 4px;
|
|
242
250
|
display: flex;
|
|
@@ -245,7 +253,7 @@
|
|
|
245
253
|
|
|
246
254
|
&:after {
|
|
247
255
|
@include absulate-shape($ac-primary, 100%, 4px);
|
|
248
|
-
background
|
|
256
|
+
background: linear-gradient(90deg, #f99a00 0%, #3f19ad 98.84%);
|
|
249
257
|
}
|
|
250
258
|
|
|
251
259
|
.offer-highlight {
|
|
@@ -342,12 +350,12 @@
|
|
|
342
350
|
|
|
343
351
|
a.inline-button {
|
|
344
352
|
font-size: 12px;
|
|
345
|
-
color: $ac-
|
|
353
|
+
color: $ac-color-text;
|
|
346
354
|
text-decoration: underline;
|
|
347
355
|
}
|
|
348
356
|
|
|
349
357
|
span {
|
|
350
|
-
color: $ac-
|
|
358
|
+
color: $ac-color-text;
|
|
351
359
|
font-size: 12px;
|
|
352
360
|
font-weight: 600;
|
|
353
361
|
}
|
|
@@ -355,7 +363,7 @@
|
|
|
355
363
|
p {
|
|
356
364
|
font-weight: 500;
|
|
357
365
|
font-size: $font-size-small;
|
|
358
|
-
color: $ac-
|
|
366
|
+
color: $ac-color-text;
|
|
359
367
|
|
|
360
368
|
span {
|
|
361
369
|
font-size: 12px;
|
|
@@ -374,7 +382,7 @@
|
|
|
374
382
|
letter-spacing: 0;
|
|
375
383
|
font-size: 12px;
|
|
376
384
|
border: none;
|
|
377
|
-
background: #f99a00;
|
|
385
|
+
background-color: #f99a00;
|
|
378
386
|
/* Old browsers */
|
|
379
387
|
background: -moz-linear-gradient(left, #f99a00 0%, #3f19ad 100%);
|
|
380
388
|
/* FF3.6-15 */
|
|
@@ -407,7 +415,7 @@
|
|
|
407
415
|
}
|
|
408
416
|
|
|
409
417
|
&.style-three {
|
|
410
|
-
background:
|
|
418
|
+
background-color: $ac-white-lighter;
|
|
411
419
|
width: 183px;
|
|
412
420
|
padding: 15px 15px 20px;
|
|
413
421
|
height: 115px;
|
|
@@ -431,7 +439,7 @@
|
|
|
431
439
|
font-size: 12px;
|
|
432
440
|
line-height: 14px;
|
|
433
441
|
text-align: center;
|
|
434
|
-
color: $ac-
|
|
442
|
+
color: $ac-color-text;
|
|
435
443
|
}
|
|
436
444
|
}
|
|
437
445
|
}
|
|
@@ -482,7 +490,7 @@
|
|
|
482
490
|
font-weight: 500;
|
|
483
491
|
font-size: $font-size-small;
|
|
484
492
|
line-height: 16px;
|
|
485
|
-
color: $ac-
|
|
493
|
+
color: $ac-color-text;
|
|
486
494
|
margin-bottom: 10px;
|
|
487
495
|
}
|
|
488
496
|
}
|
|
@@ -506,7 +514,33 @@
|
|
|
506
514
|
}
|
|
507
515
|
|
|
508
516
|
// features card end
|
|
517
|
+
// dark theme start
|
|
518
|
+
.is-dark-theme {
|
|
519
|
+
.ac-single-card {
|
|
520
|
+
background-color: var(--dark-bg-light);
|
|
509
521
|
|
|
522
|
+
&.style-three {
|
|
523
|
+
background-color: var(--dark-bg-light);
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
.ac-card-body {
|
|
527
|
+
p {
|
|
528
|
+
color: $ac-label-text;
|
|
529
|
+
}
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.pricing-card-wrpper {
|
|
534
|
+
&.offer-card {
|
|
535
|
+
background-color: var(--dark-bg-light);
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
.ac-card {
|
|
539
|
+
background-color: var(--dark-bg-light);
|
|
540
|
+
}
|
|
541
|
+
}
|
|
542
|
+
}
|
|
543
|
+
// dark theme end
|
|
510
544
|
/****************************************
|
|
511
545
|
Responsive Classes
|
|
512
546
|
*****************************************/
|
|
@@ -540,6 +574,7 @@ Responsive Classes
|
|
|
540
574
|
}
|
|
541
575
|
}
|
|
542
576
|
}
|
|
577
|
+
|
|
543
578
|
.ac-single-card {
|
|
544
579
|
&.card-counter {
|
|
545
580
|
.card-header {
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
.ac-code-highlight {
|
|
2
2
|
pre {
|
|
3
3
|
font-size: $font-size-small;
|
|
4
|
+
color: $ac-color-text;
|
|
5
|
+
background-color: $ac-white-lighter;
|
|
4
6
|
}
|
|
5
7
|
&.is-dark {
|
|
6
8
|
pre {
|
|
@@ -9,6 +11,10 @@
|
|
|
9
11
|
}
|
|
10
12
|
}
|
|
11
13
|
}
|
|
14
|
+
code[class*="language-"],
|
|
15
|
+
pre[class*="language-"] {
|
|
16
|
+
font-size: 14px !important;
|
|
17
|
+
}
|
|
12
18
|
|
|
13
19
|
.editor-writable {
|
|
14
20
|
width: 100%;
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
.ac-content-layout {
|
|
2
|
-
background: transparent;
|
|
2
|
+
background-color: transparent;
|
|
3
3
|
padding: 0;
|
|
4
4
|
border-radius: 0;
|
|
5
5
|
height: 100%;
|
|
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: $
|
|
15
|
+
background-color: $ac-blue-light;
|
|
16
16
|
|
|
17
17
|
&.is-bg-white {
|
|
18
18
|
.ac-cheader-left {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
&.is-dark {
|
|
39
|
-
background-color: $ac-
|
|
39
|
+
background-color: $ac-color-heading;
|
|
40
40
|
|
|
41
41
|
.ac-content-header {
|
|
42
42
|
&.drag-n-drop {
|