@appscode/design-system 1.0.43-alpha.13 → 1.0.43-alpha.132
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 +283 -21
- package/base/utilities/_derived-variables.scss +0 -13
- package/base/utilities/_initial-variables.scss +78 -56
- package/base/utilities/_mixin.scss +10 -17
- 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 +18 -10
- 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 +74 -40
- package/components/_ac-modal.scss +5 -4
- package/components/_ac-multi-select.scss +195 -13
- package/components/_ac-options.scss +31 -16
- package/components/_ac-select-box.scss +15 -5
- package/components/_ac-table.scss +42 -36
- 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 +7 -2
- package/components/_buttons.scss +60 -27
- package/components/_card-body-wrapper.scss +3 -3
- package/components/_dashboard-header.scss +33 -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 +200 -46
- package/components/_monaco-editor.scss +1 -1
- package/components/_navbar.scss +129 -26
- package/components/_overview-info.scss +4 -4
- package/components/_overview-page.scss +1 -2
- package/components/_pagination.scss +10 -2
- package/components/_payment-card.scss +28 -12
- package/components/_preview-modal.scss +19 -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/_transitions.scss +261 -0
- package/components/_widget-menu.scss +9 -9
- package/components/_wizard.scss +31 -19
- package/components/ac-toaster/_ac-toasted.scss +5 -5
- package/components/bbum/_card-team.scss +18 -10
- package/components/bbum/_information-center.scss +17 -3
- 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 +29 -10
- package/components/ui-builder/_vue-open-api.scss +98 -0
- package/layouts/_404.scss +2 -1
- package/layouts/_code-preview.scss +14 -7
- package/main.scss +4 -0
- package/package.json +2 -7
- package/plugins/theme.js +130 -128
- package/vue-components/v2/banner/Banner.vue +2 -2
- package/vue-components/v2/breadcrumbs/Breadcrumb.vue +97 -0
- package/vue-components/v2/button/Button.vue +5 -0
- package/vue-components/v2/button/DownloadBtn.vue +45 -0
- package/vue-components/v2/card/PaymentCards.vue +11 -2
- package/vue-components/v2/content/ContentTable.vue +12 -7
- package/vue-components/v2/editor/Editor.vue +29 -1
- package/vue-components/v2/editor/FilteredFileEditor.vue +153 -0
- package/vue-components/v2/editor/ResourceKeyValueEditor.vue +196 -0
- package/vue-components/v2/loaders/ResourceLoader.vue +90 -0
- package/vue-components/v2/loaders/SidebarLoader.vue +32 -0
- package/vue-components/v2/modal/Modal.vue +33 -12
- package/vue-components/v2/modals/DeleteConfirmationModal.vue +77 -0
- package/vue-components/v2/modals/JsonShowModal.vue +12 -2
- package/vue-components/v2/navbar/Appdrawer.vue +10 -9
- package/vue-components/v2/navbar/ThemeMode.vue +120 -0
- package/vue-components/v2/navbar/User.vue +154 -12
- 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 +23 -1
- package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
- package/vue-components/v2/table/Table.vue +43 -8
- package/vue-components/v2/table/TableRow.vue +17 -8
- package/vue-components/v2/table/table-cell/CellValue.vue +31 -4
- package/vue-components/v2/table/table-cell/GenericCell.vue +56 -0
- package/vue-components/v2/table/table-cell/ObjectCell.vue +4 -1
- package/vue-components/v2/tabs/EditorTabs.vue +1 -1
- package/vue-components/v3/button/Button.vue +5 -0
- package/vue-components/v3/dropdown/DropdownMenu.vue +1 -1
- package/vue-components/v3/editor/Editor.vue +32 -11
- package/vue-components/v3/modal/Modal.vue +10 -1
- package/vue-components/v3/modals/JsonShowModal.vue +13 -4
- package/vue-components/v3/navbar/Appdrawer.vue +12 -7
- package/vue-components/v3/navbar/ThemeMode.vue +128 -0
- package/vue-components/v3/navbar/User.vue +154 -12
- package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
- package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
- package/vue-components/v3/table/Table.vue +27 -5
- package/vue-components/v3/table/TableRow.vue +1 -1
- package/vue-components/v3/table/table-cell/CellValue.vue +26 -3
- package/vue-components/v3/table/table-cell/GenericCell.vue +62 -0
- package/vue-components/v3/table/table-cell/ObjectCell.vue +5 -1
- package/vue-components/v3/tabs/EditorTabs.vue +1 -1
|
@@ -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:
|
|
37
|
+
background-color: $ac-white;
|
|
32
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
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,9 +105,9 @@
|
|
|
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
112
|
z-index: 998;
|
|
100
113
|
|
|
@@ -130,10 +143,55 @@
|
|
|
130
143
|
}
|
|
131
144
|
}
|
|
132
145
|
}
|
|
146
|
+
.ac-system-body {
|
|
147
|
+
&.is-preview-step {
|
|
148
|
+
grid-template-columns: calc(100% - 270px) 270px !important;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
133
151
|
.form-content {
|
|
134
152
|
width: 720px;
|
|
135
153
|
}
|
|
136
154
|
|
|
155
|
+
.dropdown-content {
|
|
156
|
+
background-color: $ac-white;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
// color swatch start
|
|
160
|
+
input[type="color"] {
|
|
161
|
+
-webkit-appearance: none;
|
|
162
|
+
border: none;
|
|
163
|
+
width: 20px;
|
|
164
|
+
height: 20px;
|
|
165
|
+
border-radius: 50%;
|
|
166
|
+
border: 1px solid #777;
|
|
167
|
+
margin-left: 3px;
|
|
168
|
+
padding: 2px;
|
|
169
|
+
cursor: pointer;
|
|
170
|
+
}
|
|
171
|
+
input[type="color"]::-webkit-color-swatch-wrapper {
|
|
172
|
+
padding: 0;
|
|
173
|
+
}
|
|
174
|
+
// input[type="color"]::-moz-color-swatch,
|
|
175
|
+
input[type="color"]::-webkit-color-swatch {
|
|
176
|
+
border: none;
|
|
177
|
+
border-radius: 50%;
|
|
178
|
+
}
|
|
179
|
+
input[type="color"]::-moz-color-swatch {
|
|
180
|
+
border: none;
|
|
181
|
+
border-radius: 50%;
|
|
182
|
+
}
|
|
183
|
+
// color swatch end
|
|
184
|
+
|
|
185
|
+
.is-dark-theme {
|
|
186
|
+
.dropdown-content {
|
|
187
|
+
background-color: $dark-bg-light;
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.ac-preloader {
|
|
192
|
+
color: $ac-color-text;
|
|
193
|
+
}
|
|
194
|
+
|
|
137
195
|
.section-padding {
|
|
138
196
|
padding: 100px 0;
|
|
139
197
|
}
|
|
@@ -167,21 +225,27 @@
|
|
|
167
225
|
.is-not-fixed {
|
|
168
226
|
position: inherit !important;
|
|
169
227
|
}
|
|
228
|
+
|
|
170
229
|
.b-1 {
|
|
171
230
|
border: 1px solid $ac-white-light;
|
|
172
231
|
}
|
|
232
|
+
|
|
173
233
|
.b-t-1 {
|
|
174
234
|
border-top: 1px solid $ac-white-light;
|
|
175
235
|
}
|
|
236
|
+
|
|
176
237
|
.b-b-1 {
|
|
177
238
|
border-bottom: 1px solid $ac-white-light;
|
|
178
239
|
}
|
|
240
|
+
|
|
179
241
|
.b-l-1 {
|
|
180
242
|
border-left: 1px solid $ac-white-light;
|
|
181
243
|
}
|
|
244
|
+
|
|
182
245
|
.b-r-1 {
|
|
183
246
|
border-right: 1px solid $ac-white-light;
|
|
184
247
|
}
|
|
248
|
+
|
|
185
249
|
// border none
|
|
186
250
|
.is-border-none {
|
|
187
251
|
border: none !important;
|
|
@@ -207,6 +271,7 @@
|
|
|
207
271
|
opacity: 0.5;
|
|
208
272
|
cursor: not-allowed;
|
|
209
273
|
}
|
|
274
|
+
|
|
210
275
|
.no-data-image {
|
|
211
276
|
img {
|
|
212
277
|
width: 250px;
|
|
@@ -227,6 +292,23 @@
|
|
|
227
292
|
-webkit-box-orient: vertical;
|
|
228
293
|
}
|
|
229
294
|
}
|
|
295
|
+
// toast css third-party
|
|
296
|
+
|
|
297
|
+
.toasted-container {
|
|
298
|
+
.ac-toast-action.mr-10 {
|
|
299
|
+
text-decoration: underline !important;
|
|
300
|
+
}
|
|
301
|
+
.has-report-issue {
|
|
302
|
+
padding-right: 140px !important;
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
.is-dark-theme {
|
|
306
|
+
.toasted-container {
|
|
307
|
+
i.fa {
|
|
308
|
+
color: #ffffff !important;
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
}
|
|
230
312
|
|
|
231
313
|
// flex start
|
|
232
314
|
.is-middle-alignment {
|
|
@@ -268,13 +350,13 @@
|
|
|
268
350
|
}
|
|
269
351
|
|
|
270
352
|
&::-webkit-scrollbar-thumb {
|
|
271
|
-
background-color:
|
|
353
|
+
background-color: $ac-gray-light;
|
|
272
354
|
border-radius: 50px;
|
|
273
355
|
height: 2px !important;
|
|
274
356
|
}
|
|
275
357
|
|
|
276
358
|
&::-webkit-scrollbar-thumb:hover {
|
|
277
|
-
background-color:
|
|
359
|
+
background-color: $ac-gray-light;
|
|
278
360
|
}
|
|
279
361
|
|
|
280
362
|
&:hover::-webkit-scrollbar-corner {
|
|
@@ -315,33 +397,33 @@
|
|
|
315
397
|
}
|
|
316
398
|
|
|
317
399
|
&::-webkit-scrollbar-thumb {
|
|
318
|
-
background-color:
|
|
400
|
+
background-color: $ac-gray-light;
|
|
319
401
|
border-radius: 50px;
|
|
320
402
|
height: 2px !important;
|
|
321
403
|
}
|
|
322
404
|
|
|
323
405
|
&::-moz-scrollbar-thumb {
|
|
324
|
-
background-color:
|
|
406
|
+
background-color: $ac-gray-light;
|
|
325
407
|
border-radius: 50px;
|
|
326
408
|
height: 2px !important;
|
|
327
409
|
}
|
|
328
410
|
|
|
329
411
|
&::-ms-scrollbar-thumb {
|
|
330
|
-
background-color:
|
|
412
|
+
background-color: $ac-gray-light;
|
|
331
413
|
border-radius: 50px;
|
|
332
414
|
height: 2px !important;
|
|
333
415
|
}
|
|
334
416
|
|
|
335
417
|
&::-webkit-scrollbar-thumb:hover {
|
|
336
|
-
background-color:
|
|
418
|
+
background-color: $ac-gray-light;
|
|
337
419
|
}
|
|
338
420
|
|
|
339
421
|
&::-moz-scrollbar-thumb:hover {
|
|
340
|
-
background-color:
|
|
422
|
+
background-color: $ac-gray-light;
|
|
341
423
|
}
|
|
342
424
|
|
|
343
425
|
&::-ms-scrollbar-thumb:hover {
|
|
344
|
-
background-color:
|
|
426
|
+
background-color: $ac-gray-light;
|
|
345
427
|
}
|
|
346
428
|
|
|
347
429
|
&:hover::-webkit-scrollbar-corner {
|
|
@@ -372,13 +454,13 @@
|
|
|
372
454
|
}
|
|
373
455
|
|
|
374
456
|
&::-webkit-scrollbar-thumb {
|
|
375
|
-
background-color:
|
|
457
|
+
background-color: $ac-gray-light;
|
|
376
458
|
border-radius: 50px;
|
|
377
459
|
width: 2px !important;
|
|
378
460
|
}
|
|
379
461
|
|
|
380
462
|
&::-webkit-scrollbar-thumb:hover {
|
|
381
|
-
background-color:
|
|
463
|
+
background-color: $ac-gray-light;
|
|
382
464
|
}
|
|
383
465
|
|
|
384
466
|
&:hover::-webkit-scrollbar-corner {
|
|
@@ -401,7 +483,7 @@
|
|
|
401
483
|
|
|
402
484
|
.is-transparent {
|
|
403
485
|
border: none;
|
|
404
|
-
background: transparent;
|
|
486
|
+
background-color: transparent;
|
|
405
487
|
}
|
|
406
488
|
|
|
407
489
|
.is-error {
|
|
@@ -410,9 +492,18 @@
|
|
|
410
492
|
color: $ac-red;
|
|
411
493
|
text-align: left;
|
|
412
494
|
}
|
|
495
|
+
|
|
413
496
|
code {
|
|
414
497
|
color: $ac-color-heading;
|
|
415
498
|
}
|
|
499
|
+
|
|
500
|
+
.is-dark-theme {
|
|
501
|
+
code {
|
|
502
|
+
background-color: $dark-bg-light;
|
|
503
|
+
color: $ac-full-white;
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
|
|
416
507
|
.is-danger:not(.ac-button) {
|
|
417
508
|
color: $ac-danger !important;
|
|
418
509
|
}
|
|
@@ -429,42 +520,62 @@ button {
|
|
|
429
520
|
}
|
|
430
521
|
|
|
431
522
|
.tag:not(body) {
|
|
432
|
-
background-color:
|
|
523
|
+
background-color: $ac-white-light;
|
|
433
524
|
font-size: 11px;
|
|
434
525
|
height: 18px;
|
|
435
526
|
letter-spacing: 0.1px;
|
|
436
527
|
color: $ac-color-heading;
|
|
528
|
+
|
|
529
|
+
a {
|
|
530
|
+
&:hover {
|
|
531
|
+
color: $ac-color-text;
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
|
|
437
535
|
&.is-available {
|
|
438
536
|
background-color: #27b064;
|
|
439
537
|
color: $ac-white;
|
|
440
538
|
}
|
|
539
|
+
|
|
441
540
|
&.is-success {
|
|
442
541
|
background-color: $ac-green;
|
|
443
542
|
color: $ac-white;
|
|
543
|
+
|
|
444
544
|
&.is-light {
|
|
445
545
|
background-color: rgba(39, 176, 100, 0.2);
|
|
446
546
|
color: $ac-green;
|
|
447
547
|
}
|
|
448
548
|
}
|
|
549
|
+
|
|
449
550
|
&.is-primary {
|
|
450
551
|
background-color: $ac-primary;
|
|
451
552
|
color: $ac-white;
|
|
553
|
+
|
|
452
554
|
&.is-light {
|
|
453
555
|
background-color: rgba(25, 113, 189, 0.2);
|
|
454
556
|
color: $ac-primary;
|
|
455
557
|
}
|
|
456
558
|
}
|
|
559
|
+
|
|
457
560
|
&.is-gray {
|
|
458
561
|
background-color: #e5e9f2;
|
|
459
|
-
color:
|
|
562
|
+
color: $ac-gray-darker;
|
|
460
563
|
}
|
|
564
|
+
|
|
461
565
|
&.is-warning {
|
|
462
566
|
background-color: $ac-warning;
|
|
463
|
-
color: $ac-white
|
|
567
|
+
color: $ac-white;
|
|
568
|
+
|
|
569
|
+
&.is-light {
|
|
570
|
+
background-color: #ffd58b42;
|
|
571
|
+
color: #c88b21;
|
|
572
|
+
}
|
|
464
573
|
}
|
|
574
|
+
|
|
465
575
|
&.is-danger {
|
|
466
576
|
background-color: $ac-red;
|
|
467
577
|
color: $ac-white !important;
|
|
578
|
+
|
|
468
579
|
&.is-light {
|
|
469
580
|
background-color: rgba(234, 61, 47, 0.2);
|
|
470
581
|
color: $ac-red !important;
|
|
@@ -476,6 +587,7 @@ button {
|
|
|
476
587
|
.icon {
|
|
477
588
|
margin-bottom: 0.5rem;
|
|
478
589
|
}
|
|
590
|
+
|
|
479
591
|
.tag {
|
|
480
592
|
a {
|
|
481
593
|
font-weight: 500;
|
|
@@ -496,12 +608,12 @@ button {
|
|
|
496
608
|
top: 12px;
|
|
497
609
|
width: 100%;
|
|
498
610
|
height: 1px;
|
|
499
|
-
background: $ac-white-light;
|
|
611
|
+
background-color: $ac-white-light;
|
|
500
612
|
}
|
|
501
613
|
|
|
502
614
|
h5 {
|
|
503
615
|
color: $ac-color-text;
|
|
504
|
-
background: $ac-white;
|
|
616
|
+
background-color: $ac-white;
|
|
505
617
|
z-index: 2;
|
|
506
618
|
display: inline-block;
|
|
507
619
|
position: relative;
|
|
@@ -653,6 +765,147 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
653
765
|
}
|
|
654
766
|
}
|
|
655
767
|
}
|
|
768
|
+
// tooltip in vue-open-api
|
|
769
|
+
.tooltip {
|
|
770
|
+
display: block !important;
|
|
771
|
+
z-index: 10000;
|
|
772
|
+
|
|
773
|
+
&.is-button-info {
|
|
774
|
+
.tooltip-inner {
|
|
775
|
+
background: $ac-white;
|
|
776
|
+
color: $ac-primary;
|
|
777
|
+
border-radius: 4px;
|
|
778
|
+
padding: 5px 20px 4px;
|
|
779
|
+
box-shadow: $ac-shadow-1;
|
|
780
|
+
font-weight: 500;
|
|
781
|
+
font-size: 13px;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
.tooltip-arrow {
|
|
785
|
+
width: 0;
|
|
786
|
+
height: 0;
|
|
787
|
+
border-style: solid;
|
|
788
|
+
position: absolute;
|
|
789
|
+
margin: 5px;
|
|
790
|
+
border-color: $ac-white;
|
|
791
|
+
}
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
&.is-errors-tooltip {
|
|
795
|
+
.tooltip-inner {
|
|
796
|
+
background: $ac-white;
|
|
797
|
+
color: $ac-danger;
|
|
798
|
+
border-radius: 4px;
|
|
799
|
+
padding: 5px 20px 4px;
|
|
800
|
+
box-shadow: $ac-shadow-1;
|
|
801
|
+
font-weight: 500;
|
|
802
|
+
font-size: 13px;
|
|
803
|
+
|
|
804
|
+
.errors-wrapper {
|
|
805
|
+
.error-element {
|
|
806
|
+
padding: 5px 0;
|
|
807
|
+
}
|
|
808
|
+
}
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
.tooltip-arrow {
|
|
812
|
+
width: 0;
|
|
813
|
+
height: 0;
|
|
814
|
+
border-style: solid;
|
|
815
|
+
position: absolute;
|
|
816
|
+
margin: 5px;
|
|
817
|
+
border-color: $ac-white;
|
|
818
|
+
}
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
&[x-placement^="top"] {
|
|
822
|
+
margin-bottom: 5px;
|
|
823
|
+
|
|
824
|
+
.tooltip-arrow {
|
|
825
|
+
border-width: 5px 5px 0 5px;
|
|
826
|
+
border-left-color: transparent !important;
|
|
827
|
+
border-right-color: transparent !important;
|
|
828
|
+
border-bottom-color: transparent !important;
|
|
829
|
+
bottom: -5px;
|
|
830
|
+
left: calc(50% - 5px);
|
|
831
|
+
margin-top: 0;
|
|
832
|
+
margin-bottom: 0;
|
|
833
|
+
}
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
&[x-placement^="bottom"] {
|
|
837
|
+
margin-top: 5px;
|
|
838
|
+
|
|
839
|
+
.tooltip-arrow {
|
|
840
|
+
border-width: 0 5px 5px 5px;
|
|
841
|
+
border-left-color: transparent !important;
|
|
842
|
+
border-right-color: transparent !important;
|
|
843
|
+
border-top-color: transparent !important;
|
|
844
|
+
top: -5px;
|
|
845
|
+
left: calc(50% - 5px);
|
|
846
|
+
margin-top: 0;
|
|
847
|
+
margin-bottom: 0;
|
|
848
|
+
}
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
&[x-placement^="right"] {
|
|
852
|
+
margin-left: 5px;
|
|
853
|
+
|
|
854
|
+
.tooltip-arrow {
|
|
855
|
+
border-width: 5px 5px 5px 0;
|
|
856
|
+
border-left-color: transparent !important;
|
|
857
|
+
border-top-color: transparent !important;
|
|
858
|
+
border-bottom-color: transparent !important;
|
|
859
|
+
left: -5px;
|
|
860
|
+
top: calc(50% - 5px);
|
|
861
|
+
margin-left: 0;
|
|
862
|
+
margin-right: 0;
|
|
863
|
+
}
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
&[x-placement^="left"] {
|
|
867
|
+
margin-right: 5px;
|
|
868
|
+
|
|
869
|
+
.tooltip-arrow {
|
|
870
|
+
border-width: 5px 0 5px 5px;
|
|
871
|
+
border-top-color: transparent !important;
|
|
872
|
+
border-right-color: transparent !important;
|
|
873
|
+
border-bottom-color: transparent !important;
|
|
874
|
+
right: -5px;
|
|
875
|
+
top: calc(50% - 5px);
|
|
876
|
+
margin-left: 0;
|
|
877
|
+
margin-right: 0;
|
|
878
|
+
}
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
&.popover {
|
|
882
|
+
$color: #f9f9f9;
|
|
883
|
+
|
|
884
|
+
.popover-inner {
|
|
885
|
+
background: $color;
|
|
886
|
+
color: black;
|
|
887
|
+
padding: 24px;
|
|
888
|
+
border-radius: 4px;
|
|
889
|
+
box-shadow: $ac-shadow-1;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
.popover-arrow {
|
|
893
|
+
border-color: $color;
|
|
894
|
+
}
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
&[aria-hidden="true"] {
|
|
898
|
+
visibility: hidden;
|
|
899
|
+
opacity: 0;
|
|
900
|
+
transition: opacity 0.15s, visibility 0.15s;
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
&[aria-hidden="false"] {
|
|
904
|
+
visibility: visible;
|
|
905
|
+
opacity: 1;
|
|
906
|
+
transition: opacity 0.15s;
|
|
907
|
+
}
|
|
908
|
+
}
|
|
656
909
|
|
|
657
910
|
// Customize tooltip end
|
|
658
911
|
|
|
@@ -660,7 +913,7 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
660
913
|
.ac-footer-action {
|
|
661
914
|
margin-top: 10px;
|
|
662
915
|
padding-top: 10px;
|
|
663
|
-
background: $ac-white;
|
|
916
|
+
background-color: $ac-white;
|
|
664
917
|
padding: 10px 20px;
|
|
665
918
|
margin-left: 0;
|
|
666
919
|
margin-right: 0;
|
|
@@ -686,7 +939,7 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
686
939
|
height: 10px;
|
|
687
940
|
width: 10px;
|
|
688
941
|
border-radius: 50%;
|
|
689
|
-
background: $ac-gray-lightest;
|
|
942
|
+
background-color: $ac-gray-lightest;
|
|
690
943
|
border: 2px solid $ac-white;
|
|
691
944
|
display: inline-flex;
|
|
692
945
|
|
|
@@ -702,6 +955,15 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
702
955
|
// Status css
|
|
703
956
|
// ac-footer sticky end
|
|
704
957
|
|
|
958
|
+
// terminal scss end
|
|
959
|
+
.is-dark-theme {
|
|
960
|
+
a {
|
|
961
|
+
&:hover {
|
|
962
|
+
color: #485fc7;
|
|
963
|
+
}
|
|
964
|
+
}
|
|
965
|
+
}
|
|
966
|
+
|
|
705
967
|
/****************************************
|
|
706
968
|
Responsive Classes
|
|
707
969
|
*****************************************/
|
|
@@ -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
8
|
$ac-color-text: var(--ac-text);
|
|
21
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
|