@wippy-fe/theme 0.0.7
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/README.md +64 -0
- package/THEMING.md +316 -0
- package/package.json +35 -0
- package/primevue/accordion.css +58 -0
- package/primevue/autocomplete.css +144 -0
- package/primevue/avatar.css +50 -0
- package/primevue/badge.css +53 -0
- package/primevue/blockui.css +15 -0
- package/primevue/breadcrumb.css +41 -0
- package/primevue/button.css +341 -0
- package/primevue/buttongroup.css +19 -0
- package/primevue/card.css +22 -0
- package/primevue/carousel.css +64 -0
- package/primevue/cascadeselect.css +169 -0
- package/primevue/checkbox.css +84 -0
- package/primevue/chip.css +27 -0
- package/primevue/colorpicker.css +47 -0
- package/primevue/common.css +81 -0
- package/primevue/confirmdialog.css +10 -0
- package/primevue/confirmpopup.css +66 -0
- package/primevue/contextmenu.css +101 -0
- package/primevue/datatable.css +408 -0
- package/primevue/dataview.css +29 -0
- package/primevue/datepicker.css +211 -0
- package/primevue/dialog.css +125 -0
- package/primevue/divider.css +52 -0
- package/primevue/dock.css +84 -0
- package/primevue/drawer.css +94 -0
- package/primevue/fieldset.css +45 -0
- package/primevue/fileupload.css +57 -0
- package/primevue/floatlabel.css +73 -0
- package/primevue/galleria.css +244 -0
- package/primevue/iconfield.css +23 -0
- package/primevue/iftalabel.css +32 -0
- package/primevue/image.css +56 -0
- package/primevue/imagecompare.css +38 -0
- package/primevue/inplace.css +13 -0
- package/primevue/inputgroup.css +67 -0
- package/primevue/inputnumber.css +84 -0
- package/primevue/inputotp.css +9 -0
- package/primevue/inputtext.css +38 -0
- package/primevue/knob.css +37 -0
- package/primevue/listbox.css +79 -0
- package/primevue/megamenu.css +207 -0
- package/primevue/menu.css +51 -0
- package/primevue/menubar.css +169 -0
- package/primevue/message.css +228 -0
- package/primevue/metergroup.css +67 -0
- package/primevue/multiselect.css +143 -0
- package/primevue/orderlist.css +10 -0
- package/primevue/organizationchart.css +71 -0
- package/primevue/overlaybadge.css +13 -0
- package/primevue/paginator.css +58 -0
- package/primevue/panel.css +27 -0
- package/primevue/panelmenu.css +94 -0
- package/primevue/password.css +61 -0
- package/primevue/picklist.css +18 -0
- package/primevue/popover.css +46 -0
- package/primevue/progressbar.css +67 -0
- package/primevue/progressspinner.css +58 -0
- package/primevue/radiobutton.css +93 -0
- package/primevue/rating.css +23 -0
- package/primevue/ripple.css +7 -0
- package/primevue/scrollpanel.css +41 -0
- package/primevue/scrolltop.css +25 -0
- package/primevue/select.css +144 -0
- package/primevue/selectbutton.css +25 -0
- package/primevue/skeleton.css +11 -0
- package/primevue/slider.css +42 -0
- package/primevue/speeddial.css +48 -0
- package/primevue/splitbutton.css +34 -0
- package/primevue/splitter.css +56 -0
- package/primevue/stepper.css +102 -0
- package/primevue/tabs.css +84 -0
- package/primevue/tag.css +38 -0
- package/primevue/tailwind.css +104 -0
- package/primevue/terminal.css +22 -0
- package/primevue/textarea.css +42 -0
- package/primevue/tieredmenu.css +105 -0
- package/primevue/timeline.css +113 -0
- package/primevue/toast.css +172 -0
- package/primevue/togglebutton.css +63 -0
- package/primevue/toggleswitch.css +66 -0
- package/primevue/toolbar.css +12 -0
- package/primevue/tooltip.css +38 -0
- package/primevue/tree.css +103 -0
- package/primevue/treeselect.css +116 -0
- package/primevue/treetable.css +300 -0
- package/primevue-plugin.ts +8 -0
- package/tailwind.config.ts +28 -0
- package/theme-config.css +124 -0
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
.p-badge {
|
|
2
|
+
@apply inline-flex items-center justify-center rounded-md
|
|
3
|
+
py-0 px-2 text-xs font-bold min-w-6 h-6
|
|
4
|
+
bg-primary text-primary-contrast
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.p-badge-dot {
|
|
8
|
+
@apply min-w-2 h-2 rounded-full p-0
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.p-badge-circle {
|
|
12
|
+
@apply p-0 rounded-full
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.p-badge-secondary {
|
|
16
|
+
@apply bg-surface-100 dark:bg-surface-800 text-surface-600 dark:text-surface-300
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.p-badge-success {
|
|
20
|
+
@apply bg-green-500 dark:bg-green-400 text-white dark:text-green-950
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.p-badge-info {
|
|
24
|
+
@apply bg-sky-500 dark:bg-sky-400 text-white dark:text-sky-950
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.p-badge-warn {
|
|
28
|
+
@apply bg-orange-500 dark:bg-orange-400 text-white dark:text-orange-950
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.p-badge-danger {
|
|
32
|
+
@apply bg-red-500 dark:bg-red-400 text-white dark:text-red-950
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.p-badge-contrast {
|
|
36
|
+
@apply bg-surface-950 dark:bg-white text-white dark:text-surface-950
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.p-badge-sm {
|
|
40
|
+
@apply text-[0.625rem] min-w-5 h-5
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.p-badge-xs {
|
|
44
|
+
@apply text-[0.5rem] min-w-3 h-3
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.p-badge-lg {
|
|
48
|
+
@apply text-sm min-w-7 h-7
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.p-badge-xl {
|
|
52
|
+
@apply text-base min-w-8 h-8
|
|
53
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
.p-breadcrumb {
|
|
2
|
+
@apply bg-surface-0 dark:bg-surface-900 p-4 overflow-x-auto
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.p-breadcrumb-list {
|
|
6
|
+
@apply m-0 p-0 list-none flex items-center flex-nowrap gap-2
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.p-breadcrumb-separator {
|
|
10
|
+
@apply flex items-center text-surface-400 dark:text-surface-500
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.p-breadcrumb-separator-icon:dir(rtl) {
|
|
14
|
+
@apply rotate-180
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.p-breadcrumb::-webkit-scrollbar {
|
|
18
|
+
@apply hidden
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.p-breadcrumb-item-link {
|
|
22
|
+
@apply no-underline flex items-center gap-2 transition-colors duration-200 rounded-md
|
|
23
|
+
text-surface-500 dark:text-surface-400
|
|
24
|
+
focus-visible:outline focus-visible:outline-1 focus-visible:outline-offset-2 focus-visible:outline-primary
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.p-breadcrumb-item-link:hover .p-breadcrumb-item-label {
|
|
28
|
+
@apply text-surface-700 dark:text-surface-0
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.p-breadcrumb-item-label {
|
|
32
|
+
@apply transition-colors duration-200
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.p-breadcrumb-item-icon {
|
|
36
|
+
@apply text-surface-400 dark:text-surface-500 transition-colors duration-200
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.p-breadcrumb-item-link:hover .p-breadcrumb-item-icon {
|
|
40
|
+
@apply text-surface-500 dark:text-surface-400
|
|
41
|
+
}
|
|
@@ -0,0 +1,341 @@
|
|
|
1
|
+
@import './badge';
|
|
2
|
+
|
|
3
|
+
.p-button {
|
|
4
|
+
@apply inline-flex cursor-pointer select-none items-center justify-center overflow-hidden relative
|
|
5
|
+
bg-primary enabled:hover:bg-primary-emphasis enabled:active:bg-primary-emphasis-alt text-primary-contrast
|
|
6
|
+
border border-primary enabled:hover:border-primary-emphasis enabled:active:border-primary-emphasis-alt
|
|
7
|
+
focus-visible:outline focus-visible:outline-1 focus-visible:outline-offset-2 focus-visible:outline-primary
|
|
8
|
+
px-3 py-2 transition-colors duration-200 gap-2 rounded-md
|
|
9
|
+
disabled:cursor-default
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.p-button-icon-right {
|
|
13
|
+
@apply order-1
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.p-button-icon-right:dir(rtl) {
|
|
17
|
+
@apply order-[-1]
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.p-button:not(.p-button-vertical) .p-button-icon:not(.p-button-icon-right):dir(rtl) {
|
|
21
|
+
@apply order-1
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.p-button-icon-bottom {
|
|
25
|
+
@apply order-2
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.p-button-icon-only {
|
|
29
|
+
@apply w-10 px-0 gap-0
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.p-button-icon-only.p-button-rounded {
|
|
33
|
+
@apply rounded-full h-10
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.p-button-icon-only .p-button-label {
|
|
37
|
+
@apply invisible w-0
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.p-button-sm {
|
|
41
|
+
@apply text-sm px-[0.625rem] py-[0.375rem]
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.p-button-sm .p-button-icon {
|
|
45
|
+
@apply text-sm
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.p-button-xs {
|
|
49
|
+
@apply text-xs px-2 py-1
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.p-button-xs .p-button-icon {
|
|
53
|
+
@apply text-xs
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.p-button-lg {
|
|
57
|
+
@apply text-[1.125rem] px-[0.875rem] py-[0.625rem]
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.p-button-lg .p-button-icon {
|
|
61
|
+
@apply text-[1.125rem]
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.p-button-vertical {
|
|
65
|
+
@apply flex-col
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.p-button-label {
|
|
69
|
+
@apply font-medium
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.p-button-fluid {
|
|
73
|
+
@apply w-full
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.p-button-fluid.p-button-icon-only {
|
|
77
|
+
@apply w-10
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.p-button .p-badge {
|
|
81
|
+
@apply min-w-4 h-4 leading-4
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.p-button-raised {
|
|
85
|
+
@apply shadow-[0_3px_1px_-2px_rgba(0,0,0,0.2),0_2px_2px_0_rgba(0,0,0,0.14),0_1px_5px_0_rgba(0,0,0,0.12)]
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.p-button-rounded {
|
|
89
|
+
@apply rounded-[2rem]
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.p-button-secondary {
|
|
93
|
+
@apply bg-surface-100 enabled:hover:bg-surface-200 enabled:active:bg-surface-300
|
|
94
|
+
border-surface-100 enabled:hover:border-surface-200 enabled:active:border-surface-300
|
|
95
|
+
text-surface-600 enabled:hover:text-surface-700 enabled:active:text-surface-800
|
|
96
|
+
dark:bg-surface-800 dark:enabled:hover:bg-surface-700 dark:enabled:active:bg-surface-600
|
|
97
|
+
dark:border-surface-800 dark:enabled:hover:border-surface-700 dark:enabled:active:border-surface-600
|
|
98
|
+
dark:text-surface-300 dark:enabled:hover:text-surface-200 dark:enabled:active:text-surface-100
|
|
99
|
+
focus-visible:outline focus-visible:outline-1 focus-visible:outline-offset-2
|
|
100
|
+
focus-visible:outline-surface-600 dark:focus-visible:outline-surface-300
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.p-button-success {
|
|
104
|
+
@apply bg-green-500 enabled:hover:bg-green-600 enabled:active:bg-green-700
|
|
105
|
+
border-green-500 enabled:hover:border-green-600 enabled:active:border-green-700
|
|
106
|
+
text-white enabled:hover:text-white enabled:active:text-white
|
|
107
|
+
dark:bg-green-400 dark:enabled:hover:bg-green-300 dark:enabled:active:bg-green-200
|
|
108
|
+
dark:border-green-400 dark:enabled:hover:border-green-300 dark:enabled:active:border-green-200
|
|
109
|
+
dark:text-green-950 dark:enabled:hover:text-green-950 dark:enabled:active:text-green-950
|
|
110
|
+
focus-visible:outline focus-visible:outline-1 focus-visible:outline-offset-2
|
|
111
|
+
focus-visible:outline-green-500 dark:focus-visible:outline-green-400
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.p-button-info {
|
|
115
|
+
@apply bg-sky-500 enabled:hover:bg-sky-600 enabled:active:bg-sky-700
|
|
116
|
+
border-sky-500 enabled:hover:border-sky-600 enabled:active:border-sky-700
|
|
117
|
+
text-white enabled:hover:text-white enabled:active:text-white
|
|
118
|
+
dark:bg-sky-400 dark:enabled:hover:bg-sky-300 dark:enabled:active:bg-sky-200
|
|
119
|
+
dark:border-sky-400 dark:enabled:hover:border-sky-300 dark:enabled:active:border-sky-200
|
|
120
|
+
dark:text-sky-950 dark:enabled:hover:text-sky-950 dark:enabled:active:text-sky-950
|
|
121
|
+
focus-visible:outline focus-visible:outline-1 focus-visible:outline-offset-2
|
|
122
|
+
focus-visible:outline-sky-500 dark:focus-visible:outline-sky-400
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.p-button-warn {
|
|
126
|
+
@apply bg-orange-500 enabled:hover:bg-orange-600 enabled:active:bg-orange-700
|
|
127
|
+
border-orange-500 enabled:hover:border-orange-600 enabled:active:border-orange-700
|
|
128
|
+
text-white enabled:hover:text-white enabled:active:text-white
|
|
129
|
+
dark:bg-orange-400 dark:enabled:hover:bg-orange-300 dark:enabled:active:bg-orange-200
|
|
130
|
+
dark:border-orange-400 dark:enabled:hover:border-orange-300 dark:enabled:active:border-orange-200
|
|
131
|
+
dark:text-orange-950 dark:enabled:hover:text-orange-950 dark:enabled:active:text-orange-950
|
|
132
|
+
focus-visible:outline focus-visible:outline-1 focus-visible:outline-offset-2
|
|
133
|
+
focus-visible:outline-orange-500 dark:focus-visible:outline-orange-400
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.p-button-help {
|
|
137
|
+
@apply bg-purple-500 enabled:hover:bg-purple-600 enabled:active:bg-purple-700
|
|
138
|
+
border-purple-500 enabled:hover:border-purple-600 enabled:active:border-purple-700
|
|
139
|
+
text-white enabled:hover:text-white enabled:active:text-white
|
|
140
|
+
dark:bg-purple-400 dark:enabled:hover:bg-purple-300 dark:enabled:active:bg-purple-200
|
|
141
|
+
dark:border-purple-400 dark:enabled:hover:border-purple-300 dark:enabled:active:border-purple-200
|
|
142
|
+
dark:text-purple-950 dark:enabled:hover:text-purple-950 dark:enabled:active:text-purple-950
|
|
143
|
+
focus-visible:outline focus-visible:outline-1 focus-visible:outline-offset-2
|
|
144
|
+
focus-visible:outline-purple-500 dark:focus-visible:outline-purple-400
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.p-button-help {
|
|
148
|
+
@apply bg-purple-500 enabled:hover:bg-purple-600 enabled:active:bg-purple-700
|
|
149
|
+
border-purple-500 enabled:hover:border-purple-600 enabled:active:border-purple-700
|
|
150
|
+
text-white enabled:hover:text-white enabled:active:text-white
|
|
151
|
+
dark:bg-purple-400 dark:enabled:hover:bg-purple-300 dark:enabled:active:bg-purple-200
|
|
152
|
+
dark:border-purple-400 dark:enabled:hover:border-purple-300 dark:enabled:active:border-purple-200
|
|
153
|
+
dark:text-purple-950 dark:enabled:hover:text-purple-950 dark:enabled:active:text-purple-950
|
|
154
|
+
focus-visible:outline focus-visible:outline-1 focus-visible:outline-offset-2
|
|
155
|
+
focus-visible:outline-purple-500 dark:focus-visible:outline-purple-400
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.p-button-danger {
|
|
159
|
+
@apply bg-red-500 enabled:hover:bg-red-600 enabled:active:bg-red-700
|
|
160
|
+
border-red-500 enabled:hover:border-red-600 enabled:active:border-red-700
|
|
161
|
+
text-white enabled:hover:text-white enabled:active:text-white
|
|
162
|
+
dark:bg-red-400 dark:enabled:hover:bg-red-300 dark:enabled:active:bg-red-200
|
|
163
|
+
dark:border-red-400 dark:enabled:hover:border-red-300 dark:enabled:active:border-red-200
|
|
164
|
+
dark:text-red-950 dark:enabled:hover:text-red-950 dark:enabled:active:text-red-950
|
|
165
|
+
focus-visible:outline focus-visible:outline-1 focus-visible:outline-offset-2
|
|
166
|
+
focus-visible:outline-red-500 dark:focus-visible:outline-red-400
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.p-button-contrast {
|
|
170
|
+
@apply bg-surface-950 enabled:hover:bg-surface-900 enabled:active:bg-surface-800
|
|
171
|
+
border-surface-950 enabled:hover:border-surface-900 enabled:active:border-surface-800
|
|
172
|
+
text-white enabled:hover:text-white enabled:active:text-white
|
|
173
|
+
dark:bg-surface-0 dark:enabled:hover:bg-surface-100 dark:enabled:active:bg-surface-200
|
|
174
|
+
dark:border-surface-100 dark:enabled:hover:border-surface-200 dark:enabled:active:border-surface-300
|
|
175
|
+
dark:text-surface-950 dark:enabled:hover:text-surface-950 dark:enabled:active:text-surface-950
|
|
176
|
+
focus-visible:outline focus-visible:outline-1 focus-visible:outline-offset-2
|
|
177
|
+
focus-visible:outline-surface-950 dark:focus-visible:outline-surface-0
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.p-button-outlined {
|
|
181
|
+
@apply bg-transparent enabled:hover:bg-primary-50 enabled:active:bg-primary-100
|
|
182
|
+
border-primary-200 enabled:hover:border-primary-200 enabled:active:border-primary-200
|
|
183
|
+
text-primary enabled:hover:text-primary enabled:active:text-primary
|
|
184
|
+
dark:bg-transparent dark:enabled:hover:bg-primary/5 dark:enabled:active:bg-primary/15
|
|
185
|
+
dark:border-primary-700 dark:enabled:hover:border-primary-700 dark:enabled:active:border-primary-700
|
|
186
|
+
dark:text-primary dark:enabled:hover:text-primary dark:enabled:active:text-primary
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.p-button-outlined.p-button-secondary {
|
|
190
|
+
@apply bg-transparent enabled:hover:bg-surface-50 enabled:active:bg-surface-100
|
|
191
|
+
border-surface-200 enabled:hover:border-surface-200 enabled:active:border-surface-200
|
|
192
|
+
text-surface-500 enabled:hover:text-surface-500 enabled:active:text-surface-500
|
|
193
|
+
dark:bg-transparent dark:enabled:hover:bg-white/5 dark:enabled:active:bg-white/15
|
|
194
|
+
dark:border-surface-700 dark:enabled:hover:border-surface-700 dark:enabled:active:border-surface-700
|
|
195
|
+
dark:text-surface-400 dark:enabled:hover:text-surface-400 dark:enabled:active:text-surface-400
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.p-button-outlined.p-button-success {
|
|
199
|
+
@apply bg-transparent enabled:hover:bg-green-50 enabled:active:bg-green-100
|
|
200
|
+
border-green-200 enabled:hover:border-green-200 enabled:active:border-green-200
|
|
201
|
+
text-green-500 enabled:hover:text-green-500 enabled:active:text-green-500
|
|
202
|
+
dark:bg-transparent dark:enabled:hover:bg-green-400/5 dark:enabled:active:bg-green-400/15
|
|
203
|
+
dark:border-green-700 dark:enabled:hover:border-green-700 dark:enabled:active:border-green-700
|
|
204
|
+
dark:text-green-400 dark:enabled:hover:text-green-400 dark:enabled:active:text-green-400
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.p-button-outlined.p-button-info {
|
|
208
|
+
@apply bg-transparent enabled:hover:bg-sky-50 enabled:active:bg-sky-100
|
|
209
|
+
border-sky-200 enabled:hover:border-sky-200 enabled:active:border-sky-200
|
|
210
|
+
text-sky-500 enabled:hover:text-sky-500 enabled:active:text-sky-500
|
|
211
|
+
dark:bg-transparent dark:enabled:hover:bg-sky-400/5 dark:enabled:active:bg-sky-400/15
|
|
212
|
+
dark:border-sky-700 dark:enabled:hover:border-sky-700 dark:enabled:active:border-sky-700
|
|
213
|
+
dark:text-sky-400 dark:enabled:hover:text-sky-400 dark:enabled:active:text-sky-400
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.p-button-outlined.p-button-warn {
|
|
217
|
+
@apply bg-transparent enabled:hover:bg-orange-50 enabled:active:bg-orange-100
|
|
218
|
+
border-orange-200 enabled:hover:border-orange-200 enabled:active:border-orange-200
|
|
219
|
+
text-orange-500 enabled:hover:text-orange-500 enabled:active:text-orange-500
|
|
220
|
+
dark:bg-transparent dark:enabled:hover:bg-orange-400/5 dark:enabled:active:bg-orange-400/15
|
|
221
|
+
dark:border-orange-700 dark:enabled:hover:border-orange-700 dark:enabled:active:border-orange-700
|
|
222
|
+
dark:text-orange-400 dark:enabled:hover:text-orange-400 dark:enabled:active:text-orange-400
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.p-button-outlined.p-button-help {
|
|
226
|
+
@apply bg-transparent enabled:hover:bg-purple-50 enabled:active:bg-purple-100
|
|
227
|
+
border-purple-200 enabled:hover:border-purple-200 enabled:active:border-purple-200
|
|
228
|
+
text-purple-500 enabled:hover:text-purple-500 enabled:active:text-purple-500
|
|
229
|
+
dark:bg-transparent dark:enabled:hover:bg-purple-400/5 dark:enabled:active:bg-purple-400/15
|
|
230
|
+
dark:border-purple-700 dark:enabled:hover:border-purple-700 dark:enabled:active:border-purple-700
|
|
231
|
+
dark:text-purple-400 dark:enabled:hover:text-purple-400 dark:enabled:active:text-purple-400
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.p-button-outlined.p-button-danger {
|
|
235
|
+
@apply bg-transparent enabled:hover:bg-red-50 enabled:active:bg-red-100
|
|
236
|
+
border-red-200 enabled:hover:border-red-200 enabled:active:border-red-200
|
|
237
|
+
text-red-500 enabled:hover:text-red-500 enabled:active:text-red-500
|
|
238
|
+
dark:bg-transparent dark:enabled:hover:bg-red-400/5 dark:enabled:active:bg-red-400/15
|
|
239
|
+
dark:border-red-700 dark:enabled:hover:border-red-700 dark:enabled:active:border-red-700
|
|
240
|
+
dark:text-red-400 dark:enabled:hover:text-red-400 dark:enabled:active:text-red-400
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.p-button-outlined.p-button-contrast {
|
|
244
|
+
@apply bg-transparent enabled:hover:bg-surface-50 enabled:active:bg-surface-100
|
|
245
|
+
border-surface-700 enabled:hover:border-surface-700 enabled:active:border-surface-700
|
|
246
|
+
text-surface-950 enabled:hover:text-surface-950 enabled:active:text-surface-950
|
|
247
|
+
dark:bg-transparent dark:enabled:hover:bg-surface-800 dark:enabled:active:bg-surface-700
|
|
248
|
+
dark:border-surface-500 dark:enabled:hover:border-surface-500 dark:enabled:active:border-surface-500
|
|
249
|
+
dark:text-surface-0 dark:enabled:hover:text-surface-0 dark:enabled:active:text-surface-0
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.p-button-outlined.p-button-plain {
|
|
253
|
+
@apply bg-transparent enabled:hover:bg-surface-50 enabled:active:bg-surface-100
|
|
254
|
+
border-surface-200 enabled:hover:border-surface-200 enabled:active:border-surface-200
|
|
255
|
+
text-surface-700 enabled:hover:text-surface-700 enabled:active:text-surface-700
|
|
256
|
+
dark:bg-transparent dark:enabled:hover:bg-surface-800 dark:enabled:active:bg-surface-700
|
|
257
|
+
dark:border-surface-600 dark:enabled:hover:border-surface-600 dark:enabled:active:border-surface-600
|
|
258
|
+
dark:text-surface-0 dark:enabled:hover:text-surface-0 dark:enabled:active:text-surface-0
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.p-button-text {
|
|
262
|
+
@apply bg-transparent enabled:hover:bg-primary-50 enabled:active:bg-primary-100
|
|
263
|
+
border-transparent enabled:hover:border-transparent enabled:active:border-transparent
|
|
264
|
+
text-primary enabled:hover:text-primary enabled:active:text-primary
|
|
265
|
+
dark:bg-transparent dark:enabled:hover:bg-primary/5 dark:enabled:active:bg-primary/15
|
|
266
|
+
dark:border-transparent dark:enabled:hover:border-transparent dark:enabled:active:border-transparent
|
|
267
|
+
dark:text-primary dark:enabled:hover:text-primary dark:enabled:active:text-primary
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.p-button-text.p-button-secondary {
|
|
271
|
+
@apply bg-transparent enabled:hover:bg-surface-50 enabled:active:bg-surface-100
|
|
272
|
+
border-transparent enabled:hover:border-transparent enabled:active:border-transparent
|
|
273
|
+
text-surface-500 enabled:hover:text-surface-500 enabled:active:text-surface-500
|
|
274
|
+
dark:bg-transparent dark:enabled:hover:bg-surface-800 dark:enabled:active:bg-surface-700
|
|
275
|
+
dark:border-transparent dark:enabled:hover:border-transparent dark:enabled:active:border-transparent
|
|
276
|
+
dark:text-surface-400 dark:enabled:hover:text-surface-400 dark:enabled:active:text-surface-400
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.p-button-text.p-button-success {
|
|
280
|
+
@apply bg-transparent enabled:hover:bg-green-50 enabled:active:bg-green-100
|
|
281
|
+
border-transparent enabled:hover:border-transparent enabled:active:border-transparent
|
|
282
|
+
text-green-500 enabled:hover:text-green-500 enabled:active:text-green-500
|
|
283
|
+
dark:bg-transparent dark:enabled:hover:bg-green-400/5 dark:enabled:active:bg-green-400/15
|
|
284
|
+
dark:border-transparent dark:enabled:hover:border-transparent dark:enabled:active:border-transparent
|
|
285
|
+
dark:text-green-400 dark:enabled:hover:text-green-400 dark:enabled:active:text-green-400
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.p-button-text.p-button-info {
|
|
289
|
+
@apply bg-transparent enabled:hover:bg-sky-50 enabled:active:bg-sky-100
|
|
290
|
+
border-transparent enabled:hover:border-transparent enabled:active:border-transparent
|
|
291
|
+
text-sky-500 enabled:hover:text-sky-500 enabled:active:text-sky-500
|
|
292
|
+
dark:bg-transparent dark:enabled:hover:bg-sky-400/5 dark:enabled:active:bg-sky-400/15
|
|
293
|
+
dark:border-transparent dark:enabled:hover:border-transparent dark:enabled:active:border-transparent
|
|
294
|
+
dark:text-sky-400 dark:enabled:hover:text-sky-400 dark:enabled:active:text-sky-400
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.p-button-text.p-button-warn {
|
|
298
|
+
@apply bg-transparent enabled:hover:bg-orange-50 enabled:active:bg-orange-100
|
|
299
|
+
border-transparent enabled:hover:border-transparent enabled:active:border-transparent
|
|
300
|
+
text-orange-500 enabled:hover:text-orange-500 enabled:active:text-orange-500
|
|
301
|
+
dark:bg-transparent dark:enabled:hover:bg-orange-400/5 dark:enabled:active:bg-orange-400/15
|
|
302
|
+
dark:border-transparent dark:enabled:hover:border-transparent dark:enabled:active:border-transparent
|
|
303
|
+
dark:text-orange-400 dark:enabled:hover:text-orange-400 dark:enabled:active:text-orange-400
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.p-button-text.p-button-help {
|
|
307
|
+
@apply bg-transparent enabled:hover:bg-purple-50 enabled:active:bg-purple-100
|
|
308
|
+
border-transparent enabled:hover:border-transparent enabled:active:border-transparent
|
|
309
|
+
text-purple-500 enabled:hover:text-purple-500 enabled:active:text-purple-500
|
|
310
|
+
dark:bg-transparent dark:enabled:hover:bg-purple-400/5 dark:enabled:active:bg-purple-400/15
|
|
311
|
+
dark:border-transparent dark:enabled:hover:border-transparent dark:enabled:active:border-transparent
|
|
312
|
+
dark:text-purple-400 dark:enabled:hover:text-purple-400 dark:enabled:active:text-purple-400
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.p-button-text.p-button-danger {
|
|
316
|
+
@apply bg-transparent enabled:hover:bg-red-50 enabled:active:bg-red-100
|
|
317
|
+
border-transparent enabled:hover:border-transparent enabled:active:border-transparent
|
|
318
|
+
text-red-500 enabled:hover:text-red-500 enabled:active:text-red-500
|
|
319
|
+
dark:bg-transparent dark:enabled:hover:bg-red-400/5 dark:enabled:active:bg-red-400/15
|
|
320
|
+
dark:border-transparent dark:enabled:hover:border-transparent dark:enabled:active:border-transparent
|
|
321
|
+
dark:text-red-400 dark:enabled:hover:text-red-400 dark:enabled:active:text-red-400
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.p-button-text.p-button-plain {
|
|
325
|
+
@apply bg-transparent enabled:hover:bg-surface-50 enabled:active:bg-surface-100
|
|
326
|
+
border-transparent enabled:hover:border-transparent enabled:active:border-transparent
|
|
327
|
+
text-surface-700 enabled:hover:text-surface-700 enabled:active:text-surface-700
|
|
328
|
+
dark:bg-transparent dark:enabled:hover:bg-surface-800 dark:enabled:active:bg-surface-700
|
|
329
|
+
dark:border-transparent dark:enabled:hover:border-transparent dark:enabled:active:border-transparent
|
|
330
|
+
dark:text-surface-0 dark:enabled:hover:text-surface-0 dark:enabled:active:text-surface-0
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.p-button-link {
|
|
334
|
+
@apply bg-transparent enabled:hover:bg-transparent enabled:active:bg-transparent
|
|
335
|
+
border-transparent enabled:hover:border-transparent enabled:active:border-transparent
|
|
336
|
+
text-primary enabled:hover:text-primary enabled:active:text-primary
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.p-button-link:not(:disabled):hover .p-button-label {
|
|
340
|
+
@apply underline
|
|
341
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
.p-buttongroup .p-button {
|
|
2
|
+
@apply m-0 focus-visible:relative focus-visible:z-10
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.p-buttongroup .p-button:not(:last-child) {
|
|
6
|
+
@apply border-r-0
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.p-buttongroup .p-button:not(:first-of-type):not(:last-of-type) {
|
|
10
|
+
@apply rounded-none
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.p-buttongroup .p-button:first-of-type:not(:only-of-type) {
|
|
14
|
+
@apply rounded-e-none
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.p-buttongroup .p-button:last-of-type:not(:only-of-type) {
|
|
18
|
+
@apply rounded-s-none
|
|
19
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
.p-card {
|
|
2
|
+
@apply flex flex-col rounded-xl
|
|
3
|
+
bg-surface-0 dark:bg-surface-900
|
|
4
|
+
text-surface-700 dark:text-surface-0
|
|
5
|
+
shadow-[0_1px_3px_0_rgba(0,0,0,0.1),0_1px_2px_-1px_rgba(0,0,0,0.1)]
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.p-card-caption {
|
|
9
|
+
@apply flex flex-col gap-2
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.p-card-body {
|
|
13
|
+
@apply p-5 flex flex-col gap-2
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.p-card-title {
|
|
17
|
+
@apply font-medium text-xl
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.p-card-subtitle {
|
|
21
|
+
@apply text-surface-500 dark:text-surface-400
|
|
22
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
@import './button';
|
|
2
|
+
|
|
3
|
+
.p-carousel {
|
|
4
|
+
@apply flex flex-col
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.p-carousel-content-container {
|
|
8
|
+
@apply flex flex-col overflow-auto
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.p-carousel-content {
|
|
12
|
+
@apply flex flex-row gap-1
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.p-carousel-content:dir(rtl) {
|
|
16
|
+
@apply flex-row-reverse
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.p-carousel-viewport {
|
|
20
|
+
@apply overflow-hidden w-full
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.p-carousel-item-list {
|
|
24
|
+
@apply flex flex-row
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.p-carousel-prev-button,
|
|
28
|
+
.p-carousel-next-button {
|
|
29
|
+
@apply self-center flex-shrink-0
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.p-carousel-indicator-list {
|
|
33
|
+
@apply flex flex-row justify-center flex-wrap p-4 gap-2 m-0 list-none
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.p-carousel-indicator-list:dir(rtl) {
|
|
37
|
+
@apply rtl:flex-row-reverse
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.p-carousel-indicator-button {
|
|
41
|
+
@apply flex items-center justify-center w-8 h-2 border-none rounded-md p-0 m-0 select-none cursor-pointer transition-colors duration-200
|
|
42
|
+
bg-surface-200 hover:bg-surface-300 dark:bg-surface-700 dark:hover:bg-surface-600
|
|
43
|
+
focus-visible:outline focus-visible:outline-1 focus-visible:outline-offset-2 focus-visible:outline-primary
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.p-carousel-indicator-active .p-carousel-indicator-button {
|
|
47
|
+
@apply bg-primary
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.p-carousel-vertical .p-carousel-content {
|
|
51
|
+
@apply flex-col
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.p-carousel-vertical .p-carousel-item-list {
|
|
55
|
+
@apply flex-col h-full
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.p-items-hidden .p-carousel-item {
|
|
59
|
+
@apply invisible
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.p-items-hidden .p-carousel-item.p-carousel-item-active {
|
|
63
|
+
@apply visible
|
|
64
|
+
}
|