@appscode/design-system 1.0.43-alpha.16 → 1.0.43-alpha.162
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 +269 -4
- package/base/utilities/_derived-variables.scss +0 -1
- package/base/utilities/_initial-variables.scss +17 -176
- package/base/utilities/_mixin.scss +1 -17
- package/base/utilities/_typography.scss +14 -4
- package/base/utilities/dark-theme.scss +25 -0
- package/components/_ac-alert-box.scss +13 -5
- package/components/_ac-card.scss +44 -8
- package/components/_ac-code-highlight.scss +5 -1
- package/components/_ac-content-layout.scss +2 -2
- package/components/_ac-input.scss +63 -23
- package/components/_ac-multi-select.scss +187 -5
- package/components/_ac-options.scss +24 -9
- package/components/_ac-select-box.scss +14 -4
- package/components/_ac-table.scss +5 -3
- package/components/_ac-tabs.scss +39 -3
- package/components/_ac-terminal.scss +270 -0
- package/components/_app-drawer.scss +2 -2
- package/components/_breadcumb.scss +2 -0
- package/components/_buttons.scss +39 -7
- package/components/_card-body-wrapper.scss +2 -2
- package/components/_dashboard-header.scss +32 -0
- 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 +5 -3
- package/components/_left-sidebar-menu.scss +193 -39
- package/components/_monaco-editor.scss +1 -1
- package/components/_navbar.scss +108 -7
- package/components/_overview-info.scss +4 -4
- package/components/_pagination.scss +8 -0
- package/components/_payment-card.scss +10 -1
- package/components/_preview-modal.scss +15 -4
- package/components/_pricing-table.scss +1 -1
- package/components/_progress-bar.scss +4 -4
- package/components/_subscription-card.scss +12 -5
- package/components/_table-of-content.scss +1 -1
- package/components/_tfa.scss +69 -0
- package/components/_transitions.scss +261 -0
- package/components/_wizard.scss +15 -3
- package/components/ac-toaster/_ac-toasted.scss +1 -1
- package/components/bbum/_card-team.scss +15 -7
- package/components/bbum/_information-center.scss +15 -1
- package/components/bbum/_mobile-desktop.scss +1 -1
- package/components/bbum/_sign-up-notification.scss +3 -3
- package/components/bbum/_single-post-preview.scss +1 -1
- package/components/bbum/_user-profile.scss +97 -90
- package/components/ui-builder/_ui-builder.scss +19 -2
- package/components/ui-builder/_vue-open-api.scss +104 -0
- package/main.scss +4 -0
- package/package.json +2 -7
- package/plugins/theme.js +4 -0
- package/plugins/vue-toaster.js +3 -0
- 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 +36 -5
- package/vue-components/v2/editor/FilteredFileEditor.vue +188 -0
- package/vue-components/v2/editor/MonacoEditor.vue +125 -0
- package/vue-components/v2/editor/ResourceKeyValueEditor.vue +209 -0
- package/vue-components/v2/loaders/ResourceLoader.vue +101 -0
- package/vue-components/v2/loaders/SidebarLoader.vue +43 -0
- package/vue-components/v2/modal/Modal.vue +38 -13
- 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 +202 -19
- 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 +44 -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/content/ContentTable.vue +5 -0
- package/vue-components/v3/editor/Editor.vue +50 -30
- package/vue-components/v3/editor/FilteredFileEditor.vue +166 -0
- package/vue-components/v3/editor/MonacoEditor.vue +131 -0
- package/vue-components/v3/editor/ResourceKeyValueEditor.vue +124 -0
- package/vue-components/v3/form/Form.vue +63 -0
- package/vue-components/v3/form-fields/Input.vue +10 -10
- package/vue-components/v3/header/HeaderItem.vue +5 -0
- package/vue-components/v3/header/HeaderItems.vue +5 -0
- package/vue-components/v3/loaders/ResourceLoader.vue +83 -0
- package/vue-components/v3/loaders/SidebarLoader.vue +34 -0
- package/vue-components/v3/modal/Modal.vue +39 -16
- package/vue-components/v3/modals/DeleteConfirmationModal.vue +83 -0
- package/vue-components/v3/modals/JsonShowModal.vue +25 -16
- package/vue-components/v3/navbar/Appdrawer.vue +12 -7
- package/vue-components/v3/navbar/ThemeMode.vue +123 -0
- package/vue-components/v3/navbar/User.vue +176 -16
- package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
- package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
- package/vue-components/v3/table/MultiInfoTable.vue +143 -0
- package/vue-components/v3/table/Table.vue +34 -11
- package/vue-components/v3/table/TableContainer.vue +34 -0
- 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
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
font-weight: 500;
|
|
18
18
|
width: 100%;
|
|
19
19
|
border-radius: 4px;
|
|
20
|
-
border: 1px solid $ac-
|
|
20
|
+
border: 1px solid $ac-label-text;
|
|
21
21
|
padding: 6px 30px 8px 20px;
|
|
22
22
|
font-size: $font-size-small;
|
|
23
23
|
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
.multiselect__tag {
|
|
38
|
-
background-color: $
|
|
38
|
+
background-color: $dark-bg-light;
|
|
39
39
|
margin-top: 4px;
|
|
40
40
|
margin-bottom: 0;
|
|
41
41
|
|
|
@@ -85,6 +85,7 @@
|
|
|
85
85
|
font-size: $font-size-small;
|
|
86
86
|
p {
|
|
87
87
|
font-size: 13px;
|
|
88
|
+
color: $ac-color-text;
|
|
88
89
|
}
|
|
89
90
|
a {
|
|
90
91
|
display: block;
|
|
@@ -150,7 +151,7 @@
|
|
|
150
151
|
label {
|
|
151
152
|
padding-left: 15px !important;
|
|
152
153
|
font-size: $font-size-small !important;
|
|
153
|
-
color:
|
|
154
|
+
color: $ac-color-text !important;
|
|
154
155
|
|
|
155
156
|
&:after {
|
|
156
157
|
position: inherit !important;
|
|
@@ -163,7 +164,7 @@
|
|
|
163
164
|
|
|
164
165
|
.multiselect__input {
|
|
165
166
|
&::placeholder {
|
|
166
|
-
color:
|
|
167
|
+
color: $ac-color-value;
|
|
167
168
|
font-weight: 400;
|
|
168
169
|
line-height: 1.6;
|
|
169
170
|
font-size: $font-size-small;
|
|
@@ -392,7 +393,7 @@
|
|
|
392
393
|
left: 20px;
|
|
393
394
|
top: 11px;
|
|
394
395
|
cursor: text;
|
|
395
|
-
color: $ac-
|
|
396
|
+
color: $ac-label-text;
|
|
396
397
|
position: absolute;
|
|
397
398
|
z-index: 99;
|
|
398
399
|
transition: 0.3s ease-in-out;
|
|
@@ -439,6 +440,7 @@
|
|
|
439
440
|
li {
|
|
440
441
|
.multiselect__option {
|
|
441
442
|
font-size: 13px;
|
|
443
|
+
color: $ac-color-text;
|
|
442
444
|
}
|
|
443
445
|
}
|
|
444
446
|
.multiselect__option--selected {
|
|
@@ -489,6 +491,186 @@ li {
|
|
|
489
491
|
|
|
490
492
|
// has info button end
|
|
491
493
|
|
|
494
|
+
// dark theme start
|
|
495
|
+
.is-dark-theme {
|
|
496
|
+
.multiselect__content-wrapper {
|
|
497
|
+
background: var(--dark-bg-light);
|
|
498
|
+
border: 1px solid $ac-white-light;
|
|
499
|
+
|
|
500
|
+
// scroll
|
|
501
|
+
&::-webkit-scrollbar {
|
|
502
|
+
border-radius: 50px;
|
|
503
|
+
width: 3px;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
&::-moz-scrollbar {
|
|
507
|
+
border-radius: 50px;
|
|
508
|
+
width: 3px;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
&::-ms-scrollbar {
|
|
512
|
+
border-radius: 50px;
|
|
513
|
+
width: 3px;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
&::-webkit-scrollbar:hover {
|
|
517
|
+
width: 7px;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
&::-moz-scrollbar:hover {
|
|
521
|
+
width: 7px;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
&::-ms-scrollbar:hover {
|
|
525
|
+
width: 7px;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
&::-webkit-scrollbar-thumb {
|
|
529
|
+
background-color: $dark-bg-light;
|
|
530
|
+
border-radius: 50px;
|
|
531
|
+
height: 2px !important;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
&::-moz-scrollbar-thumb {
|
|
535
|
+
background-color: $dark-bg-light;
|
|
536
|
+
border-radius: 50px;
|
|
537
|
+
height: 2px !important;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
&::-ms-scrollbar-thumb {
|
|
541
|
+
background-color: $dark-bg-light;
|
|
542
|
+
border-radius: 50px;
|
|
543
|
+
height: 2px !important;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
&::-webkit-scrollbar-thumb:hover {
|
|
547
|
+
background-color: $dark-bg-light;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
&::-moz-scrollbar-thumb:hover {
|
|
551
|
+
background-color: $dark-bg-light;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
&::-ms-scrollbar-thumb:hover {
|
|
555
|
+
background-color: $dark-bg-light;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
&:hover::-webkit-scrollbar-corner {
|
|
559
|
+
height: 40px;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
&:hover::-moz-scrollbar-corner {
|
|
563
|
+
height: 40px;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
&:hover::-ms-scrollbar-corner {
|
|
567
|
+
height: 40px;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
// scroll
|
|
571
|
+
|
|
572
|
+
.multiselect__option--selected {
|
|
573
|
+
background: var(--dark-bg);
|
|
574
|
+
color: var(--ac-white-text);
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.multi-select-wrapper {
|
|
579
|
+
background: var(--dark-bg-light);
|
|
580
|
+
|
|
581
|
+
.multiselect__content-wrapper {
|
|
582
|
+
background-color: var(--dark-bg-light);
|
|
583
|
+
background: var(--dark-bg-light);
|
|
584
|
+
|
|
585
|
+
// scroll
|
|
586
|
+
&::-webkit-scrollbar {
|
|
587
|
+
border-radius: 50px;
|
|
588
|
+
width: 3px;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
&::-moz-scrollbar {
|
|
592
|
+
border-radius: 50px;
|
|
593
|
+
width: 3px;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
&::-ms-scrollbar {
|
|
597
|
+
border-radius: 50px;
|
|
598
|
+
width: 3px;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
&::-webkit-scrollbar:hover {
|
|
602
|
+
width: 7px;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
&::-moz-scrollbar:hover {
|
|
606
|
+
width: 7px;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
&::-ms-scrollbar:hover {
|
|
610
|
+
width: 7px;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
&::-webkit-scrollbar-thumb {
|
|
614
|
+
background-color: $dark-bg-light;
|
|
615
|
+
border-radius: 50px;
|
|
616
|
+
height: 2px !important;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
&::-moz-scrollbar-thumb {
|
|
620
|
+
background-color: $dark-bg-light;
|
|
621
|
+
border-radius: 50px;
|
|
622
|
+
height: 2px !important;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
&::-ms-scrollbar-thumb {
|
|
626
|
+
background-color: $dark-bg-light;
|
|
627
|
+
border-radius: 50px;
|
|
628
|
+
height: 2px !important;
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
&::-webkit-scrollbar-thumb:hover {
|
|
632
|
+
background-color: $dark-bg-light;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
&::-moz-scrollbar-thumb:hover {
|
|
636
|
+
background-color: $dark-bg-light;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
&::-ms-scrollbar-thumb:hover {
|
|
640
|
+
background-color: $dark-bg-light;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
&:hover::-webkit-scrollbar-corner {
|
|
644
|
+
height: 40px;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
&:hover::-moz-scrollbar-corner {
|
|
648
|
+
height: 40px;
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
&:hover::-ms-scrollbar-corner {
|
|
652
|
+
height: 40px;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
// scroll
|
|
656
|
+
|
|
657
|
+
.multiselect__content .multiselect__element .multiselect__option {
|
|
658
|
+
color: var(--ac-white-text);
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
.multiselect__option--group {
|
|
662
|
+
color: var(--ac-white-text);
|
|
663
|
+
background-color: var(--dark-bg-light);
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
.multiselect__option--selected {
|
|
667
|
+
color: var(--ac-white-text);
|
|
668
|
+
background-color: var(--dark-bg-light);
|
|
669
|
+
}
|
|
670
|
+
}
|
|
671
|
+
}
|
|
672
|
+
}
|
|
673
|
+
// dark theme end
|
|
492
674
|
/****************************************
|
|
493
675
|
Responsive Classes
|
|
494
676
|
*****************************************/
|
|
@@ -26,6 +26,8 @@
|
|
|
26
26
|
&.is-right {
|
|
27
27
|
.option-dots {
|
|
28
28
|
align-items: flex-end;
|
|
29
|
+
padding: 0 10px;
|
|
30
|
+
margin-right: -10px;
|
|
29
31
|
}
|
|
30
32
|
|
|
31
33
|
.options-items {
|
|
@@ -41,28 +43,30 @@
|
|
|
41
43
|
border: none;
|
|
42
44
|
background-color: transparent;
|
|
43
45
|
transition: 0.3 ease-in-out;
|
|
46
|
+
|
|
44
47
|
|
|
45
48
|
&:hover {
|
|
46
49
|
color: $ac-primary;
|
|
47
50
|
}
|
|
48
51
|
|
|
49
52
|
span {
|
|
50
|
-
width:
|
|
51
|
-
height:
|
|
53
|
+
width: 4px;
|
|
54
|
+
height: 4px;
|
|
52
55
|
background-color: $ac-color-value;
|
|
53
56
|
border-radius: 50%;
|
|
54
|
-
margin-bottom:
|
|
57
|
+
margin-bottom: 1px;
|
|
55
58
|
}
|
|
56
59
|
}
|
|
57
60
|
|
|
58
61
|
.options-items {
|
|
59
|
-
box-shadow: $ac-shadow-1;
|
|
60
62
|
border-radius: 4px;
|
|
61
63
|
position: absolute;
|
|
62
64
|
z-index: 99;
|
|
63
65
|
background-color: $ac-white;
|
|
64
66
|
min-width: 160px;
|
|
65
67
|
top: 30px;
|
|
68
|
+
padding: 5px 0;
|
|
69
|
+
border: 1px solid $ac-white-light;
|
|
66
70
|
|
|
67
71
|
li {
|
|
68
72
|
.list-button {
|
|
@@ -78,8 +82,8 @@
|
|
|
78
82
|
display: block;
|
|
79
83
|
|
|
80
84
|
&:hover {
|
|
81
|
-
background-color: $ac-
|
|
82
|
-
color: $ac-
|
|
85
|
+
background-color: $ac-bg-light-gray;
|
|
86
|
+
color: $ac-primary;
|
|
83
87
|
}
|
|
84
88
|
|
|
85
89
|
span {
|
|
@@ -93,16 +97,27 @@
|
|
|
93
97
|
|
|
94
98
|
a {
|
|
95
99
|
font-size: $font-size-small;
|
|
96
|
-
padding:
|
|
100
|
+
padding: 7px 15px;
|
|
97
101
|
display: block;
|
|
98
102
|
text-decoration: none !important;
|
|
99
103
|
color: $ac-color-text !important;
|
|
104
|
+
border: none;
|
|
100
105
|
|
|
101
106
|
&:hover {
|
|
102
|
-
background-color: $ac-
|
|
103
|
-
color: $ac-
|
|
107
|
+
background-color: $ac-bg-light-gray;
|
|
108
|
+
color: $ac-primary !important;
|
|
104
109
|
}
|
|
105
110
|
}
|
|
106
111
|
}
|
|
107
112
|
}
|
|
108
113
|
}
|
|
114
|
+
|
|
115
|
+
// dark theme start
|
|
116
|
+
.is-dark-theme {
|
|
117
|
+
.ac-options {
|
|
118
|
+
.options-items {
|
|
119
|
+
--ac-white: var(--dark-bg-light);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
// dark theme end
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
.ac-select-box {
|
|
2
2
|
select {
|
|
3
|
-
background-color: $ac-
|
|
4
|
-
border: 1px solid $ac-
|
|
3
|
+
background-color: $ac-blue-light;
|
|
4
|
+
border: 1px solid $ac-label-text;
|
|
5
5
|
font-size: $font-size-small;
|
|
6
6
|
height: 42px;
|
|
7
7
|
padding-left: 20px;
|
|
@@ -29,11 +29,21 @@
|
|
|
29
29
|
|
|
30
30
|
&.select:not(.is-multiple):not(.is-loading)::after {
|
|
31
31
|
top: 50%;
|
|
32
|
-
margin-top:
|
|
32
|
+
margin-top: 0px;
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
&.select:not(.is-multiple):not(.is-loading)::after {
|
|
37
|
-
border-color: $ac-
|
|
37
|
+
border-color: $ac-label-text;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.is-dark-theme {
|
|
42
|
+
.select {
|
|
43
|
+
select {
|
|
44
|
+
background-color: $dark-bg-light;
|
|
45
|
+
color: $ac-full-white;
|
|
46
|
+
border: 1px solid $ac-white-light;
|
|
47
|
+
}
|
|
38
48
|
}
|
|
39
49
|
}
|
|
@@ -137,7 +137,9 @@
|
|
|
137
137
|
}
|
|
138
138
|
|
|
139
139
|
tr {
|
|
140
|
-
|
|
140
|
+
&.is-link {
|
|
141
|
+
cursor: pointer;
|
|
142
|
+
}
|
|
141
143
|
border-bottom: 1px solid var(--ac-white-light);
|
|
142
144
|
|
|
143
145
|
td {
|
|
@@ -259,7 +261,7 @@
|
|
|
259
261
|
}
|
|
260
262
|
}
|
|
261
263
|
|
|
262
|
-
&.ac-
|
|
264
|
+
&.ac-label-texted {
|
|
263
265
|
thead {
|
|
264
266
|
tr {
|
|
265
267
|
th {
|
|
@@ -326,7 +328,7 @@
|
|
|
326
328
|
}
|
|
327
329
|
|
|
328
330
|
&:checked + label::after {
|
|
329
|
-
border-color:
|
|
331
|
+
border-color: $ac-white-lighter;
|
|
330
332
|
}
|
|
331
333
|
}
|
|
332
334
|
}
|
package/components/_ac-tabs.scss
CHANGED
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
li {
|
|
106
106
|
&.is-active {
|
|
107
107
|
a {
|
|
108
|
-
background-color:
|
|
108
|
+
background-color: $ac-white-light;
|
|
109
109
|
}
|
|
110
110
|
}
|
|
111
111
|
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
|
|
121
121
|
&.is-toggle {
|
|
122
122
|
ul {
|
|
123
|
-
border: 1px solid $ac-
|
|
123
|
+
border: 1px solid $ac-label-text;
|
|
124
124
|
border-radius: 4px;
|
|
125
125
|
padding: 4px;
|
|
126
126
|
flex-grow: inherit;
|
|
@@ -181,7 +181,7 @@
|
|
|
181
181
|
|
|
182
182
|
&.is-borderless {
|
|
183
183
|
border: 1px solid transparent;
|
|
184
|
-
background-color:
|
|
184
|
+
background-color: $ac-white-light;
|
|
185
185
|
border-radius: 4px 4px 4px 4px;
|
|
186
186
|
}
|
|
187
187
|
}
|
|
@@ -219,6 +219,42 @@
|
|
|
219
219
|
}
|
|
220
220
|
}
|
|
221
221
|
|
|
222
|
+
.ac-system-body.bb-user-management {
|
|
223
|
+
.tabs.ac-tabs.is-line {
|
|
224
|
+
margin-left: -20px;
|
|
225
|
+
position: sticky;
|
|
226
|
+
top: 50px;
|
|
227
|
+
z-index: 99;
|
|
228
|
+
background: $ac-white;
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
// dark theme
|
|
233
|
+
.is-dark-theme {
|
|
234
|
+
.tabs {
|
|
235
|
+
&.is-toggle {
|
|
236
|
+
a {
|
|
237
|
+
&:hover {
|
|
238
|
+
background-color: $dark-bg;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
a {
|
|
243
|
+
border-bottom: 1px solid $ac-white-lighter;
|
|
244
|
+
color: $ac-full-white;
|
|
245
|
+
}
|
|
246
|
+
&.ac-tabs.is-line {
|
|
247
|
+
ul {
|
|
248
|
+
li.is-active {
|
|
249
|
+
a {
|
|
250
|
+
color: $ac-color-text;
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
|
|
222
258
|
/****************************************
|
|
223
259
|
Responsive Classes
|
|
224
260
|
*****************************************/
|
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
// terminal scss start
|
|
2
|
+
.ac-terminal {
|
|
3
|
+
width: 100%;
|
|
4
|
+
|
|
5
|
+
.terminal-body {
|
|
6
|
+
font-family: "Inconsolata", monospace;
|
|
7
|
+
background-color: var(--dark-bg-light);
|
|
8
|
+
height: 100%;
|
|
9
|
+
color: $ac-white;
|
|
10
|
+
|
|
11
|
+
strong {
|
|
12
|
+
color: $ac-white;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.ac-terminal {
|
|
18
|
+
border-top: 1px solid var(--ac-white-light);
|
|
19
|
+
padding: 0;
|
|
20
|
+
position: fixed;
|
|
21
|
+
width: calc(100% - 270px);
|
|
22
|
+
bottom: 0;
|
|
23
|
+
background-color: $ac-white;
|
|
24
|
+
color: $ac-white;
|
|
25
|
+
font-size: 13px;
|
|
26
|
+
height: 360px;
|
|
27
|
+
z-index: 999;
|
|
28
|
+
transition: 0.3s ease-in-out;
|
|
29
|
+
&.is-collapsed {
|
|
30
|
+
height: 40px !important;
|
|
31
|
+
bottom: 0px;
|
|
32
|
+
.terminal-setting,
|
|
33
|
+
.terminal-body {
|
|
34
|
+
opacity: 0;
|
|
35
|
+
visibility: hidden;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
.resize-handler {
|
|
39
|
+
width: 100%;
|
|
40
|
+
position: absolute;
|
|
41
|
+
background: transparent;
|
|
42
|
+
z-index: 9;
|
|
43
|
+
cursor: row-resize;
|
|
44
|
+
top: -15px;
|
|
45
|
+
&:hover {
|
|
46
|
+
border-bottom: 3px solid $ac-white-light;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
.terminal-header {
|
|
50
|
+
border-top: 1px solid $ac-white-lighter;
|
|
51
|
+
box-shadow: 1px -2px 5px 1px rgba(0, 0, 0, 0.08%);
|
|
52
|
+
.tabs {
|
|
53
|
+
padding: 0 20px 0 20px;
|
|
54
|
+
background-color: $ac-white-lighter;
|
|
55
|
+
overflow: inherit;
|
|
56
|
+
height: 40px;
|
|
57
|
+
ul {
|
|
58
|
+
border-bottom: none;
|
|
59
|
+
padding-left: 0;
|
|
60
|
+
max-width: 1340px;
|
|
61
|
+
overflow-x: auto;
|
|
62
|
+
overflow-y: hidden;
|
|
63
|
+
li {
|
|
64
|
+
a {
|
|
65
|
+
margin-bottom: 0 !important;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
&::-webkit-scrollbar {
|
|
69
|
+
border-radius: 50px;
|
|
70
|
+
height: 3px;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
&::-webkit-scrollbar:hover {
|
|
74
|
+
height: 7px;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
&::-webkit-scrollbar-thumb {
|
|
78
|
+
background-color: $ac-gray-light;
|
|
79
|
+
border-radius: 50px;
|
|
80
|
+
height: 2px !important;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
&::-webkit-scrollbar-thumb:hover {
|
|
84
|
+
background-color: $ac-gray-light;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
&:hover::-webkit-scrollbar-corner {
|
|
88
|
+
height: 40px;
|
|
89
|
+
}
|
|
90
|
+
.is-active {
|
|
91
|
+
box-shadow: none !important;
|
|
92
|
+
margin-right: 0 !important;
|
|
93
|
+
&:after {
|
|
94
|
+
height: 2px;
|
|
95
|
+
}
|
|
96
|
+
a {
|
|
97
|
+
background-color: $ac-white;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
li:not(.is-active) {
|
|
101
|
+
margin-right: -1px;
|
|
102
|
+
border-right: 1px solid $ac-white-lighter;
|
|
103
|
+
}
|
|
104
|
+
li {
|
|
105
|
+
a {
|
|
106
|
+
margin-bottom: 0px;
|
|
107
|
+
font-size: 13px;
|
|
108
|
+
border-radius: 0;
|
|
109
|
+
padding: 5px 10px 5px 20px;
|
|
110
|
+
border: none;
|
|
111
|
+
height: 40px;
|
|
112
|
+
.name-of-tab {
|
|
113
|
+
width: 120px;
|
|
114
|
+
overflow: hidden;
|
|
115
|
+
}
|
|
116
|
+
.terminal-icon {
|
|
117
|
+
img {
|
|
118
|
+
width: 15px;
|
|
119
|
+
margin-right: 10px;
|
|
120
|
+
margin-top: 5px;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.button {
|
|
125
|
+
img {
|
|
126
|
+
width: 10px;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
.options-items {
|
|
133
|
+
top: 15px;
|
|
134
|
+
left: 40px;
|
|
135
|
+
.items-inner {
|
|
136
|
+
border: none;
|
|
137
|
+
li {
|
|
138
|
+
border: none;
|
|
139
|
+
border-right: none !important;
|
|
140
|
+
border-bottom: 1px solid $ac-white-lighter;
|
|
141
|
+
width: 100%;
|
|
142
|
+
&:last-child {
|
|
143
|
+
border-bottom: none;
|
|
144
|
+
}
|
|
145
|
+
a {
|
|
146
|
+
font-size: 13px;
|
|
147
|
+
padding: 10px 20px;
|
|
148
|
+
&:hover {
|
|
149
|
+
color: $ac-primary !important;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.right-control {
|
|
157
|
+
.button {
|
|
158
|
+
.fa {
|
|
159
|
+
font-size: 20px;
|
|
160
|
+
}
|
|
161
|
+
img {
|
|
162
|
+
width: 11px;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
.terminal-setting {
|
|
169
|
+
background-color: var(--dark-bg);
|
|
170
|
+
padding: 5px 20px;
|
|
171
|
+
|
|
172
|
+
.left-content {
|
|
173
|
+
.ac-select-box-wrapper {
|
|
174
|
+
margin-right: 10px;
|
|
175
|
+
.multi-select-wrapper {
|
|
176
|
+
min-width: 200px;
|
|
177
|
+
}
|
|
178
|
+
.multiselect .multiselect__tags .multiselect__input,
|
|
179
|
+
.multiselect .multiselect__tags .multiselect__single {
|
|
180
|
+
background-color: #3b3030;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.right-content {
|
|
186
|
+
.status-message {
|
|
187
|
+
background-color: #666666 !important;
|
|
188
|
+
text-align: center;
|
|
189
|
+
padding: 4px 20px;
|
|
190
|
+
border-radius: 4px;
|
|
191
|
+
color: #ffffff !important;
|
|
192
|
+
text-transform: uppercase;
|
|
193
|
+
&.is-success {
|
|
194
|
+
background-color: #27b064 !important;
|
|
195
|
+
}
|
|
196
|
+
&.is-danger {
|
|
197
|
+
background-color: $ac-red !important;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
.terminal-body {
|
|
203
|
+
p {
|
|
204
|
+
font-family: Fira Code;
|
|
205
|
+
.code-static {
|
|
206
|
+
color: #0ff05c;
|
|
207
|
+
font-weight: 500;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.code-input {
|
|
211
|
+
color: #acd9ff;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
.button {
|
|
216
|
+
&.is-transparent {
|
|
217
|
+
&:hover {
|
|
218
|
+
background-color: $ac-white-light;
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
.multiselect.multiselect--active {
|
|
223
|
+
.multiselect__tags {
|
|
224
|
+
border: 1px solid $ac-white !important;
|
|
225
|
+
.multiselect__input {
|
|
226
|
+
color: $ac-white !important;
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
.multiselect .multiselect__tags {
|
|
231
|
+
background-color: $ac-color-text;
|
|
232
|
+
border: 1px solid $ac-color-value;
|
|
233
|
+
span {
|
|
234
|
+
color: $ac-white;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
// dark theme start
|
|
240
|
+
.is-dark-theme {
|
|
241
|
+
// ac-terminal
|
|
242
|
+
.ac-terminal {
|
|
243
|
+
.terminal-setting {
|
|
244
|
+
--ac-color-value: var(--dark-bg-light);
|
|
245
|
+
|
|
246
|
+
.left-content .ac-select-box-wrapper .multiselect .multiselect__tags {
|
|
247
|
+
.multiselect__input {
|
|
248
|
+
background-color: var(--dark-bg-light);
|
|
249
|
+
color: var(--ac-white-text);
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.multiselect__single {
|
|
253
|
+
background-color: var(--dark-bg-light);
|
|
254
|
+
color: var(--ac-white-text);
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.multiselect {
|
|
260
|
+
.multiselect__tags {
|
|
261
|
+
background-color: transparent;
|
|
262
|
+
|
|
263
|
+
span {
|
|
264
|
+
color: var(--ac-white-text);
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
// dark theme end
|