@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
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
grid-gap: 0px;
|
|
5
5
|
grid-template-columns: 270px calc(100% - 270px);
|
|
6
6
|
padding-top: 50px;
|
|
7
|
+
|
|
7
8
|
&.is-fullwidth {
|
|
8
9
|
grid-template-columns: auto !important;
|
|
9
10
|
|
|
@@ -22,27 +23,36 @@
|
|
|
22
23
|
}
|
|
23
24
|
}
|
|
24
25
|
|
|
26
|
+
&.in-ui-builder {
|
|
27
|
+
grid-template-columns: calc(100% - 270px) 270px !important;
|
|
28
|
+
}
|
|
29
|
+
|
|
25
30
|
&.has-ui-builder {
|
|
26
31
|
grid-template-columns: 70px calc(100% - 70px);
|
|
27
32
|
grid-gap: 0;
|
|
33
|
+
|
|
28
34
|
.inner-header {
|
|
29
35
|
position: sticky;
|
|
30
36
|
top: 100px;
|
|
31
|
-
background-color:
|
|
32
|
-
z-index:
|
|
37
|
+
background-color: $ac-white;
|
|
38
|
+
z-index: 997;
|
|
33
39
|
}
|
|
40
|
+
|
|
34
41
|
.ac-system-content {
|
|
35
42
|
&.pr-15 {
|
|
36
43
|
padding-right: 0 !important;
|
|
37
44
|
}
|
|
45
|
+
|
|
38
46
|
.ac-terminal {
|
|
39
47
|
width: calc(100% - 290px);
|
|
40
48
|
left: 289px;
|
|
41
49
|
}
|
|
42
50
|
}
|
|
51
|
+
|
|
43
52
|
.ac-system-left-sidebar.is-expanded {
|
|
44
|
-
z-index:
|
|
53
|
+
z-index: 998;
|
|
45
54
|
}
|
|
55
|
+
|
|
46
56
|
&.expanded-sidebar {
|
|
47
57
|
grid-gap: 0px;
|
|
48
58
|
z-index: 9;
|
|
@@ -70,15 +80,18 @@
|
|
|
70
80
|
.ac-system-body {
|
|
71
81
|
padding-top: 0;
|
|
72
82
|
grid-template-columns: 220px calc(100% - 440px) 220px;
|
|
83
|
+
|
|
73
84
|
.ac-system-left-sidebar {
|
|
74
85
|
border-right: none !important;
|
|
75
86
|
height: calc(100vh - 60px);
|
|
87
|
+
|
|
76
88
|
.ac-left-sidebar-wrapper {
|
|
77
89
|
position: fixed;
|
|
78
90
|
top: 140px;
|
|
79
91
|
width: 219px;
|
|
80
|
-
border-right: 1px solid
|
|
92
|
+
border-right: 1px solid $ac-white-light;
|
|
81
93
|
height: 100%;
|
|
94
|
+
|
|
82
95
|
ul.menu-list-wrapper {
|
|
83
96
|
padding-top: 10px;
|
|
84
97
|
}
|
|
@@ -92,11 +105,11 @@
|
|
|
92
105
|
}
|
|
93
106
|
|
|
94
107
|
.ac-system-left-sidebar {
|
|
95
|
-
background-color: $ac-white;
|
|
96
108
|
border-right: 1px solid $ac-white-light;
|
|
97
109
|
box-shadow: none;
|
|
110
|
+
|
|
98
111
|
&.is-expanded {
|
|
99
|
-
z-index:
|
|
112
|
+
z-index: 998;
|
|
100
113
|
|
|
101
114
|
.ac-product-logo {
|
|
102
115
|
width: 270px !important;
|
|
@@ -130,9 +143,63 @@
|
|
|
130
143
|
}
|
|
131
144
|
}
|
|
132
145
|
}
|
|
146
|
+
|
|
133
147
|
.form-content {
|
|
134
148
|
width: 720px;
|
|
135
149
|
}
|
|
150
|
+
|
|
151
|
+
.dropdown-content {
|
|
152
|
+
background-color: $ac-white;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
// color swatch start
|
|
156
|
+
input[type="color"] {
|
|
157
|
+
-webkit-appearance: none;
|
|
158
|
+
border: none;
|
|
159
|
+
width: 20px;
|
|
160
|
+
height: 20px;
|
|
161
|
+
border-radius: 50%;
|
|
162
|
+
border: 1px solid #777;
|
|
163
|
+
margin-left: 3px;
|
|
164
|
+
padding: 2px;
|
|
165
|
+
cursor: pointer;
|
|
166
|
+
}
|
|
167
|
+
input[type="color"]::-webkit-color-swatch-wrapper {
|
|
168
|
+
padding: 0;
|
|
169
|
+
}
|
|
170
|
+
// input[type="color"]::-moz-color-swatch,
|
|
171
|
+
input[type="color"]::-webkit-color-swatch {
|
|
172
|
+
border: none;
|
|
173
|
+
border-radius: 50%;
|
|
174
|
+
}
|
|
175
|
+
input[type="color"]::-moz-color-swatch {
|
|
176
|
+
border: none;
|
|
177
|
+
border-radius: 50%;
|
|
178
|
+
}
|
|
179
|
+
// color swatch end
|
|
180
|
+
|
|
181
|
+
.is-dark-theme {
|
|
182
|
+
.dropdown-content {
|
|
183
|
+
background-color: $dark-bg-light;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.ac-preloader {
|
|
188
|
+
color: $ac-color-text;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.section-padding {
|
|
192
|
+
padding: 100px 0;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.section-padding-60 {
|
|
196
|
+
padding: 60px 0;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.short-section-padding {
|
|
200
|
+
padding: 50px 0;
|
|
201
|
+
}
|
|
202
|
+
|
|
136
203
|
.section-divider {
|
|
137
204
|
background-color: $ac-white-light;
|
|
138
205
|
}
|
|
@@ -154,21 +221,27 @@
|
|
|
154
221
|
.is-not-fixed {
|
|
155
222
|
position: inherit !important;
|
|
156
223
|
}
|
|
224
|
+
|
|
157
225
|
.b-1 {
|
|
158
226
|
border: 1px solid $ac-white-light;
|
|
159
227
|
}
|
|
228
|
+
|
|
160
229
|
.b-t-1 {
|
|
161
230
|
border-top: 1px solid $ac-white-light;
|
|
162
231
|
}
|
|
232
|
+
|
|
163
233
|
.b-b-1 {
|
|
164
234
|
border-bottom: 1px solid $ac-white-light;
|
|
165
235
|
}
|
|
236
|
+
|
|
166
237
|
.b-l-1 {
|
|
167
238
|
border-left: 1px solid $ac-white-light;
|
|
168
239
|
}
|
|
240
|
+
|
|
169
241
|
.b-r-1 {
|
|
170
242
|
border-right: 1px solid $ac-white-light;
|
|
171
243
|
}
|
|
244
|
+
|
|
172
245
|
// border none
|
|
173
246
|
.is-border-none {
|
|
174
247
|
border: none !important;
|
|
@@ -195,6 +268,14 @@
|
|
|
195
268
|
cursor: not-allowed;
|
|
196
269
|
}
|
|
197
270
|
|
|
271
|
+
.no-data-image {
|
|
272
|
+
img {
|
|
273
|
+
width: 250px;
|
|
274
|
+
height: auto;
|
|
275
|
+
padding: 20px;
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
|
|
198
279
|
// for ellipsis
|
|
199
280
|
@for $i from 0 through 10 {
|
|
200
281
|
.is-ellipsis-#{$i} {
|
|
@@ -207,6 +288,23 @@
|
|
|
207
288
|
-webkit-box-orient: vertical;
|
|
208
289
|
}
|
|
209
290
|
}
|
|
291
|
+
// toast css third-party
|
|
292
|
+
|
|
293
|
+
.toasted-container {
|
|
294
|
+
.ac-toast-action.mr-10 {
|
|
295
|
+
text-decoration: underline !important;
|
|
296
|
+
}
|
|
297
|
+
.has-report-issue {
|
|
298
|
+
padding-right: 140px !important;
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
.is-dark-theme {
|
|
302
|
+
.toasted-container {
|
|
303
|
+
i.fa {
|
|
304
|
+
color: #ffffff !important;
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
}
|
|
210
308
|
|
|
211
309
|
// flex start
|
|
212
310
|
.is-middle-alignment {
|
|
@@ -248,13 +346,13 @@
|
|
|
248
346
|
}
|
|
249
347
|
|
|
250
348
|
&::-webkit-scrollbar-thumb {
|
|
251
|
-
background-color:
|
|
349
|
+
background-color: $ac-gray-light;
|
|
252
350
|
border-radius: 50px;
|
|
253
351
|
height: 2px !important;
|
|
254
352
|
}
|
|
255
353
|
|
|
256
354
|
&::-webkit-scrollbar-thumb:hover {
|
|
257
|
-
background-color:
|
|
355
|
+
background-color: $ac-gray-light;
|
|
258
356
|
}
|
|
259
357
|
|
|
260
358
|
&:hover::-webkit-scrollbar-corner {
|
|
@@ -295,33 +393,33 @@
|
|
|
295
393
|
}
|
|
296
394
|
|
|
297
395
|
&::-webkit-scrollbar-thumb {
|
|
298
|
-
background-color:
|
|
396
|
+
background-color: $ac-gray-light;
|
|
299
397
|
border-radius: 50px;
|
|
300
398
|
height: 2px !important;
|
|
301
399
|
}
|
|
302
400
|
|
|
303
401
|
&::-moz-scrollbar-thumb {
|
|
304
|
-
background-color:
|
|
402
|
+
background-color: $ac-gray-light;
|
|
305
403
|
border-radius: 50px;
|
|
306
404
|
height: 2px !important;
|
|
307
405
|
}
|
|
308
406
|
|
|
309
407
|
&::-ms-scrollbar-thumb {
|
|
310
|
-
background-color:
|
|
408
|
+
background-color: $ac-gray-light;
|
|
311
409
|
border-radius: 50px;
|
|
312
410
|
height: 2px !important;
|
|
313
411
|
}
|
|
314
412
|
|
|
315
413
|
&::-webkit-scrollbar-thumb:hover {
|
|
316
|
-
background-color:
|
|
414
|
+
background-color: $ac-gray-light;
|
|
317
415
|
}
|
|
318
416
|
|
|
319
417
|
&::-moz-scrollbar-thumb:hover {
|
|
320
|
-
background-color:
|
|
418
|
+
background-color: $ac-gray-light;
|
|
321
419
|
}
|
|
322
420
|
|
|
323
421
|
&::-ms-scrollbar-thumb:hover {
|
|
324
|
-
background-color:
|
|
422
|
+
background-color: $ac-gray-light;
|
|
325
423
|
}
|
|
326
424
|
|
|
327
425
|
&:hover::-webkit-scrollbar-corner {
|
|
@@ -352,13 +450,13 @@
|
|
|
352
450
|
}
|
|
353
451
|
|
|
354
452
|
&::-webkit-scrollbar-thumb {
|
|
355
|
-
background-color:
|
|
453
|
+
background-color: $ac-gray-light;
|
|
356
454
|
border-radius: 50px;
|
|
357
455
|
width: 2px !important;
|
|
358
456
|
}
|
|
359
457
|
|
|
360
458
|
&::-webkit-scrollbar-thumb:hover {
|
|
361
|
-
background-color:
|
|
459
|
+
background-color: $ac-gray-light;
|
|
362
460
|
}
|
|
363
461
|
|
|
364
462
|
&:hover::-webkit-scrollbar-corner {
|
|
@@ -381,7 +479,7 @@
|
|
|
381
479
|
|
|
382
480
|
.is-transparent {
|
|
383
481
|
border: none;
|
|
384
|
-
background: transparent;
|
|
482
|
+
background-color: transparent;
|
|
385
483
|
}
|
|
386
484
|
|
|
387
485
|
.is-error {
|
|
@@ -390,9 +488,18 @@
|
|
|
390
488
|
color: $ac-red;
|
|
391
489
|
text-align: left;
|
|
392
490
|
}
|
|
491
|
+
|
|
393
492
|
code {
|
|
394
493
|
color: $ac-color-heading;
|
|
395
494
|
}
|
|
495
|
+
|
|
496
|
+
.is-dark-theme {
|
|
497
|
+
code {
|
|
498
|
+
background-color: $dark-bg-light;
|
|
499
|
+
color: $ac-full-white;
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
|
|
396
503
|
.is-danger:not(.ac-button) {
|
|
397
504
|
color: $ac-danger !important;
|
|
398
505
|
}
|
|
@@ -409,42 +516,57 @@ button {
|
|
|
409
516
|
}
|
|
410
517
|
|
|
411
518
|
.tag:not(body) {
|
|
412
|
-
background-color:
|
|
519
|
+
background-color: $ac-white-light;
|
|
413
520
|
font-size: 11px;
|
|
414
521
|
height: 18px;
|
|
415
522
|
letter-spacing: 0.1px;
|
|
416
523
|
color: $ac-color-heading;
|
|
524
|
+
|
|
525
|
+
a {
|
|
526
|
+
&:hover {
|
|
527
|
+
color: $ac-color-text;
|
|
528
|
+
}
|
|
529
|
+
}
|
|
530
|
+
|
|
417
531
|
&.is-available {
|
|
418
532
|
background-color: #27b064;
|
|
419
533
|
color: $ac-white;
|
|
420
534
|
}
|
|
535
|
+
|
|
421
536
|
&.is-success {
|
|
422
537
|
background-color: $ac-green;
|
|
423
538
|
color: $ac-white;
|
|
539
|
+
|
|
424
540
|
&.is-light {
|
|
425
541
|
background-color: rgba(39, 176, 100, 0.2);
|
|
426
542
|
color: $ac-green;
|
|
427
543
|
}
|
|
428
544
|
}
|
|
545
|
+
|
|
429
546
|
&.is-primary {
|
|
430
547
|
background-color: $ac-primary;
|
|
431
548
|
color: $ac-white;
|
|
549
|
+
|
|
432
550
|
&.is-light {
|
|
433
551
|
background-color: rgba(25, 113, 189, 0.2);
|
|
434
552
|
color: $ac-primary;
|
|
435
553
|
}
|
|
436
554
|
}
|
|
555
|
+
|
|
437
556
|
&.is-gray {
|
|
438
557
|
background-color: #e5e9f2;
|
|
439
|
-
color:
|
|
558
|
+
color: $ac-gray-darker;
|
|
440
559
|
}
|
|
560
|
+
|
|
441
561
|
&.is-warning {
|
|
442
562
|
background-color: $ac-warning;
|
|
443
563
|
color: $ac-white !important;
|
|
444
564
|
}
|
|
565
|
+
|
|
445
566
|
&.is-danger {
|
|
446
567
|
background-color: $ac-red;
|
|
447
568
|
color: $ac-white !important;
|
|
569
|
+
|
|
448
570
|
&.is-light {
|
|
449
571
|
background-color: rgba(234, 61, 47, 0.2);
|
|
450
572
|
color: $ac-red !important;
|
|
@@ -456,6 +578,7 @@ button {
|
|
|
456
578
|
.icon {
|
|
457
579
|
margin-bottom: 0.5rem;
|
|
458
580
|
}
|
|
581
|
+
|
|
459
582
|
.tag {
|
|
460
583
|
a {
|
|
461
584
|
font-weight: 500;
|
|
@@ -476,12 +599,12 @@ button {
|
|
|
476
599
|
top: 12px;
|
|
477
600
|
width: 100%;
|
|
478
601
|
height: 1px;
|
|
479
|
-
background: $ac-white-light;
|
|
602
|
+
background-color: $ac-white-light;
|
|
480
603
|
}
|
|
481
604
|
|
|
482
605
|
h5 {
|
|
483
606
|
color: $ac-color-text;
|
|
484
|
-
background: $ac-white;
|
|
607
|
+
background-color: $ac-white;
|
|
485
608
|
z-index: 2;
|
|
486
609
|
display: inline-block;
|
|
487
610
|
position: relative;
|
|
@@ -633,6 +756,147 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
633
756
|
}
|
|
634
757
|
}
|
|
635
758
|
}
|
|
759
|
+
// tooltip in vue-open-api
|
|
760
|
+
.tooltip {
|
|
761
|
+
display: block !important;
|
|
762
|
+
z-index: 10000;
|
|
763
|
+
|
|
764
|
+
&.is-button-info {
|
|
765
|
+
.tooltip-inner {
|
|
766
|
+
background: $ac-white;
|
|
767
|
+
color: $ac-primary;
|
|
768
|
+
border-radius: 4px;
|
|
769
|
+
padding: 5px 20px 4px;
|
|
770
|
+
box-shadow: $ac-shadow-1;
|
|
771
|
+
font-weight: 500;
|
|
772
|
+
font-size: 13px;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
.tooltip-arrow {
|
|
776
|
+
width: 0;
|
|
777
|
+
height: 0;
|
|
778
|
+
border-style: solid;
|
|
779
|
+
position: absolute;
|
|
780
|
+
margin: 5px;
|
|
781
|
+
border-color: $ac-white;
|
|
782
|
+
}
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
&.is-errors-tooltip {
|
|
786
|
+
.tooltip-inner {
|
|
787
|
+
background: $ac-white;
|
|
788
|
+
color: $ac-danger;
|
|
789
|
+
border-radius: 4px;
|
|
790
|
+
padding: 5px 20px 4px;
|
|
791
|
+
box-shadow: $ac-shadow-1;
|
|
792
|
+
font-weight: 500;
|
|
793
|
+
font-size: 13px;
|
|
794
|
+
|
|
795
|
+
.errors-wrapper {
|
|
796
|
+
.error-element {
|
|
797
|
+
padding: 5px 0;
|
|
798
|
+
}
|
|
799
|
+
}
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
.tooltip-arrow {
|
|
803
|
+
width: 0;
|
|
804
|
+
height: 0;
|
|
805
|
+
border-style: solid;
|
|
806
|
+
position: absolute;
|
|
807
|
+
margin: 5px;
|
|
808
|
+
border-color: $ac-white;
|
|
809
|
+
}
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
&[x-placement^="top"] {
|
|
813
|
+
margin-bottom: 5px;
|
|
814
|
+
|
|
815
|
+
.tooltip-arrow {
|
|
816
|
+
border-width: 5px 5px 0 5px;
|
|
817
|
+
border-left-color: transparent !important;
|
|
818
|
+
border-right-color: transparent !important;
|
|
819
|
+
border-bottom-color: transparent !important;
|
|
820
|
+
bottom: -5px;
|
|
821
|
+
left: calc(50% - 5px);
|
|
822
|
+
margin-top: 0;
|
|
823
|
+
margin-bottom: 0;
|
|
824
|
+
}
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
&[x-placement^="bottom"] {
|
|
828
|
+
margin-top: 5px;
|
|
829
|
+
|
|
830
|
+
.tooltip-arrow {
|
|
831
|
+
border-width: 0 5px 5px 5px;
|
|
832
|
+
border-left-color: transparent !important;
|
|
833
|
+
border-right-color: transparent !important;
|
|
834
|
+
border-top-color: transparent !important;
|
|
835
|
+
top: -5px;
|
|
836
|
+
left: calc(50% - 5px);
|
|
837
|
+
margin-top: 0;
|
|
838
|
+
margin-bottom: 0;
|
|
839
|
+
}
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
&[x-placement^="right"] {
|
|
843
|
+
margin-left: 5px;
|
|
844
|
+
|
|
845
|
+
.tooltip-arrow {
|
|
846
|
+
border-width: 5px 5px 5px 0;
|
|
847
|
+
border-left-color: transparent !important;
|
|
848
|
+
border-top-color: transparent !important;
|
|
849
|
+
border-bottom-color: transparent !important;
|
|
850
|
+
left: -5px;
|
|
851
|
+
top: calc(50% - 5px);
|
|
852
|
+
margin-left: 0;
|
|
853
|
+
margin-right: 0;
|
|
854
|
+
}
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
&[x-placement^="left"] {
|
|
858
|
+
margin-right: 5px;
|
|
859
|
+
|
|
860
|
+
.tooltip-arrow {
|
|
861
|
+
border-width: 5px 0 5px 5px;
|
|
862
|
+
border-top-color: transparent !important;
|
|
863
|
+
border-right-color: transparent !important;
|
|
864
|
+
border-bottom-color: transparent !important;
|
|
865
|
+
right: -5px;
|
|
866
|
+
top: calc(50% - 5px);
|
|
867
|
+
margin-left: 0;
|
|
868
|
+
margin-right: 0;
|
|
869
|
+
}
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
&.popover {
|
|
873
|
+
$color: #f9f9f9;
|
|
874
|
+
|
|
875
|
+
.popover-inner {
|
|
876
|
+
background: $color;
|
|
877
|
+
color: black;
|
|
878
|
+
padding: 24px;
|
|
879
|
+
border-radius: 4px;
|
|
880
|
+
box-shadow: $ac-shadow-1;
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
.popover-arrow {
|
|
884
|
+
border-color: $color;
|
|
885
|
+
}
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
&[aria-hidden="true"] {
|
|
889
|
+
visibility: hidden;
|
|
890
|
+
opacity: 0;
|
|
891
|
+
transition: opacity 0.15s, visibility 0.15s;
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
&[aria-hidden="false"] {
|
|
895
|
+
visibility: visible;
|
|
896
|
+
opacity: 1;
|
|
897
|
+
transition: opacity 0.15s;
|
|
898
|
+
}
|
|
899
|
+
}
|
|
636
900
|
|
|
637
901
|
// Customize tooltip end
|
|
638
902
|
|
|
@@ -640,7 +904,7 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
640
904
|
.ac-footer-action {
|
|
641
905
|
margin-top: 10px;
|
|
642
906
|
padding-top: 10px;
|
|
643
|
-
background: $ac-white;
|
|
907
|
+
background-color: $ac-white;
|
|
644
908
|
padding: 10px 20px;
|
|
645
909
|
margin-left: 0;
|
|
646
910
|
margin-right: 0;
|
|
@@ -666,7 +930,7 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
666
930
|
height: 10px;
|
|
667
931
|
width: 10px;
|
|
668
932
|
border-radius: 50%;
|
|
669
|
-
background: $ac-
|
|
933
|
+
background-color: $ac-gray-lightest;
|
|
670
934
|
border: 2px solid $ac-white;
|
|
671
935
|
display: inline-flex;
|
|
672
936
|
|
|
@@ -682,6 +946,17 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
682
946
|
// Status css
|
|
683
947
|
// ac-footer sticky end
|
|
684
948
|
|
|
949
|
+
|
|
950
|
+
|
|
951
|
+
// terminal scss end
|
|
952
|
+
.is-dark-theme {
|
|
953
|
+
a {
|
|
954
|
+
&:hover {
|
|
955
|
+
color: #485fc7;
|
|
956
|
+
}
|
|
957
|
+
}
|
|
958
|
+
}
|
|
959
|
+
|
|
685
960
|
/****************************************
|
|
686
961
|
Responsive Classes
|
|
687
962
|
*****************************************/
|
|
@@ -1,28 +1,15 @@
|
|
|
1
|
-
// Typography
|
|
2
|
-
$ac-size-small: $ac-size-7;
|
|
3
|
-
$ac-size-normal: $ac-size-6;
|
|
4
|
-
$ac-size-medium: $ac-size-5;
|
|
5
|
-
$ac-size-large: $ac-size-4;
|
|
6
|
-
|
|
7
1
|
// color
|
|
8
2
|
$ac-info: $ac-blue;
|
|
9
3
|
$ac-success: $ac-primary;
|
|
10
4
|
$ac-warning: $ac-yellow;
|
|
11
5
|
$ac-danger: $ac-red;
|
|
12
6
|
|
|
13
|
-
// bg-color
|
|
14
|
-
$ac-bg-dark: #2c2e42;
|
|
15
|
-
$ac-modal-header-bg: #e8e8e8;
|
|
16
|
-
$ac-input-bg-color: #eceff4;
|
|
17
|
-
$ac-bg-light-gray: #f4f6f9;
|
|
18
|
-
$table-header: #e4e8ef;
|
|
19
7
|
// Text colors
|
|
20
|
-
$ac-color-text:
|
|
21
|
-
$ac-color-heading:
|
|
8
|
+
$ac-color-text: var(--ac-text);
|
|
9
|
+
$ac-color-heading: var(--ac-text-heading);
|
|
22
10
|
|
|
23
11
|
// Link colors
|
|
24
12
|
$ac-link: $ac-blue;
|
|
25
|
-
$ac-link-black: #32325d;
|
|
26
13
|
$ac-link-visited: $ac-purple;
|
|
27
14
|
|
|
28
15
|
// Box Shadow
|