@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
|
@@ -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,12 +151,12 @@
|
|
|
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;
|
|
157
158
|
content: "" !important;
|
|
158
|
-
background: transparent;
|
|
159
|
+
background-color: transparent;
|
|
159
160
|
}
|
|
160
161
|
}
|
|
161
162
|
}
|
|
@@ -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;
|
|
@@ -216,7 +217,7 @@
|
|
|
216
217
|
font-size: $font-size-extra-small;
|
|
217
218
|
top: -9px;
|
|
218
219
|
font-weight: 500;
|
|
219
|
-
color:
|
|
220
|
+
color: $ac-black;
|
|
220
221
|
}
|
|
221
222
|
}
|
|
222
223
|
|
|
@@ -384,7 +385,7 @@
|
|
|
384
385
|
.multiselect__select {
|
|
385
386
|
height: calc(100% - 2px);
|
|
386
387
|
border-radius: 0 4px 4px 0;
|
|
387
|
-
background: transparent !important;
|
|
388
|
+
background-color: transparent !important;
|
|
388
389
|
}
|
|
389
390
|
|
|
390
391
|
label {
|
|
@@ -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;
|
|
@@ -410,10 +411,10 @@
|
|
|
410
411
|
left: 15px;
|
|
411
412
|
padding: 0 5px;
|
|
412
413
|
font-size: $font-size-small;
|
|
413
|
-
color:
|
|
414
|
+
color: $ac-black;
|
|
414
415
|
|
|
415
416
|
&::after {
|
|
416
|
-
background: $ac-white;
|
|
417
|
+
background-color: $ac-white;
|
|
417
418
|
}
|
|
418
419
|
}
|
|
419
420
|
|
|
@@ -422,7 +423,7 @@
|
|
|
422
423
|
content: "";
|
|
423
424
|
left: 0;
|
|
424
425
|
top: 50%;
|
|
425
|
-
background: $ac-white;
|
|
426
|
+
background-color: $ac-white;
|
|
426
427
|
width: 100%;
|
|
427
428
|
height: 2px;
|
|
428
429
|
margin-top: -1px;
|
|
@@ -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 {
|
|
@@ -468,7 +470,7 @@ li {
|
|
|
468
470
|
|
|
469
471
|
.button {
|
|
470
472
|
&.is-information {
|
|
471
|
-
background: transparent;
|
|
473
|
+
background-color: transparent;
|
|
472
474
|
border: none;
|
|
473
475
|
position: absolute;
|
|
474
476
|
right: 0;
|
|
@@ -480,7 +482,7 @@ li {
|
|
|
480
482
|
&:focus {
|
|
481
483
|
outline: none;
|
|
482
484
|
box-shadow: none;
|
|
483
|
-
background: #e4e8ef;
|
|
485
|
+
background-color: #e4e8ef;
|
|
484
486
|
transform: scale(0.8);
|
|
485
487
|
}
|
|
486
488
|
}
|
|
@@ -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 {
|
|
@@ -39,51 +41,53 @@
|
|
|
39
41
|
cursor: pointer;
|
|
40
42
|
align-items: flex-start;
|
|
41
43
|
border: none;
|
|
42
|
-
background: transparent;
|
|
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:
|
|
52
|
-
background:
|
|
53
|
+
width: 4px;
|
|
54
|
+
height: 4px;
|
|
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
|
-
background: $ac-white;
|
|
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 {
|
|
69
73
|
width: 100%;
|
|
70
|
-
background: transparent;
|
|
74
|
+
background-color: transparent;
|
|
71
75
|
border: none;
|
|
72
76
|
cursor: pointer;
|
|
73
77
|
font-weight: 400;
|
|
74
78
|
text-align: left;
|
|
75
|
-
color:
|
|
79
|
+
color: $ac-color-value;
|
|
76
80
|
font-size: $font-size-small;
|
|
77
81
|
padding: 10px 30px;
|
|
78
82
|
display: block;
|
|
79
83
|
|
|
80
84
|
&:hover {
|
|
81
|
-
background: $ac-
|
|
82
|
-
color: $ac-
|
|
85
|
+
background-color: $ac-bg-light-gray;
|
|
86
|
+
color: $ac-primary;
|
|
83
87
|
}
|
|
84
88
|
|
|
85
89
|
span {
|
|
86
|
-
background: transparent;
|
|
90
|
+
background-color: transparent;
|
|
87
91
|
|
|
88
92
|
&.icon {
|
|
89
93
|
margin-right: 5px;
|
|
@@ -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
|
-
color:
|
|
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: $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;
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
&:hover {
|
|
14
|
-
border: 1px solid $ac-
|
|
14
|
+
border: 1px solid $ac-gray-lightest;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
&:focus {
|
|
@@ -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
|
}
|
|
@@ -12,20 +12,21 @@
|
|
|
12
12
|
|
|
13
13
|
/* Handle */
|
|
14
14
|
&::-webkit-scrollbar-thumb {
|
|
15
|
-
background:
|
|
15
|
+
background-color: $ac-gray-light;
|
|
16
16
|
border-radius: 10px;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
/* Handle on hover */
|
|
20
20
|
&::-webkit-scrollbar-thumb:hover {
|
|
21
|
-
background:
|
|
21
|
+
background-color: $ac-gray-light;
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
// INFO TABLE START
|
|
27
27
|
.table.ac-info-table {
|
|
28
|
-
|
|
28
|
+
background-color: transparent;
|
|
29
|
+
|
|
29
30
|
&.is-fullwidth {
|
|
30
31
|
tbody {
|
|
31
32
|
tr {
|
|
@@ -49,11 +50,7 @@
|
|
|
49
50
|
td {
|
|
50
51
|
border: none;
|
|
51
52
|
font-size: $font-size-small;
|
|
52
|
-
color:
|
|
53
|
-
var(--font-hsl-hue),
|
|
54
|
-
var(--font-hsl-saturation),
|
|
55
|
-
calc(var(--font-hsl-lightness) + 25%)
|
|
56
|
-
);
|
|
53
|
+
color: $ac-color-value;
|
|
57
54
|
font-weight: 400;
|
|
58
55
|
padding: 3px 0px;
|
|
59
56
|
min-width: 230px;
|
|
@@ -99,6 +96,7 @@
|
|
|
99
96
|
color: $ac-color-heading;
|
|
100
97
|
}
|
|
101
98
|
}
|
|
99
|
+
|
|
102
100
|
&.sorting-desc {
|
|
103
101
|
&::after {
|
|
104
102
|
color: $ac-color-heading;
|
|
@@ -114,10 +112,12 @@
|
|
|
114
112
|
font-weight: 1000;
|
|
115
113
|
display: block;
|
|
116
114
|
}
|
|
115
|
+
|
|
117
116
|
&:before {
|
|
118
117
|
right: 1em;
|
|
119
118
|
content: "\2191";
|
|
120
119
|
}
|
|
120
|
+
|
|
121
121
|
&:after {
|
|
122
122
|
right: 0.5em;
|
|
123
123
|
content: "\2193";
|
|
@@ -133,12 +133,15 @@
|
|
|
133
133
|
box-shadow: inset 0 0 0 1px $ac-primary;
|
|
134
134
|
border-radius: 4px;
|
|
135
135
|
border-bottom: none;
|
|
136
|
-
color:
|
|
136
|
+
color: $ac-black;
|
|
137
137
|
}
|
|
138
138
|
|
|
139
139
|
tr {
|
|
140
|
-
|
|
141
|
-
|
|
140
|
+
&.is-link {
|
|
141
|
+
cursor: pointer;
|
|
142
|
+
}
|
|
143
|
+
border-bottom: 1px solid var(--ac-white-light);
|
|
144
|
+
|
|
142
145
|
td {
|
|
143
146
|
font-size: $font-size-small;
|
|
144
147
|
padding: 5px 20px;
|
|
@@ -157,12 +160,14 @@
|
|
|
157
160
|
color: $ac-primary;
|
|
158
161
|
font-weight: 500;
|
|
159
162
|
transition: 0.3s ease-in-out;
|
|
163
|
+
|
|
160
164
|
&:hover {
|
|
161
165
|
color: $ac-color-heading;
|
|
162
166
|
}
|
|
163
167
|
}
|
|
164
168
|
}
|
|
165
169
|
}
|
|
170
|
+
|
|
166
171
|
&.is-error {
|
|
167
172
|
color: $ac-danger;
|
|
168
173
|
}
|
|
@@ -174,12 +179,12 @@
|
|
|
174
179
|
display: inline-flex;
|
|
175
180
|
|
|
176
181
|
&.is-danger {
|
|
177
|
-
background: $ac-danger;
|
|
182
|
+
background-color: $ac-danger;
|
|
178
183
|
}
|
|
179
184
|
|
|
180
185
|
i.fa {
|
|
181
186
|
position: absolute;
|
|
182
|
-
background: $ac-primary;
|
|
187
|
+
background-color: $ac-primary;
|
|
183
188
|
color: $ac-white;
|
|
184
189
|
font-size: $font-size-tiny;
|
|
185
190
|
width: 15px;
|
|
@@ -202,15 +207,8 @@
|
|
|
202
207
|
border-radius: 50%;
|
|
203
208
|
}
|
|
204
209
|
}
|
|
205
|
-
|
|
206
|
-
// &:first-child {
|
|
207
|
-
// border-radius: 4px 0 0 4px;
|
|
208
|
-
// }
|
|
209
|
-
|
|
210
|
-
// &:last-child {
|
|
211
|
-
// border-radius: 0 4px 4px 0;
|
|
212
|
-
// }
|
|
213
210
|
}
|
|
211
|
+
|
|
214
212
|
.options-items {
|
|
215
213
|
a:hover {
|
|
216
214
|
color: $ac-white;
|
|
@@ -224,7 +222,7 @@
|
|
|
224
222
|
box-shadow: inset 0 0 0 1px $ac-primary;
|
|
225
223
|
border-radius: 4px;
|
|
226
224
|
border-bottom: none;
|
|
227
|
-
color:
|
|
225
|
+
color: $ac-black;
|
|
228
226
|
}
|
|
229
227
|
|
|
230
228
|
&.is-hoverless {
|
|
@@ -236,36 +234,41 @@
|
|
|
236
234
|
transition: 0.3s ease-in-out;
|
|
237
235
|
}
|
|
238
236
|
}
|
|
237
|
+
|
|
239
238
|
.increase-width {
|
|
240
239
|
position: relative;
|
|
241
240
|
visibility: hidden;
|
|
242
241
|
width: 36px;
|
|
242
|
+
|
|
243
243
|
.increase-innner {
|
|
244
|
-
border-bottom: 1px solid
|
|
245
|
-
border-top: 1px solid
|
|
244
|
+
border-bottom: 1px solid var(--ac-white-light);
|
|
245
|
+
border-top: 1px solid var(--ac-white-light);
|
|
246
246
|
bottom: -1px;
|
|
247
247
|
left: 0;
|
|
248
248
|
position: absolute;
|
|
249
249
|
right: -451px;
|
|
250
250
|
top: -1px;
|
|
251
251
|
visibility: visible;
|
|
252
|
-
background:
|
|
252
|
+
background-color: $ac-white-lighter;
|
|
253
253
|
}
|
|
254
254
|
}
|
|
255
|
+
|
|
255
256
|
td {
|
|
256
257
|
&.increase-width {
|
|
257
258
|
.increase-innner {
|
|
258
|
-
background: transparent;
|
|
259
|
+
background-color: transparent;
|
|
259
260
|
}
|
|
260
261
|
}
|
|
261
262
|
}
|
|
262
|
-
|
|
263
|
+
|
|
264
|
+
&.ac-label-texted {
|
|
263
265
|
thead {
|
|
264
266
|
tr {
|
|
265
267
|
th {
|
|
266
268
|
border-top: 1px solid $ac-white-light;
|
|
267
269
|
border-bottom: 1px solid $ac-white-light;
|
|
268
270
|
border-right: 1px solid $ac-white-light;
|
|
271
|
+
|
|
269
272
|
&:first-child {
|
|
270
273
|
border-left: 1px solid $ac-white-light;
|
|
271
274
|
}
|
|
@@ -281,13 +284,15 @@
|
|
|
281
284
|
|
|
282
285
|
td {
|
|
283
286
|
font-size: $font-size-small;
|
|
284
|
-
color: $ac-
|
|
285
|
-
background-color:
|
|
287
|
+
color: $ac-color-value;
|
|
288
|
+
background-color: transparent;
|
|
286
289
|
border-bottom: 1px solid $ac-white-light;
|
|
287
290
|
border-right: 1px solid $ac-white-light;
|
|
291
|
+
|
|
288
292
|
&:first-child {
|
|
289
293
|
border-left: 1px solid $ac-white-light;
|
|
290
294
|
}
|
|
295
|
+
|
|
291
296
|
&:first-child {
|
|
292
297
|
color: $ac-color-heading;
|
|
293
298
|
border-radius: 0;
|
|
@@ -311,7 +316,7 @@
|
|
|
311
316
|
&::after {
|
|
312
317
|
top: 6px;
|
|
313
318
|
left: 6px;
|
|
314
|
-
border-color:
|
|
319
|
+
border-color: $ac-gray-lightest;
|
|
315
320
|
width: 0.3rem;
|
|
316
321
|
height: 0.5rem;
|
|
317
322
|
}
|
|
@@ -323,7 +328,7 @@
|
|
|
323
328
|
}
|
|
324
329
|
|
|
325
330
|
&:checked + label::after {
|
|
326
|
-
border-color:
|
|
331
|
+
border-color: $ac-white-lighter;
|
|
327
332
|
}
|
|
328
333
|
}
|
|
329
334
|
}
|
|
@@ -348,8 +353,7 @@
|
|
|
348
353
|
|
|
349
354
|
tbody {
|
|
350
355
|
tr {
|
|
351
|
-
background-color:
|
|
352
|
-
transition: 0.3s ease-in-out;
|
|
356
|
+
background-color: transparent;
|
|
353
357
|
}
|
|
354
358
|
}
|
|
355
359
|
}
|
|
@@ -374,7 +378,7 @@
|
|
|
374
378
|
|
|
375
379
|
&.is-dark {
|
|
376
380
|
thead {
|
|
377
|
-
background-color: $ac-
|
|
381
|
+
background-color: $ac-color-heading;
|
|
378
382
|
|
|
379
383
|
tr {
|
|
380
384
|
th {
|
|
@@ -390,11 +394,11 @@
|
|
|
390
394
|
}
|
|
391
395
|
|
|
392
396
|
&:nth-child(odd) {
|
|
393
|
-
background-color:
|
|
397
|
+
background-color: $ac-color-value;
|
|
394
398
|
}
|
|
395
399
|
|
|
396
400
|
&:nth-child(even) {
|
|
397
|
-
background-color: $ac-
|
|
401
|
+
background-color: $ac-color-heading;
|
|
398
402
|
}
|
|
399
403
|
|
|
400
404
|
&:hover {
|
|
@@ -408,10 +412,12 @@
|
|
|
408
412
|
}
|
|
409
413
|
}
|
|
410
414
|
}
|
|
415
|
+
|
|
411
416
|
.table.ac-table tbody tr:hover td a:not(.tag a) {
|
|
412
417
|
text-decoration: underline;
|
|
413
418
|
color: $ac-primary;
|
|
414
419
|
}
|
|
420
|
+
|
|
415
421
|
// GENERAL TABLE END
|
|
416
422
|
|
|
417
423
|
/****************************************
|