@appscode/design-system 1.0.3-alpha.7 → 1.0.43-alpha.100
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 +298 -23
- 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 +23 -7
- package/base/utilities/dark-theme.scss +25 -0
- package/components/_ac-accordion.scss +1 -0
- package/components/_ac-alert-box.scss +47 -11
- package/components/_ac-card.scss +55 -20
- package/components/_ac-code-highlight.scss +7 -1
- package/components/_ac-content-layout.scss +4 -4
- package/components/_ac-drag.scss +6 -6
- package/components/_ac-input.scss +140 -38
- package/components/_ac-modal.scss +5 -4
- package/components/_ac-multi-select.scss +220 -18
- package/components/_ac-options.scss +31 -16
- package/components/_ac-select-box.scss +15 -5
- package/components/_ac-table.scss +88 -47
- package/components/_ac-tabs.scss +72 -23
- package/components/_ac-tags.scss +2 -2
- package/components/_ac-terminal.scss +272 -0
- package/components/_app-drawer.scss +6 -6
- package/components/_breadcumb.scss +8 -3
- package/components/_buttons.scss +86 -33
- package/components/_card-body-wrapper.scss +3 -3
- package/components/_dashboard-header.scss +1 -1
- 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 +6 -4
- package/components/_left-sidebar-menu.scss +206 -46
- package/components/_monaco-editor.scss +1 -1
- package/components/_navbar.scss +104 -27
- 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/_preloader.scss +1 -1
- 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 +18 -10
- 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 +97 -90
- package/components/ui-builder/_ui-builder.scss +31 -12
- package/components/ui-builder/_vue-open-api.scss +98 -0
- package/layouts/_404.scss +159 -0
- package/layouts/_code-preview.scss +14 -6
- package/main.scss +4 -0
- package/package.json +2 -7
- package/plugins/theme.js +142 -0
- package/plugins/vue-toaster.js +7 -6
- package/vue-components/v2/card/CardContent.vue +5 -0
- package/vue-components/v2/card/CardHeader.vue +12 -0
- package/vue-components/v2/card/OverviewCard.vue +10 -0
- package/vue-components/v2/card/OverviewCards.vue +5 -0
- package/vue-components/v2/card/PaymentCards.vue +16 -10
- package/vue-components/v2/content/ContentHeader.vue +1 -1
- package/vue-components/v2/editor/Editor.vue +37 -17
- package/vue-components/v2/header/Header.vue +0 -1
- package/vue-components/v2/modal/Modal.vue +32 -14
- package/vue-components/v2/modals/JsonShowModal.vue +0 -1
- package/vue-components/v2/navbar/Appdrawer.vue +9 -6
- package/vue-components/v2/navbar/ThemeMode.vue +120 -0
- package/vue-components/v2/pagination/Pagination.vue +8 -1
- 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 +24 -2
- package/vue-components/v2/table/InfoTable.vue +13 -3
- package/vue-components/v2/table/Table.vue +75 -5
- package/vue-components/v2/table/TableRow.vue +17 -8
- package/vue-components/v2/table/table-cell/CellValue.vue +10 -1
- package/vue-components/v2/tabs/EditorTabs.vue +1 -1
- package/vue-components/v3/button/Button.vue +73 -0
- package/vue-components/v3/content/ContentHeader.vue +54 -0
- package/vue-components/v3/content/ContentTable.vue +65 -0
- package/vue-components/v3/dropdown/DropdownDivider.vue +3 -0
- package/vue-components/v3/dropdown/DropdownItem.vue +5 -0
- package/vue-components/v3/dropdown/DropdownMenu.vue +111 -0
- package/vue-components/v3/editor/Editor.vue +157 -0
- package/vue-components/v3/form-fields/Input.vue +21 -0
- package/vue-components/v3/header/Header.vue +45 -0
- package/vue-components/v3/modal/Modal.vue +135 -0
- package/vue-components/v3/modals/JsonShowModal.vue +87 -0
- package/vue-components/v3/navbar/Appdrawer.vue +63 -0
- package/vue-components/v3/navbar/ThemeMode.vue +128 -0
- package/vue-components/v3/navbar/User.vue +64 -0
- package/vue-components/v3/pagination/Pagination.vue +159 -0
- package/vue-components/v3/searchbars/SearchBar.vue +47 -0
- package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
- package/vue-components/v3/tab/TabItem.vue +17 -0
- package/vue-components/v3/table/FakeTableCell.vue +39 -0
- package/vue-components/v3/table/InfoTable.vue +105 -0
- package/vue-components/v3/table/Table.vue +238 -0
- package/vue-components/v3/table/TableCell.vue +28 -0
- package/vue-components/v3/table/TableRow.vue +60 -0
- package/vue-components/v3/table/table-cell/ArrayCell.vue +111 -0
- package/vue-components/v3/table/table-cell/CellValue.vue +117 -0
- package/vue-components/v3/table/table-cell/ObjectCell.vue +105 -0
- package/vue-components/v3/table/table-cell/ValueWithModal.vue +43 -0
- package/vue-components/v3/tabs/EditorTabs.vue +36 -0
- package/vue-components/v3/tag/Tag.vue +17 -0
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
// terminal scss start
|
|
2
|
+
.ac-terminal {
|
|
3
|
+
bottom: 0px;
|
|
4
|
+
height: 300px;
|
|
5
|
+
width: 100%;
|
|
6
|
+
|
|
7
|
+
.terminal-body {
|
|
8
|
+
font-family: "Inconsolata", monospace;
|
|
9
|
+
background-color: var(--dark-bg-light);
|
|
10
|
+
height: 100%;
|
|
11
|
+
color: $ac-white;
|
|
12
|
+
|
|
13
|
+
strong {
|
|
14
|
+
color: $ac-white;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.ac-terminal {
|
|
20
|
+
border-top: 1px solid var(--ac-white-light);
|
|
21
|
+
padding: 0;
|
|
22
|
+
position: fixed;
|
|
23
|
+
width: calc(100% - 270px);
|
|
24
|
+
bottom: 0;
|
|
25
|
+
background-color: $ac-white;
|
|
26
|
+
color: $ac-white;
|
|
27
|
+
font-size: 13px;
|
|
28
|
+
height: 320px;
|
|
29
|
+
z-index: 999;
|
|
30
|
+
transition: 0.3s ease-in-out;
|
|
31
|
+
&.is-collapsed {
|
|
32
|
+
height: 40px !important;
|
|
33
|
+
bottom: 0px;
|
|
34
|
+
.terminal-setting,
|
|
35
|
+
.terminal-body {
|
|
36
|
+
opacity: 0;
|
|
37
|
+
visibility: hidden;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
.resize-handler {
|
|
41
|
+
width: 100%;
|
|
42
|
+
position: absolute;
|
|
43
|
+
background: transparent;
|
|
44
|
+
z-index: 9;
|
|
45
|
+
cursor: row-resize;
|
|
46
|
+
top: -15px;
|
|
47
|
+
&:hover {
|
|
48
|
+
border-bottom: 3px solid $ac-white-light;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
.terminal-header {
|
|
52
|
+
border-top: 1px solid $ac-white-lighter;
|
|
53
|
+
box-shadow: 1px -2px 5px 1px rgba(0, 0, 0, 0.08%);
|
|
54
|
+
.tabs {
|
|
55
|
+
padding: 0 20px 0 20px;
|
|
56
|
+
background-color: $ac-white-lighter;
|
|
57
|
+
overflow: inherit;
|
|
58
|
+
height: 40px;
|
|
59
|
+
ul {
|
|
60
|
+
border-bottom: none;
|
|
61
|
+
padding-left: 0;
|
|
62
|
+
max-width: 1340px;
|
|
63
|
+
overflow-x: auto;
|
|
64
|
+
overflow-y: hidden;
|
|
65
|
+
li {
|
|
66
|
+
a {
|
|
67
|
+
margin-bottom: 0 !important;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
&::-webkit-scrollbar {
|
|
71
|
+
border-radius: 50px;
|
|
72
|
+
height: 3px;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
&::-webkit-scrollbar:hover {
|
|
76
|
+
height: 7px;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
&::-webkit-scrollbar-thumb {
|
|
80
|
+
background-color: $ac-gray-light;
|
|
81
|
+
border-radius: 50px;
|
|
82
|
+
height: 2px !important;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
&::-webkit-scrollbar-thumb:hover {
|
|
86
|
+
background-color: $ac-gray-light;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
&:hover::-webkit-scrollbar-corner {
|
|
90
|
+
height: 40px;
|
|
91
|
+
}
|
|
92
|
+
.is-active {
|
|
93
|
+
box-shadow: none !important;
|
|
94
|
+
margin-right: 0 !important;
|
|
95
|
+
&:after {
|
|
96
|
+
height: 2px;
|
|
97
|
+
}
|
|
98
|
+
a {
|
|
99
|
+
background-color: $ac-white;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
li:not(.is-active) {
|
|
103
|
+
margin-right: -1px;
|
|
104
|
+
border-right: 1px solid $ac-white-lighter;
|
|
105
|
+
}
|
|
106
|
+
li {
|
|
107
|
+
a {
|
|
108
|
+
margin-bottom: 0px;
|
|
109
|
+
font-size: 13px;
|
|
110
|
+
border-radius: 0;
|
|
111
|
+
padding: 5px 10px 5px 20px;
|
|
112
|
+
border: none;
|
|
113
|
+
height: 40px;
|
|
114
|
+
.name-of-tab {
|
|
115
|
+
width: 120px;
|
|
116
|
+
overflow: hidden;
|
|
117
|
+
}
|
|
118
|
+
.terminal-icon {
|
|
119
|
+
img {
|
|
120
|
+
width: 15px;
|
|
121
|
+
margin-right: 10px;
|
|
122
|
+
margin-top: 5px;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.button {
|
|
127
|
+
img {
|
|
128
|
+
width: 10px;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
.options-items {
|
|
135
|
+
top: 15px;
|
|
136
|
+
left: 40px;
|
|
137
|
+
.items-inner {
|
|
138
|
+
border: none;
|
|
139
|
+
li {
|
|
140
|
+
border: none;
|
|
141
|
+
border-right: none !important;
|
|
142
|
+
border-bottom: 1px solid $ac-white-lighter;
|
|
143
|
+
width: 100%;
|
|
144
|
+
&:last-child {
|
|
145
|
+
border-bottom: none;
|
|
146
|
+
}
|
|
147
|
+
a {
|
|
148
|
+
font-size: 13px;
|
|
149
|
+
padding: 10px 20px;
|
|
150
|
+
&:hover {
|
|
151
|
+
color: $ac-primary !important;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.right-control {
|
|
159
|
+
.button {
|
|
160
|
+
.fa {
|
|
161
|
+
font-size: 20px;
|
|
162
|
+
}
|
|
163
|
+
img {
|
|
164
|
+
width: 11px;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
.terminal-setting {
|
|
171
|
+
background-color: var(--dark-bg);
|
|
172
|
+
padding: 5px 20px;
|
|
173
|
+
|
|
174
|
+
.left-content {
|
|
175
|
+
.ac-select-box-wrapper {
|
|
176
|
+
margin-right: 10px;
|
|
177
|
+
.multi-select-wrapper {
|
|
178
|
+
min-width: 200px;
|
|
179
|
+
}
|
|
180
|
+
.multiselect .multiselect__tags .multiselect__input,
|
|
181
|
+
.multiselect .multiselect__tags .multiselect__single {
|
|
182
|
+
background-color: #3b3030;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.right-content {
|
|
188
|
+
.status-message {
|
|
189
|
+
background-color: #666666 !important;
|
|
190
|
+
text-align: center;
|
|
191
|
+
padding: 4px 20px;
|
|
192
|
+
border-radius: 4px;
|
|
193
|
+
color: #ffffff !important;
|
|
194
|
+
text-transform: uppercase;
|
|
195
|
+
&.is-success {
|
|
196
|
+
background-color: #27b064 !important;
|
|
197
|
+
}
|
|
198
|
+
&.is-danger {
|
|
199
|
+
background-color: $ac-red !important;
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
.terminal-body {
|
|
205
|
+
p {
|
|
206
|
+
font-family: Fira Code;
|
|
207
|
+
.code-static {
|
|
208
|
+
color: #0ff05c;
|
|
209
|
+
font-weight: 500;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.code-input {
|
|
213
|
+
color: #acd9ff;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
.button {
|
|
218
|
+
&.is-transparent {
|
|
219
|
+
&:hover {
|
|
220
|
+
background-color: $ac-white-light;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
.multiselect.multiselect--active {
|
|
225
|
+
.multiselect__tags {
|
|
226
|
+
border: 1px solid $ac-white !important;
|
|
227
|
+
.multiselect__input {
|
|
228
|
+
color: $ac-white !important;
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
.multiselect .multiselect__tags {
|
|
233
|
+
background-color: $ac-color-text;
|
|
234
|
+
border: 1px solid $ac-color-value;
|
|
235
|
+
span {
|
|
236
|
+
color: $ac-white;
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
// dark theme start
|
|
242
|
+
.is-dark-theme {
|
|
243
|
+
// ac-terminal
|
|
244
|
+
.ac-terminal {
|
|
245
|
+
.terminal-setting {
|
|
246
|
+
--ac-color-value: var(--dark-bg-light);
|
|
247
|
+
|
|
248
|
+
.left-content .ac-select-box-wrapper .multiselect .multiselect__tags {
|
|
249
|
+
.multiselect__input {
|
|
250
|
+
background-color: var(--dark-bg-light);
|
|
251
|
+
color: var(--ac-white-text);
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.multiselect__single {
|
|
255
|
+
background-color: var(--dark-bg-light);
|
|
256
|
+
color: var(--ac-white-text);
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.multiselect {
|
|
262
|
+
.multiselect__tags {
|
|
263
|
+
background-color: transparent;
|
|
264
|
+
|
|
265
|
+
span {
|
|
266
|
+
color: var(--ac-white-text);
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
// dark theme end
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
user-select: none;
|
|
10
10
|
|
|
11
11
|
&:hover {
|
|
12
|
-
background-color:
|
|
12
|
+
background-color: rgba(255, 255, 255, 0.7);
|
|
13
13
|
cursor: pointer;
|
|
14
14
|
}
|
|
15
15
|
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
font-size: 13px;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
background: #edf0f5;
|
|
32
|
+
background-color: #edf0f5;
|
|
33
33
|
box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.16);
|
|
34
34
|
min-width: 280px;
|
|
35
35
|
}
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
.media-content {
|
|
51
51
|
.content {
|
|
52
52
|
p {
|
|
53
|
-
color:
|
|
53
|
+
color: $ac-white;
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
}
|
|
@@ -93,14 +93,14 @@
|
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
&:hover {
|
|
96
|
-
>a {
|
|
96
|
+
> a {
|
|
97
97
|
background-color: $ac-white;
|
|
98
98
|
}
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
&:first-child {
|
|
102
102
|
&:hover {
|
|
103
|
-
>a {
|
|
103
|
+
> a {
|
|
104
104
|
border-radius: 4px 4px 0 0;
|
|
105
105
|
}
|
|
106
106
|
}
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
|
|
109
109
|
&:last-child {
|
|
110
110
|
&:hover {
|
|
111
|
-
>a {
|
|
111
|
+
> a {
|
|
112
112
|
border-radius: 0 0 4px 4px;
|
|
113
113
|
}
|
|
114
114
|
}
|
|
@@ -5,15 +5,20 @@
|
|
|
5
5
|
position: sticky;
|
|
6
6
|
top: 50px;
|
|
7
7
|
height: 50px;
|
|
8
|
-
background: $ac-white;
|
|
9
|
-
z-index:
|
|
8
|
+
background-color: $ac-white;
|
|
9
|
+
z-index: 998;
|
|
10
|
+
display: flex;
|
|
11
|
+
align-items: center;
|
|
10
12
|
}
|
|
11
13
|
|
|
12
14
|
.breadcrumb {
|
|
13
15
|
a {
|
|
14
|
-
color:
|
|
16
|
+
color: $ac-color-value;
|
|
15
17
|
font-size: 13px;
|
|
16
18
|
padding: 0px 3px;
|
|
19
|
+
&:hover {
|
|
20
|
+
color: $ac-color-text;
|
|
21
|
+
}
|
|
17
22
|
}
|
|
18
23
|
|
|
19
24
|
li.is-active {
|
package/components/_buttons.scss
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
.button {
|
|
2
|
-
transition:
|
|
2
|
+
transition: 86ms ease-in-out;
|
|
3
3
|
|
|
4
4
|
// ac-button
|
|
5
5
|
&.ac-button {
|
|
6
6
|
border-color: $ac-primary;
|
|
7
|
-
border-radius:
|
|
7
|
+
border-radius: 4px;
|
|
8
8
|
font-size: 14px;
|
|
9
9
|
font-family: $ac-family-paragraph;
|
|
10
10
|
letter-spacing: 0.2px;
|
|
11
11
|
color: $ac-primary;
|
|
12
|
-
font-weight:
|
|
12
|
+
font-weight: 500;
|
|
13
13
|
height: 36px;
|
|
14
14
|
padding-left: 25px;
|
|
15
15
|
padding-right: 25px;
|
|
@@ -19,8 +19,18 @@
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
&:hover {
|
|
22
|
-
border-color:
|
|
23
|
-
|
|
22
|
+
border-color: hsla(
|
|
23
|
+
var(--hsl-hue),
|
|
24
|
+
var(--hsl-saturation),
|
|
25
|
+
calc(var(--hsl-lightness) - 9%),
|
|
26
|
+
1
|
|
27
|
+
);
|
|
28
|
+
color: hsla(
|
|
29
|
+
var(--hsl-hue),
|
|
30
|
+
var(--hsl-saturation),
|
|
31
|
+
calc(var(--hsl-lightness) - 9%),
|
|
32
|
+
1
|
|
33
|
+
);
|
|
24
34
|
}
|
|
25
35
|
|
|
26
36
|
&.underline-button {
|
|
@@ -32,7 +42,7 @@
|
|
|
32
42
|
|
|
33
43
|
&.is-primary {
|
|
34
44
|
color: $ac-primary;
|
|
35
|
-
background: transparent;
|
|
45
|
+
background-color: transparent;
|
|
36
46
|
|
|
37
47
|
&:hover {
|
|
38
48
|
background-color: unset;
|
|
@@ -46,7 +56,7 @@
|
|
|
46
56
|
|
|
47
57
|
.ac-icon {
|
|
48
58
|
margin-left: 25px;
|
|
49
|
-
background: $ac-white;
|
|
59
|
+
background-color: $ac-white;
|
|
50
60
|
color: $ac-primary;
|
|
51
61
|
padding: 2px 6px;
|
|
52
62
|
border-radius: 4px;
|
|
@@ -117,10 +127,14 @@
|
|
|
117
127
|
width: 52px;
|
|
118
128
|
height: 52px;
|
|
119
129
|
padding: 0;
|
|
120
|
-
|
|
130
|
+
&:hover{
|
|
131
|
+
svg{
|
|
132
|
+
color: $ac-white;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
121
135
|
&.is-gray {
|
|
122
136
|
background-color: $ac-white-light;
|
|
123
|
-
color:
|
|
137
|
+
color: $ac-gray-lightest;
|
|
124
138
|
border-color: transparent;
|
|
125
139
|
|
|
126
140
|
img {
|
|
@@ -129,37 +143,37 @@
|
|
|
129
143
|
|
|
130
144
|
i.fa {
|
|
131
145
|
font-size: 18px;
|
|
132
|
-
color:
|
|
146
|
+
color: $ac-gray-lightest;
|
|
133
147
|
}
|
|
134
148
|
|
|
135
149
|
&:hover {
|
|
136
|
-
background-color: $ac-
|
|
150
|
+
background-color: $ac-gray-lightest;
|
|
137
151
|
}
|
|
138
152
|
}
|
|
139
153
|
|
|
140
154
|
&.is-outlined-gray {
|
|
141
|
-
border: 1px solid
|
|
155
|
+
border: 1px solid $ac-white-light;
|
|
142
156
|
font-size: 15px;
|
|
143
157
|
}
|
|
144
158
|
|
|
145
159
|
&.is-transparent {
|
|
146
160
|
background-color: transparent;
|
|
147
|
-
color:
|
|
161
|
+
color: $ac-gray-darker;
|
|
148
162
|
|
|
149
163
|
&:hover {
|
|
150
|
-
background-color:
|
|
151
|
-
color:
|
|
164
|
+
background-color: $ac-white-lighter;
|
|
165
|
+
color: $ac-black;
|
|
152
166
|
}
|
|
153
167
|
|
|
154
168
|
&:focus {
|
|
155
|
-
background-color:
|
|
156
|
-
color:
|
|
169
|
+
background-color: $ac-white-lighter;
|
|
170
|
+
color: $ac-black;
|
|
157
171
|
}
|
|
158
172
|
}
|
|
159
173
|
|
|
160
174
|
&.transparent-bg {
|
|
161
175
|
background-color: transparent;
|
|
162
|
-
border: 1px solid $ac-
|
|
176
|
+
border: 1px solid $ac-label-text;
|
|
163
177
|
|
|
164
178
|
img {
|
|
165
179
|
&:hover {
|
|
@@ -200,7 +214,8 @@
|
|
|
200
214
|
border: none;
|
|
201
215
|
font-size: 14px;
|
|
202
216
|
font-weight: 500;
|
|
203
|
-
color:
|
|
217
|
+
background-color: transparent;
|
|
218
|
+
color: $ac-gray-lightest;
|
|
204
219
|
|
|
205
220
|
&.is-primary {
|
|
206
221
|
background-color: transparent;
|
|
@@ -243,7 +258,7 @@
|
|
|
243
258
|
border: none;
|
|
244
259
|
|
|
245
260
|
&:hover {
|
|
246
|
-
background-color: darken(
|
|
261
|
+
background-color: darken(#e7e7e7, 9);
|
|
247
262
|
}
|
|
248
263
|
}
|
|
249
264
|
|
|
@@ -253,7 +268,7 @@
|
|
|
253
268
|
color: $ac-white;
|
|
254
269
|
|
|
255
270
|
&:hover {
|
|
256
|
-
background-color:
|
|
271
|
+
background-color: $ac-color-value;
|
|
257
272
|
}
|
|
258
273
|
}
|
|
259
274
|
|
|
@@ -263,7 +278,7 @@
|
|
|
263
278
|
color: $ac-white;
|
|
264
279
|
|
|
265
280
|
&:hover {
|
|
266
|
-
background-color:
|
|
281
|
+
background-color: hsla(0, 0, calc(var(--hsl-lightness) - 9%), 1);
|
|
267
282
|
}
|
|
268
283
|
}
|
|
269
284
|
|
|
@@ -274,13 +289,23 @@
|
|
|
274
289
|
&:hover {
|
|
275
290
|
box-shadow: none;
|
|
276
291
|
box-shadow: none;
|
|
277
|
-
color:
|
|
292
|
+
color: hsla(
|
|
293
|
+
var(--hsl-hue),
|
|
294
|
+
var(--hsl-saturation),
|
|
295
|
+
calc(var(--hsl-lightness) - 10%),
|
|
296
|
+
1
|
|
297
|
+
);
|
|
278
298
|
}
|
|
279
299
|
|
|
280
300
|
&:focus {
|
|
281
301
|
box-shadow: none;
|
|
282
302
|
box-shadow: none;
|
|
283
|
-
color:
|
|
303
|
+
color: hsla(
|
|
304
|
+
var(--hsl-hue),
|
|
305
|
+
var(--hsl-saturation),
|
|
306
|
+
calc(var(--hsl-lightness) - 10%),
|
|
307
|
+
1
|
|
308
|
+
);
|
|
284
309
|
}
|
|
285
310
|
}
|
|
286
311
|
|
|
@@ -450,8 +475,8 @@
|
|
|
450
475
|
|
|
451
476
|
// counter button start
|
|
452
477
|
.ac-counter-button {
|
|
453
|
-
background:
|
|
454
|
-
border: 1px solid $ac-
|
|
478
|
+
background-color: transparent;
|
|
479
|
+
border: 1px solid $ac-label-text;
|
|
455
480
|
border-radius: 4px;
|
|
456
481
|
height: 46px;
|
|
457
482
|
overflow: hidden;
|
|
@@ -471,7 +496,8 @@
|
|
|
471
496
|
padding: 10px;
|
|
472
497
|
font-size: 15px;
|
|
473
498
|
font-weight: 500;
|
|
474
|
-
|
|
499
|
+
color: $ac-color-value;
|
|
500
|
+
background-color: transparent;
|
|
475
501
|
width: 100%;
|
|
476
502
|
-moz-appearance: textfield;
|
|
477
503
|
|
|
@@ -497,13 +523,13 @@
|
|
|
497
523
|
.ac-counter-arrow-wrapper {
|
|
498
524
|
height: 100%;
|
|
499
525
|
color: $ac-color-text;
|
|
500
|
-
border-left: 1px solid $ac-
|
|
526
|
+
border-left: 1px solid $ac-label-text;
|
|
501
527
|
|
|
502
528
|
.ac-counter-arrow {
|
|
503
|
-
background: transparent;
|
|
529
|
+
background-color: transparent;
|
|
504
530
|
border: none;
|
|
505
531
|
cursor: pointer;
|
|
506
|
-
color: $ac-
|
|
532
|
+
color: $ac-label-text;
|
|
507
533
|
height: 23px;
|
|
508
534
|
|
|
509
535
|
&:hover {
|
|
@@ -511,7 +537,7 @@
|
|
|
511
537
|
}
|
|
512
538
|
|
|
513
539
|
&:first-child {
|
|
514
|
-
border-bottom: 1px solid $ac-
|
|
540
|
+
border-bottom: 1px solid $ac-label-text;
|
|
515
541
|
}
|
|
516
542
|
}
|
|
517
543
|
}
|
|
@@ -538,7 +564,7 @@
|
|
|
538
564
|
}
|
|
539
565
|
|
|
540
566
|
.up-down-button {
|
|
541
|
-
background: $ac-white-light;
|
|
567
|
+
background-color: $ac-white-light;
|
|
542
568
|
border: none;
|
|
543
569
|
display: block;
|
|
544
570
|
cursor: pointer;
|
|
@@ -570,7 +596,7 @@
|
|
|
570
596
|
width: 5px;
|
|
571
597
|
height: 5px;
|
|
572
598
|
border-radius: 50%;
|
|
573
|
-
background:
|
|
599
|
+
background-color: $ac-color-value;
|
|
574
600
|
margin-bottom: 3px;
|
|
575
601
|
|
|
576
602
|
&:last-child {
|
|
@@ -580,6 +606,33 @@
|
|
|
580
606
|
}
|
|
581
607
|
}
|
|
582
608
|
|
|
609
|
+
// dark theme start
|
|
610
|
+
.is-dark-theme {
|
|
611
|
+
.button.ac-button.is-primary.is-light {
|
|
612
|
+
background-color: $ac-primary;
|
|
613
|
+
color: $ac-white;
|
|
614
|
+
&:hover {
|
|
615
|
+
opacity: 0.8;
|
|
616
|
+
}
|
|
617
|
+
}
|
|
618
|
+
.button.ac-button.is-danger.is-light {
|
|
619
|
+
background-color: $ac-danger;
|
|
620
|
+
color: $ac-white;
|
|
621
|
+
&:hover {
|
|
622
|
+
opacity: 0.8;
|
|
623
|
+
}
|
|
624
|
+
}
|
|
625
|
+
.button.ac-button {
|
|
626
|
+
--ac-white: #ffffff;
|
|
627
|
+
&.is-white {
|
|
628
|
+
--ac-white: #2e323c;
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
.button.ac-button.is-text{
|
|
632
|
+
background-color: transparent;
|
|
633
|
+
}
|
|
634
|
+
}
|
|
635
|
+
// dark theme end
|
|
583
636
|
/****************************************
|
|
584
637
|
Responsive Classes
|
|
585
638
|
*****************************************/
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
.card-body-wrapper {
|
|
2
|
-
background: $ac-white;
|
|
2
|
+
background-color: $ac-white;
|
|
3
3
|
border-radius: 4px;
|
|
4
4
|
box-shadow: none;
|
|
5
5
|
|
|
6
6
|
.card-header {
|
|
7
|
-
background: $
|
|
7
|
+
background-color: $ac-blue-light;
|
|
8
8
|
border-radius: 4px 4px 0px 0px;
|
|
9
9
|
padding: 10px 20px;
|
|
10
10
|
box-shadow: none;
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
font-weight: normal;
|
|
25
25
|
font-size: 14px;
|
|
26
26
|
line-height: 16px;
|
|
27
|
-
color:
|
|
27
|
+
color: $ac-color-value;
|
|
28
28
|
margin-top: 10px;
|
|
29
29
|
}
|
|
30
30
|
}
|