@policystudio/policy-studio-ui-vue 1.2.0-access.6 → 1.2.0-access.61
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/dist/composables/useCollapseAnimation.d.ts +8 -0
- package/dist/composables/useCollapseAnimation.js +65 -0
- package/dist/composables/useCollapseAnimation.js.map +1 -0
- package/dist/css/psui_styles_output.css +2954 -2258
- package/doc/src/stories/Colors.mdx +3 -3
- package/doc/src/stories/Dropdown.stories.ts +4 -4
- package/doc/src/stories/Input.stories.ts +9 -9
- package/package.json +1 -1
- package/src/assets/scss/base.scss +3 -1
- package/src/assets/scss/components/PsAccordion.scss +20 -29
- package/src/assets/scss/components/PsBadgeWithIcon.scss +2 -2
- package/src/assets/scss/components/PsButton.scss +117 -72
- package/src/assets/scss/components/PsCardInfos.scss +13 -3
- package/src/assets/scss/components/PsChartLegend.scss +2 -2
- package/src/assets/scss/components/PsCheckbox.scss +63 -48
- package/src/assets/scss/components/PsChips.scss +81 -31
- package/src/assets/scss/components/PsClimateZoneBadge.scss +1 -1
- package/src/assets/scss/components/PsCollapse.scss +52 -56
- package/src/assets/scss/components/PsDateCardInfo.scss +7 -4
- package/src/assets/scss/components/PsDialog.scss +114 -39
- package/src/assets/scss/components/PsDraggable.scss +28 -36
- package/src/assets/scss/components/PsDropdown.scss +7 -15
- package/src/assets/scss/components/PsIcon.scss +21 -0
- package/src/assets/scss/components/PsInlineSelector.scss +1 -1
- package/src/assets/scss/components/PsInput.scss +27 -64
- package/src/assets/scss/components/PsInputSelect.scss +6 -6
- package/src/assets/scss/components/PsInputTextArea.scss +1 -1
- package/src/assets/scss/components/PsMiniTag.scss +25 -30
- package/src/assets/scss/components/PsRadioButton.scss +90 -75
- package/src/assets/scss/components/PsSimpleAlert.scss +16 -13
- package/src/assets/scss/components/PsSlider.scss +2 -2
- package/src/assets/scss/components/PsSwitch.scss +39 -21
- package/src/assets/scss/components/PsTabHeader.scss +124 -133
- package/src/assets/scss/components/PsTableResults.scss +16 -723
- package/src/assets/scss/components/PsTagScope.scss +1 -1
- package/src/assets/scss/components/PsTestimonialCard.scss +2 -2
- package/src/assets/scss/components/PsToast.scss +62 -60
- package/src/assets/scss/components/PsToggle.scss +3 -6
- package/src/assets/scss/components/PsTooltip.scss +1 -1
- package/src/assets/scss/components/_PsTableResults.scss +1 -1
- package/src/assets/scss/components/table-layouts/LayoutComparison.scss +200 -0
- package/src/assets/scss/components/table-layouts/LayoutFlexible.scss +325 -0
- package/src/assets/scss/components/table-layouts/LayoutResults.scss +102 -0
- package/src/components/accordion/PsAccordionItem.vue +4 -62
- package/src/components/badges-and-tags/PsCardInfos.vue +6 -2
- package/src/components/badges-and-tags/PsChartLegend.vue +1 -1
- package/src/components/badges-and-tags/PsDateCardInfo.vue +16 -5
- package/src/components/badges-and-tags/PsMiniTag.vue +5 -5
- package/src/components/badges-and-tags/PsTestimonialCard.vue +8 -6
- package/src/components/buttons/PsButton.vue +62 -9
- package/src/components/chips/PsChips.vue +2 -2
- package/src/components/collapse/PsCollapse.vue +18 -16
- package/src/components/controls/PsCheckboxSimple.vue +7 -2
- package/src/components/controls/PsDraggable.vue +4 -4
- package/src/components/controls/PsRadioButton.vue +3 -1
- package/src/components/controls/PsRadioButtonSimple.vue +2 -0
- package/src/components/datatable/PsDataTableItem.vue +1 -1
- package/src/components/forms/PsDropdown.vue +77 -27
- package/src/components/forms/PsDropdownList.vue +5 -1
- package/src/components/forms/PsInput.vue +1 -1
- package/src/components/notifications/PsDialog.vue +60 -11
- package/src/components/notifications/PsSimpleAlert.vue +6 -7
- package/src/components/notifications/PsToast.vue +5 -5
- package/src/components/table-results/PsTableResults.vue +27 -21
- package/src/components/table-results/PsTableResultsHead.vue +5 -5
- package/src/components/table-results/PsTableResultsHeadComparison.vue +2 -2
- package/src/components/table-results/PsTableResultsHeadFlexible.vue +7 -7
- package/src/components/tabs/PsTabHeader.vue +6 -2
- package/src/components/tooltip/PsTooltip.vue +11 -1
- package/src/components/ui/PsIcon.vue +14 -6
- package/src/composables/useCollapseAnimation.ts +76 -0
- package/tailwind.config.js +50 -79
|
@@ -1,78 +1,93 @@
|
|
|
1
1
|
@layer components {
|
|
2
|
+
.psui-el-radio {
|
|
3
|
+
@apply psui-relative psui-text-gray-60 psui-flex;
|
|
2
4
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
5
|
+
&:focus {
|
|
6
|
+
@apply psui-outline-none;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
&:focus-visible {
|
|
10
|
+
@apply psui-outline psui-outline-2 psui-outline-focus-ring psui-outline-offset-2 psui-rounded-[6px];
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
&.disabled {
|
|
14
|
+
.psui-el-checkmark {
|
|
15
|
+
@apply psui-cursor-default psui-text-gray-40 !important;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
input:not(:checked) ~ .psui-el-checkmark::before {
|
|
19
|
+
@apply psui-border-gray-40 psui-bg-gray-20 !important;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
input:checked ~ .psui-el-checkmark::before {
|
|
23
|
+
@apply psui-border-gray-40 psui-bg-gray-60 !important;
|
|
24
|
+
box-shadow: inset 0 0 0 var(--radio-inset-gap) #e6ecf2 !important;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&:not(.disabled):hover {
|
|
29
|
+
input:not(:checked) ~ .psui-el-checkmark::before {
|
|
30
|
+
@apply psui-border-blue-65;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
input:checked ~ .psui-el-checkmark::before {
|
|
34
|
+
@apply psui-border-blue-65 psui-bg-blue-65;
|
|
35
|
+
box-shadow: inset 0 0 0 var(--radio-inset-gap) #ffffff;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
&.size-small {
|
|
40
|
+
@apply psui-text-14;
|
|
41
|
+
|
|
42
|
+
input {
|
|
43
|
+
@apply psui-absolute psui-opacity-0 psui-h-0 psui-w-0;
|
|
44
|
+
|
|
45
|
+
&:checked ~ .psui-el-checkmark::before {
|
|
46
|
+
@apply psui-border-blue-60 psui-bg-blue-65;
|
|
47
|
+
box-shadow: inset 0 0 0 var(--radio-inset-gap) #ffffff;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.psui-el-checkmark {
|
|
52
|
+
@apply psui-cursor-pointer psui-flex psui-items-center psui-min-h-[18px];
|
|
53
|
+
|
|
54
|
+
span {
|
|
55
|
+
@apply psui-ml-[8px];
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
&::before {
|
|
59
|
+
--radio-inset-gap: 3px;
|
|
60
|
+
@apply psui-content-[''] psui-w-[18px] psui-h-[18px] psui-inline-flex psui-items-center psui-justify-center
|
|
61
|
+
psui-rounded-full psui-flex-shrink-0 psui-box-border psui-border-2 psui-border-gray-60;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
&.size-big {
|
|
67
|
+
@apply psui-text-14;
|
|
68
|
+
|
|
69
|
+
input {
|
|
70
|
+
@apply psui-absolute psui-opacity-0 psui-h-0 psui-w-0;
|
|
71
|
+
|
|
72
|
+
&:checked ~ .psui-el-checkmark::before {
|
|
73
|
+
@apply psui-border-blue-60 psui-bg-blue-65;
|
|
74
|
+
box-shadow: inset 0 0 0 var(--radio-inset-gap) #ffffff;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.psui-el-checkmark {
|
|
79
|
+
@apply psui-cursor-pointer psui-flex psui-items-center psui-min-h-[24px];
|
|
80
|
+
|
|
81
|
+
span {
|
|
82
|
+
@apply psui-ml-[8px];
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
&::before {
|
|
86
|
+
--radio-inset-gap: 4px;
|
|
87
|
+
@apply psui-content-[''] psui-w-[24px] psui-h-[24px] psui-inline-flex psui-items-center psui-justify-center
|
|
88
|
+
psui-rounded-full psui-flex-shrink-0 psui-box-border psui-border-2 psui-border-gray-60;
|
|
77
89
|
}
|
|
78
|
-
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
@layer components {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
&-button{
|
|
9
|
-
@apply psui-icon;
|
|
10
|
-
&:focus{
|
|
11
|
-
@apply psui-outline-none;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
2
|
+
.psui-el-simple-alert {
|
|
3
|
+
@apply psui-flex psui-items-center psui-gap-1 psui-p-1 psui-cursor-pointer psui-w-full psui-rounded-md;
|
|
4
|
+
word-break: normal;
|
|
5
|
+
|
|
6
|
+
&-message {
|
|
7
|
+
@apply psui-text-accentSmall psui-mx-auto psui-font-bold;
|
|
14
8
|
}
|
|
15
|
-
|
|
9
|
+
|
|
10
|
+
&-button {
|
|
11
|
+
@apply psui-icon;
|
|
12
|
+
|
|
13
|
+
&:focus {
|
|
14
|
+
@apply psui-outline-none;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
@apply psui-mb-2;
|
|
5
5
|
|
|
6
6
|
span {
|
|
7
|
-
@apply psui-text-gray-
|
|
7
|
+
@apply psui-text-gray-60 psui-text-14
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
&-bubble {
|
|
59
|
-
@apply psui-bg-gray-20 psui-font-bold psui-text-gray-
|
|
59
|
+
@apply psui-bg-gray-20 psui-font-bold psui-text-gray-60 psui-px-2 psui-py-px psui-rounded-sm psui-float-left psui-ml-2;
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
&.layout-default {
|
|
@@ -3,77 +3,95 @@
|
|
|
3
3
|
@apply psui-relative psui-inline-block psui-rounded-3xl;
|
|
4
4
|
|
|
5
5
|
&:focus {
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
outline: none;
|
|
7
|
+
}
|
|
8
8
|
|
|
9
9
|
&:focus-visible {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
outline: 2px solid #2563eb;
|
|
11
|
+
outline-offset: 2px;
|
|
12
|
+
border-radius: 6px;
|
|
13
|
+
}
|
|
14
14
|
|
|
15
15
|
&.disabled {
|
|
16
16
|
pointer-events: none;
|
|
17
17
|
.psui-el-switch-button {
|
|
18
|
-
@apply psui-bg-gray-30;
|
|
18
|
+
@apply psui-bg-gray-30 psui-border psui-border-gray-60;
|
|
19
|
+
&::before {
|
|
20
|
+
@apply psui-border psui-border-gray-60 psui-top-[1px] psui-left-[1px];
|
|
21
|
+
}
|
|
19
22
|
}
|
|
20
23
|
}
|
|
21
24
|
|
|
22
25
|
&.size-big {
|
|
23
26
|
width: 46px;
|
|
24
|
-
height: 24px;
|
|
27
|
+
height: 24px;
|
|
25
28
|
}
|
|
29
|
+
|
|
26
30
|
&.size-small {
|
|
27
31
|
width: 30px;
|
|
28
32
|
height: 16px;
|
|
29
33
|
|
|
34
|
+
&.disabled {
|
|
35
|
+
pointer-events: none;
|
|
36
|
+
.psui-el-switch-button {
|
|
37
|
+
@apply psui-bg-gray-30 psui-border psui-border-gray-60;
|
|
38
|
+
&.toggle-false {
|
|
39
|
+
&::before {
|
|
40
|
+
@apply psui-border psui-border-gray-60 psui-bg-gray-30 psui-top-[1px] psui-left-[1px];
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
30
46
|
.psui-el-switch-button {
|
|
31
|
-
&.toggle-false{
|
|
47
|
+
&.toggle-false {
|
|
32
48
|
&::before {
|
|
33
49
|
@apply psui-absolute psui-h-3 psui-w-3 psui-bg-white psui-rounded-full psui-transition-all psui-ease-in-out psui-duration-300 psui-shadow-elevation-20;
|
|
34
50
|
left: 2px;
|
|
35
51
|
top: 2px;
|
|
36
|
-
content:
|
|
52
|
+
content: "";
|
|
37
53
|
}
|
|
38
54
|
}
|
|
39
|
-
|
|
55
|
+
|
|
40
56
|
&.toggle-true {
|
|
41
57
|
&::before {
|
|
42
58
|
@apply psui-absolute psui-h-3 psui-w-3 psui-bg-white psui-rounded-full psui-transition-all psui-ease-in-out psui-duration-300 psui-shadow-elevation-20;
|
|
43
59
|
left: 16px;
|
|
44
60
|
top: 2px;
|
|
45
|
-
content:
|
|
61
|
+
content: "";
|
|
46
62
|
}
|
|
47
63
|
}
|
|
48
|
-
}
|
|
64
|
+
}
|
|
49
65
|
}
|
|
66
|
+
|
|
50
67
|
&:focus {
|
|
51
68
|
@apply psui-outline-none;
|
|
52
69
|
}
|
|
70
|
+
|
|
53
71
|
input {
|
|
54
72
|
@apply psui-opacity-0 psui-w-0 psui-h-0;
|
|
55
73
|
}
|
|
74
|
+
|
|
56
75
|
.psui-el-switch-button {
|
|
57
76
|
@apply psui-absolute psui-inline-block psui-cursor-pointer psui-top-0 psui-left-0 psui-right-0 psui-bottom-0 psui-rounded-full psui-transition-all psui-ease-in-out psui-duration-500;
|
|
58
|
-
|
|
59
|
-
|
|
77
|
+
|
|
78
|
+
&.toggle-false {
|
|
60
79
|
&::before {
|
|
61
80
|
@apply psui-absolute psui-h-5 psui-w-5 psui-bg-white psui-rounded-full psui-transition-all psui-ease-in-out psui-duration-300 psui-shadow-elevation-20;
|
|
62
81
|
left: 2px;
|
|
63
82
|
top: 2px;
|
|
64
|
-
content:
|
|
83
|
+
content: "";
|
|
65
84
|
}
|
|
66
85
|
}
|
|
67
|
-
|
|
68
|
-
&.toggle-true {
|
|
69
86
|
|
|
87
|
+
&.toggle-true {
|
|
70
88
|
&::before {
|
|
71
89
|
@apply psui-absolute psui-h-5 psui-w-5 psui-bg-white psui-rounded-full psui-transition-all psui-ease-in-out psui-duration-300 psui-shadow-elevation-20;
|
|
72
90
|
left: 24px;
|
|
73
|
-
top:2px;
|
|
74
|
-
content:
|
|
91
|
+
top: 2px;
|
|
92
|
+
content: "";
|
|
75
93
|
}
|
|
76
94
|
}
|
|
77
95
|
}
|
|
78
96
|
}
|
|
79
|
-
}
|
|
97
|
+
}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
@layer components{
|
|
2
|
-
|
|
1
|
+
@layer components {
|
|
3
2
|
.psui-el-tab-header {
|
|
4
|
-
@apply psui-flex;
|
|
3
|
+
@apply psui-flex psui-space-x-1;
|
|
5
4
|
|
|
6
5
|
button {
|
|
7
6
|
@apply transition-default psui-text-14;
|
|
8
|
-
|
|
7
|
+
|
|
9
8
|
&.status-disabled {
|
|
10
9
|
@apply psui-cursor-not-allowed;
|
|
11
10
|
}
|
|
@@ -15,184 +14,176 @@
|
|
|
15
14
|
}
|
|
16
15
|
|
|
17
16
|
&:focus-visible {
|
|
18
|
-
outline: 2px solid #
|
|
19
|
-
outline-offset: 2px;
|
|
20
|
-
border-radius: 6px;
|
|
17
|
+
outline: 2px solid #2563eb;
|
|
18
|
+
outline-offset: 2px;
|
|
19
|
+
border-radius: 6px;
|
|
21
20
|
}
|
|
22
21
|
}
|
|
23
22
|
|
|
24
23
|
&.status-disabled {
|
|
25
24
|
.psui-el-input-wrapper {
|
|
26
|
-
@apply psui-bg-gray-20 psui-border-gray-20
|
|
25
|
+
@apply psui-bg-gray-20 psui-border-gray-20;
|
|
27
26
|
}
|
|
28
27
|
}
|
|
29
28
|
|
|
30
29
|
/* Layout Policy Design */
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
&.status-active {
|
|
54
|
-
@apply psui-border-blue-60;
|
|
55
|
-
|
|
56
|
-
&:after {
|
|
57
|
-
@apply psui-opacity-100;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
> div {
|
|
61
|
-
@apply psui-text-blue-60;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
> span {
|
|
65
|
-
@apply psui-font-bold psui-text-gray-70;
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
> div {
|
|
70
|
-
@apply psui-text-gray-50 psui-mr-1;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
> span {
|
|
74
|
-
line-height: 120%;
|
|
75
|
-
font-size: 14px;
|
|
76
|
-
@apply psui-text-gray-60 psui-font-bold;
|
|
77
|
-
}
|
|
30
|
+
&.layout-policy-design {
|
|
31
|
+
button {
|
|
32
|
+
padding: 9px 2px 10px 0px;
|
|
33
|
+
margin-right: 8px;
|
|
34
|
+
@apply psui-flex psui-items-center psui-relative;
|
|
35
|
+
|
|
36
|
+
&:not(:first-child) {
|
|
37
|
+
margin-left: 8px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
&:after {
|
|
41
|
+
@apply psui-content-[''] psui-transition-all psui-h-[3px] psui-block psui-w-full psui-absolute psui-bottom-0 psui-left-0 psui-rounded-tl-[20px] psui-rounded-tr-[20px] psui-bg-blue-60 psui-opacity-0;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&:hover {
|
|
45
|
+
> span {
|
|
46
|
+
@apply psui-font-semibold psui-text-blue-60;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
> div {
|
|
50
|
+
@apply psui-text-blue-60;
|
|
78
51
|
}
|
|
79
52
|
}
|
|
80
|
-
|
|
81
53
|
|
|
54
|
+
&.status-active {
|
|
55
|
+
&:after {
|
|
56
|
+
@apply psui-opacity-100;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
82
59
|
|
|
60
|
+
> div {
|
|
61
|
+
@apply psui-text-gray-60 psui-mr-1;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
> span {
|
|
65
|
+
@apply psui-text-gray-80 psui-font-semibold;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
83
69
|
/* ----------------------------------------- */
|
|
84
70
|
|
|
85
71
|
/* Layout Standard */
|
|
86
72
|
/* ----------------------------------------- */
|
|
87
|
-
|
|
88
|
-
|
|
73
|
+
&.layout-standard {
|
|
74
|
+
@apply psui-rounded-md;
|
|
89
75
|
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
}
|
|
76
|
+
.psui-el-tooltip {
|
|
77
|
+
&:not(:last-child) {
|
|
78
|
+
margin-right: 20px;
|
|
94
79
|
}
|
|
95
|
-
|
|
96
|
-
button {
|
|
97
|
-
@apply psui-bg-gray-10 psui-text-gray-60;
|
|
98
|
-
padding: 6px 12px;
|
|
99
|
-
box-shadow: inset 0px 0px 8px rgba(40, 50, 59, 0.05);
|
|
80
|
+
}
|
|
100
81
|
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
82
|
+
button {
|
|
83
|
+
@apply psui-bg-gray-10 psui-text-gray-60;
|
|
84
|
+
padding: 6px 12px;
|
|
85
|
+
box-shadow: inset 0px 0px 8px rgba(40, 50, 59, 0.05);
|
|
104
86
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
87
|
+
&:not(:last-child) {
|
|
88
|
+
margin-right: 1px;
|
|
89
|
+
}
|
|
108
90
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
91
|
+
&:first-child {
|
|
92
|
+
@apply psui-rounded-l;
|
|
93
|
+
}
|
|
112
94
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
}
|
|
95
|
+
&:last-child {
|
|
96
|
+
@apply psui-rounded-r;
|
|
97
|
+
}
|
|
117
98
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
99
|
+
&:hover {
|
|
100
|
+
@apply psui-text-blue-60;
|
|
101
|
+
box-shadow: inset 0px 0px 8px rgba(40, 50, 59, 0.05);
|
|
102
|
+
}
|
|
121
103
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
104
|
+
&.status-active {
|
|
105
|
+
@apply psui-text-white psui-bg-blue-60 psui-font-bold;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
&.status-disabled:hover {
|
|
109
|
+
@apply psui-text-gray-60;
|
|
125
110
|
}
|
|
126
111
|
}
|
|
112
|
+
}
|
|
127
113
|
/* ----------------------------------------- Layout Standard */
|
|
128
|
-
|
|
114
|
+
|
|
129
115
|
/* Layout Underline */
|
|
130
116
|
/* ----------------------------------------- */
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
}
|
|
117
|
+
&.layout-underline {
|
|
118
|
+
.psui-el-tooltip {
|
|
119
|
+
&:not(:last-child) {
|
|
120
|
+
margin-right: 20px;
|
|
136
121
|
}
|
|
122
|
+
}
|
|
137
123
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
padding: 11.5px 0;
|
|
124
|
+
button {
|
|
125
|
+
@apply psui-text-gray-80 psui-font-semibold psui-relative;
|
|
126
|
+
padding: 8px 0;
|
|
142
127
|
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
128
|
+
&:hover {
|
|
129
|
+
@apply psui-text-blue-60;
|
|
130
|
+
}
|
|
146
131
|
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
132
|
+
&:not(:last-child) {
|
|
133
|
+
margin-right: 8px;
|
|
134
|
+
}
|
|
150
135
|
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
136
|
+
&.status-enable:hover {
|
|
137
|
+
@apply psui-text-blue-60;
|
|
138
|
+
}
|
|
154
139
|
|
|
155
|
-
|
|
156
|
-
|
|
140
|
+
&.status-active {
|
|
141
|
+
&::after {
|
|
142
|
+
@apply psui-content-['']
|
|
143
|
+
psui-absolute
|
|
144
|
+
psui-bottom-0
|
|
145
|
+
psui-left-0
|
|
146
|
+
psui-w-full
|
|
147
|
+
psui-h-[3px]
|
|
148
|
+
psui-rounded-tl-[20px]
|
|
149
|
+
psui-rounded-tr-[20px]
|
|
150
|
+
psui-bg-blue-60;
|
|
157
151
|
}
|
|
158
152
|
}
|
|
159
153
|
}
|
|
154
|
+
}
|
|
160
155
|
/* ----------------------------------------- Layout Underline */
|
|
161
|
-
|
|
162
|
-
|
|
156
|
+
|
|
163
157
|
/* Layout Folder */
|
|
164
158
|
/* ----------------------------------------- */
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
margin-right: 20px;
|
|
170
|
-
}
|
|
159
|
+
&.layout-folder {
|
|
160
|
+
.psui-el-tooltip {
|
|
161
|
+
&:not(:last-child) {
|
|
162
|
+
margin-right: 20px;
|
|
171
163
|
}
|
|
164
|
+
}
|
|
172
165
|
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
166
|
+
button {
|
|
167
|
+
@apply psui-bg-gray-10 psui-text-gray-60 psui-rounded-t;
|
|
168
|
+
padding: 9px 12px;
|
|
176
169
|
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
170
|
+
&:hover {
|
|
171
|
+
@apply psui-text-blue-60;
|
|
172
|
+
}
|
|
180
173
|
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
174
|
+
&:not(:last-child) {
|
|
175
|
+
margin-right: 4px;
|
|
176
|
+
}
|
|
184
177
|
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
178
|
+
&.status-enable:hover {
|
|
179
|
+
@apply psui-text-gray-60;
|
|
180
|
+
}
|
|
188
181
|
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
}
|
|
182
|
+
&.status-active {
|
|
183
|
+
@apply psui-text-blue-60 psui-font-bold psui-bg-white;
|
|
192
184
|
}
|
|
193
185
|
}
|
|
186
|
+
}
|
|
194
187
|
/* ----------------------------------------- Layout Folder */
|
|
195
|
-
|
|
196
188
|
}
|
|
197
|
-
|
|
198
|
-
}
|
|
189
|
+
}
|