@fraku/video 0.1.57 → 0.1.59
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/components/ConfigDialog/Tabs/BackgroundOptionButton.d.ts +10 -0
- package/dist/components/ConfigDialog/tests/BackgroundSettings.test.d.ts +1 -0
- package/dist/components/ConfigDialog/tests/DropdownItemTemplate.test.d.ts +1 -0
- package/dist/components/ConfigDialog/tests/DropdownValueTemplate.test.d.ts +1 -0
- package/dist/components/ConfigDialog/tests/MenuButton.test.d.ts +1 -0
- package/dist/components/DockButton/DockButton.d.ts +2 -1
- package/dist/i18n/locales/ca.json.d.ts +9 -0
- package/dist/i18n/locales/de.json.d.ts +9 -0
- package/dist/i18n/locales/en.json.d.ts +9 -0
- package/dist/i18n/locales/es.json.d.ts +9 -0
- package/dist/i18n/locales/fr.json.d.ts +9 -0
- package/dist/index.cjs +193 -193
- package/dist/index.css +1 -1
- package/dist/index.js +17627 -17035
- package/dist/providers/VideoProvider/constants.d.ts +13 -0
- package/dist/providers/VideoProvider/context.d.ts +14 -2
- package/dist/providers/VideoProvider/tests/utils.test.d.ts +1 -0
- package/dist/providers/VideoProvider/useLocalVideo.d.ts +9 -0
- package/dist/providers/VideoProvider/useVideoDevices.d.ts +12 -0
- package/dist/providers/VideoProvider/useVideoEventHandlers.d.ts +15 -0
- package/dist/providers/VideoProvider/useVirtualBackground.d.ts +21 -0
- package/dist/providers/VideoProvider/utils.d.ts +67 -0
- package/dist/themes/lara-light-blue/theme.css +1307 -416
- package/dist/themes/theme.css +1307 -416
- package/package.json +6 -5
- package/dist/providers/VideoProvider/hooks.d.ts +0 -8
package/dist/themes/theme.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
font-family:
|
|
3
|
-
font-feature-settings:
|
|
2
|
+
font-family: 'Inter var', sans-serif;
|
|
3
|
+
font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
|
|
4
4
|
font-variation-settings: normal;
|
|
5
|
-
--font-family:
|
|
6
|
-
--font-feature-settings:
|
|
5
|
+
--font-family: 'Inter var', sans-serif;
|
|
6
|
+
--font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
|
|
7
7
|
--surface-a: #ffffff;
|
|
8
8
|
--surface-b: #f9fafb;
|
|
9
9
|
--surface-c: #f3f4f6;
|
|
@@ -52,142 +52,142 @@
|
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
@font-face {
|
|
55
|
-
font-family:
|
|
55
|
+
font-family: 'Inter var';
|
|
56
56
|
font-weight: 100 900;
|
|
57
57
|
font-display: swap;
|
|
58
58
|
font-style: normal;
|
|
59
|
-
font-named-instance:
|
|
60
|
-
src: url(
|
|
59
|
+
font-named-instance: 'Regular';
|
|
60
|
+
src: url('./fonts/InterVariable.woff2') format('woff2');
|
|
61
61
|
}
|
|
62
62
|
@font-face {
|
|
63
|
-
font-family:
|
|
63
|
+
font-family: 'Inter var';
|
|
64
64
|
font-weight: 100 900;
|
|
65
65
|
font-display: swap;
|
|
66
66
|
font-style: italic;
|
|
67
|
-
font-named-instance:
|
|
68
|
-
src: url(
|
|
67
|
+
font-named-instance: 'Italic';
|
|
68
|
+
src: url('./fonts/InterVariable-Italic.woff2') format('woff2');
|
|
69
69
|
}
|
|
70
70
|
:root {
|
|
71
|
-
--blue-50
|
|
72
|
-
--blue-100
|
|
73
|
-
--blue-200
|
|
74
|
-
--blue-300
|
|
75
|
-
--blue-400
|
|
76
|
-
--blue-500
|
|
77
|
-
--blue-600
|
|
78
|
-
--blue-700
|
|
79
|
-
--blue-800
|
|
80
|
-
--blue-900
|
|
81
|
-
--green-50
|
|
82
|
-
--green-100
|
|
83
|
-
--green-200
|
|
84
|
-
--green-300
|
|
85
|
-
--green-400
|
|
86
|
-
--green-500
|
|
87
|
-
--green-600
|
|
88
|
-
--green-700
|
|
89
|
-
--green-800
|
|
90
|
-
--green-900
|
|
91
|
-
--yellow-50
|
|
92
|
-
--yellow-100
|
|
93
|
-
--yellow-200
|
|
94
|
-
--yellow-300
|
|
95
|
-
--yellow-400
|
|
96
|
-
--yellow-500
|
|
97
|
-
--yellow-600
|
|
98
|
-
--yellow-700
|
|
99
|
-
--yellow-800
|
|
100
|
-
--yellow-900
|
|
101
|
-
--cyan-50
|
|
102
|
-
--cyan-100
|
|
103
|
-
--cyan-200
|
|
104
|
-
--cyan-300
|
|
105
|
-
--cyan-400
|
|
106
|
-
--cyan-500
|
|
107
|
-
--cyan-600
|
|
108
|
-
--cyan-700
|
|
109
|
-
--cyan-800
|
|
110
|
-
--cyan-900
|
|
111
|
-
--pink-50
|
|
112
|
-
--pink-100
|
|
113
|
-
--pink-200
|
|
114
|
-
--pink-300
|
|
115
|
-
--pink-400
|
|
116
|
-
--pink-500
|
|
117
|
-
--pink-600
|
|
118
|
-
--pink-700
|
|
119
|
-
--pink-800
|
|
120
|
-
--pink-900
|
|
121
|
-
--indigo-50
|
|
122
|
-
--indigo-100
|
|
123
|
-
--indigo-200
|
|
124
|
-
--indigo-300
|
|
125
|
-
--indigo-400
|
|
126
|
-
--indigo-500
|
|
127
|
-
--indigo-600
|
|
128
|
-
--indigo-700
|
|
129
|
-
--indigo-800
|
|
130
|
-
--indigo-900
|
|
131
|
-
--teal-50
|
|
132
|
-
--teal-100
|
|
133
|
-
--teal-200
|
|
134
|
-
--teal-300
|
|
135
|
-
--teal-400
|
|
136
|
-
--teal-500
|
|
137
|
-
--teal-600
|
|
138
|
-
--teal-700
|
|
139
|
-
--teal-800
|
|
140
|
-
--teal-900
|
|
141
|
-
--orange-50
|
|
142
|
-
--orange-100
|
|
143
|
-
--orange-200
|
|
144
|
-
--orange-300
|
|
145
|
-
--orange-400
|
|
146
|
-
--orange-500
|
|
147
|
-
--orange-600
|
|
148
|
-
--orange-700
|
|
149
|
-
--orange-800
|
|
150
|
-
--orange-900
|
|
151
|
-
--bluegray-50
|
|
152
|
-
--bluegray-100
|
|
153
|
-
--bluegray-200
|
|
154
|
-
--bluegray-300
|
|
155
|
-
--bluegray-400
|
|
156
|
-
--bluegray-500
|
|
157
|
-
--bluegray-600
|
|
158
|
-
--bluegray-700
|
|
159
|
-
--bluegray-800
|
|
160
|
-
--bluegray-900
|
|
161
|
-
--purple-50
|
|
162
|
-
--purple-100
|
|
163
|
-
--purple-200
|
|
164
|
-
--purple-300
|
|
165
|
-
--purple-400
|
|
166
|
-
--purple-500
|
|
167
|
-
--purple-600
|
|
168
|
-
--purple-700
|
|
169
|
-
--purple-800
|
|
170
|
-
--purple-900
|
|
171
|
-
--red-50
|
|
172
|
-
--red-100
|
|
173
|
-
--red-200
|
|
174
|
-
--red-300
|
|
175
|
-
--red-400
|
|
176
|
-
--red-500
|
|
177
|
-
--red-600
|
|
178
|
-
--red-700
|
|
179
|
-
--red-800
|
|
180
|
-
--red-900
|
|
181
|
-
--primary-50
|
|
182
|
-
--primary-100
|
|
183
|
-
--primary-200
|
|
184
|
-
--primary-300
|
|
185
|
-
--primary-400
|
|
186
|
-
--primary-500
|
|
187
|
-
--primary-600
|
|
188
|
-
--primary-700
|
|
189
|
-
--primary-800
|
|
190
|
-
--primary-900
|
|
71
|
+
--blue-50: #f5f9ff;
|
|
72
|
+
--blue-100: #d0e1fd;
|
|
73
|
+
--blue-200: #abc9fb;
|
|
74
|
+
--blue-300: #85b2f9;
|
|
75
|
+
--blue-400: #609af8;
|
|
76
|
+
--blue-500: #3b82f6;
|
|
77
|
+
--blue-600: #326fd1;
|
|
78
|
+
--blue-700: #295bac;
|
|
79
|
+
--blue-800: #204887;
|
|
80
|
+
--blue-900: #183462;
|
|
81
|
+
--green-50: #f4fcf7;
|
|
82
|
+
--green-100: #caf1d8;
|
|
83
|
+
--green-200: #a0e6ba;
|
|
84
|
+
--green-300: #76db9b;
|
|
85
|
+
--green-400: #4cd07d;
|
|
86
|
+
--green-500: #22c55e;
|
|
87
|
+
--green-600: #1da750;
|
|
88
|
+
--green-700: #188a42;
|
|
89
|
+
--green-800: #136c34;
|
|
90
|
+
--green-900: #0e4f26;
|
|
91
|
+
--yellow-50: #fefbf3;
|
|
92
|
+
--yellow-100: #faedc4;
|
|
93
|
+
--yellow-200: #f6de95;
|
|
94
|
+
--yellow-300: #f2d066;
|
|
95
|
+
--yellow-400: #eec137;
|
|
96
|
+
--yellow-500: #eab308;
|
|
97
|
+
--yellow-600: #c79807;
|
|
98
|
+
--yellow-700: #a47d06;
|
|
99
|
+
--yellow-800: #816204;
|
|
100
|
+
--yellow-900: #5e4803;
|
|
101
|
+
--cyan-50: #f3fbfd;
|
|
102
|
+
--cyan-100: #c3edf5;
|
|
103
|
+
--cyan-200: #94e0ed;
|
|
104
|
+
--cyan-300: #65d2e4;
|
|
105
|
+
--cyan-400: #35c4dc;
|
|
106
|
+
--cyan-500: #06b6d4;
|
|
107
|
+
--cyan-600: #059bb4;
|
|
108
|
+
--cyan-700: #047f94;
|
|
109
|
+
--cyan-800: #036475;
|
|
110
|
+
--cyan-900: #024955;
|
|
111
|
+
--pink-50: #fef6fa;
|
|
112
|
+
--pink-100: #fad3e7;
|
|
113
|
+
--pink-200: #f7b0d3;
|
|
114
|
+
--pink-300: #f38ec0;
|
|
115
|
+
--pink-400: #f06bac;
|
|
116
|
+
--pink-500: #ec4899;
|
|
117
|
+
--pink-600: #c93d82;
|
|
118
|
+
--pink-700: #a5326b;
|
|
119
|
+
--pink-800: #822854;
|
|
120
|
+
--pink-900: #5e1d3d;
|
|
121
|
+
--indigo-50: #f7f7fe;
|
|
122
|
+
--indigo-100: #dadafc;
|
|
123
|
+
--indigo-200: #bcbdf9;
|
|
124
|
+
--indigo-300: #9ea0f6;
|
|
125
|
+
--indigo-400: #8183f4;
|
|
126
|
+
--indigo-500: #6366f1;
|
|
127
|
+
--indigo-600: #5457cd;
|
|
128
|
+
--indigo-700: #4547a9;
|
|
129
|
+
--indigo-800: #363885;
|
|
130
|
+
--indigo-900: #282960;
|
|
131
|
+
--teal-50: #f3fbfb;
|
|
132
|
+
--teal-100: #c7eeea;
|
|
133
|
+
--teal-200: #9ae0d9;
|
|
134
|
+
--teal-300: #6dd3c8;
|
|
135
|
+
--teal-400: #41c5b7;
|
|
136
|
+
--teal-500: #14b8a6;
|
|
137
|
+
--teal-600: #119c8d;
|
|
138
|
+
--teal-700: #0e8174;
|
|
139
|
+
--teal-800: #0b655b;
|
|
140
|
+
--teal-900: #084a42;
|
|
141
|
+
--orange-50: #fff8f3;
|
|
142
|
+
--orange-100: #feddc7;
|
|
143
|
+
--orange-200: #fcc39b;
|
|
144
|
+
--orange-300: #fba86f;
|
|
145
|
+
--orange-400: #fa8e42;
|
|
146
|
+
--orange-500: #f97316;
|
|
147
|
+
--orange-600: #d46213;
|
|
148
|
+
--orange-700: #ae510f;
|
|
149
|
+
--orange-800: #893f0c;
|
|
150
|
+
--orange-900: #642e09;
|
|
151
|
+
--bluegray-50: #f7f8f9;
|
|
152
|
+
--bluegray-100: #dadee3;
|
|
153
|
+
--bluegray-200: #bcc3cd;
|
|
154
|
+
--bluegray-300: #9fa9b7;
|
|
155
|
+
--bluegray-400: #818ea1;
|
|
156
|
+
--bluegray-500: #64748b;
|
|
157
|
+
--bluegray-600: #556376;
|
|
158
|
+
--bluegray-700: #465161;
|
|
159
|
+
--bluegray-800: #37404c;
|
|
160
|
+
--bluegray-900: #282e38;
|
|
161
|
+
--purple-50: #fbf7ff;
|
|
162
|
+
--purple-100: #ead6fd;
|
|
163
|
+
--purple-200: #dab6fc;
|
|
164
|
+
--purple-300: #c996fa;
|
|
165
|
+
--purple-400: #b975f9;
|
|
166
|
+
--purple-500: #a855f7;
|
|
167
|
+
--purple-600: #8f48d2;
|
|
168
|
+
--purple-700: #763cad;
|
|
169
|
+
--purple-800: #5c2f88;
|
|
170
|
+
--purple-900: #432263;
|
|
171
|
+
--red-50: #fff5f5;
|
|
172
|
+
--red-100: #ffd0ce;
|
|
173
|
+
--red-200: #ffaca7;
|
|
174
|
+
--red-300: #ff8780;
|
|
175
|
+
--red-400: #ff6259;
|
|
176
|
+
--red-500: #ff3d32;
|
|
177
|
+
--red-600: #d9342b;
|
|
178
|
+
--red-700: #b32b23;
|
|
179
|
+
--red-800: #8c221c;
|
|
180
|
+
--red-900: #661814;
|
|
181
|
+
--primary-50: #f5f9ff;
|
|
182
|
+
--primary-100: #d0e1fd;
|
|
183
|
+
--primary-200: #abc9fb;
|
|
184
|
+
--primary-300: #85b2f9;
|
|
185
|
+
--primary-400: #609af8;
|
|
186
|
+
--primary-500: #3b82f6;
|
|
187
|
+
--primary-600: #326fd1;
|
|
188
|
+
--primary-700: #295bac;
|
|
189
|
+
--primary-800: #204887;
|
|
190
|
+
--primary-900: #183462;
|
|
191
191
|
}
|
|
192
192
|
|
|
193
193
|
.p-editor-container .p-editor-toolbar {
|
|
@@ -303,7 +303,8 @@
|
|
|
303
303
|
background-color: rgba(0, 0, 0, 0.4);
|
|
304
304
|
transition-duration: 0.2s;
|
|
305
305
|
}
|
|
306
|
-
.p-disabled,
|
|
306
|
+
.p-disabled,
|
|
307
|
+
.p-component:disabled {
|
|
307
308
|
opacity: 0.6;
|
|
308
309
|
}
|
|
309
310
|
.p-error {
|
|
@@ -471,7 +472,10 @@
|
|
|
471
472
|
border: 0 none;
|
|
472
473
|
background: transparent;
|
|
473
474
|
border-radius: 50%;
|
|
474
|
-
transition:
|
|
475
|
+
transition:
|
|
476
|
+
background-color 0.2s,
|
|
477
|
+
color 0.2s,
|
|
478
|
+
box-shadow 0.2s;
|
|
475
479
|
}
|
|
476
480
|
.p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover,
|
|
477
481
|
.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover {
|
|
@@ -491,7 +495,10 @@
|
|
|
491
495
|
.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year,
|
|
492
496
|
.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month {
|
|
493
497
|
color: #4b5563;
|
|
494
|
-
transition:
|
|
498
|
+
transition:
|
|
499
|
+
background-color 0.2s,
|
|
500
|
+
color 0.2s,
|
|
501
|
+
box-shadow 0.2s;
|
|
495
502
|
font-weight: 600;
|
|
496
503
|
padding: 0.5rem;
|
|
497
504
|
}
|
|
@@ -559,7 +566,10 @@
|
|
|
559
566
|
border: 0 none;
|
|
560
567
|
background: transparent;
|
|
561
568
|
border-radius: 50%;
|
|
562
|
-
transition:
|
|
569
|
+
transition:
|
|
570
|
+
background-color 0.2s,
|
|
571
|
+
color 0.2s,
|
|
572
|
+
box-shadow 0.2s;
|
|
563
573
|
}
|
|
564
574
|
.p-datepicker .p-timepicker button:enabled:hover {
|
|
565
575
|
color: #374151;
|
|
@@ -654,7 +664,11 @@
|
|
|
654
664
|
.p-cascadeselect {
|
|
655
665
|
background: #ffffff;
|
|
656
666
|
border: 1px solid #d1d5db;
|
|
657
|
-
transition:
|
|
667
|
+
transition:
|
|
668
|
+
background-color 0.2s,
|
|
669
|
+
color 0.2s,
|
|
670
|
+
border-color 0.2s,
|
|
671
|
+
box-shadow 0.2s;
|
|
658
672
|
border-radius: 6px;
|
|
659
673
|
outline-color: transparent;
|
|
660
674
|
}
|
|
@@ -779,7 +793,11 @@
|
|
|
779
793
|
height: 22px;
|
|
780
794
|
color: #4b5563;
|
|
781
795
|
border-radius: 6px;
|
|
782
|
-
transition:
|
|
796
|
+
transition:
|
|
797
|
+
background-color 0.2s,
|
|
798
|
+
color 0.2s,
|
|
799
|
+
border-color 0.2s,
|
|
800
|
+
box-shadow 0.2s;
|
|
783
801
|
outline-color: transparent;
|
|
784
802
|
}
|
|
785
803
|
.p-checkbox .p-checkbox-box .p-checkbox-icon {
|
|
@@ -798,7 +816,11 @@
|
|
|
798
816
|
height: 22px;
|
|
799
817
|
color: #4b5563;
|
|
800
818
|
border-radius: 6px;
|
|
801
|
-
transition:
|
|
819
|
+
transition:
|
|
820
|
+
background-color 0.2s,
|
|
821
|
+
color 0.2s,
|
|
822
|
+
border-color 0.2s,
|
|
823
|
+
box-shadow 0.2s;
|
|
802
824
|
outline-color: transparent;
|
|
803
825
|
}
|
|
804
826
|
.p-checkbox .p-checkbox-box .p-checkbox-icon {
|
|
@@ -1057,7 +1079,11 @@
|
|
|
1057
1079
|
.p-dropdown {
|
|
1058
1080
|
background: #ffffff;
|
|
1059
1081
|
border: 1px solid #d1d5db;
|
|
1060
|
-
transition:
|
|
1082
|
+
transition:
|
|
1083
|
+
background-color 0.2s,
|
|
1084
|
+
color 0.2s,
|
|
1085
|
+
border-color 0.2s,
|
|
1086
|
+
box-shadow 0.2s;
|
|
1061
1087
|
border-radius: 6px;
|
|
1062
1088
|
outline-color: transparent;
|
|
1063
1089
|
}
|
|
@@ -1092,7 +1118,8 @@
|
|
|
1092
1118
|
.p-dropdown .p-dropdown-label.p-placeholder {
|
|
1093
1119
|
color: #6b7280;
|
|
1094
1120
|
}
|
|
1095
|
-
.p-dropdown .p-dropdown-label:focus,
|
|
1121
|
+
.p-dropdown .p-dropdown-label:focus,
|
|
1122
|
+
.p-dropdown .p-dropdown-label:enabled:focus {
|
|
1096
1123
|
outline: 0 none;
|
|
1097
1124
|
box-shadow: none;
|
|
1098
1125
|
}
|
|
@@ -1275,7 +1302,7 @@
|
|
|
1275
1302
|
}
|
|
1276
1303
|
.p-inputswitch-slider:before {
|
|
1277
1304
|
position: absolute;
|
|
1278
|
-
content:
|
|
1305
|
+
content: '';
|
|
1279
1306
|
top: 50%;
|
|
1280
1307
|
}
|
|
1281
1308
|
.p-inputswitch {
|
|
@@ -1287,7 +1314,11 @@
|
|
|
1287
1314
|
}
|
|
1288
1315
|
.p-inputswitch .p-inputswitch-slider {
|
|
1289
1316
|
background: #d1d5db;
|
|
1290
|
-
transition:
|
|
1317
|
+
transition:
|
|
1318
|
+
background-color 0.2s,
|
|
1319
|
+
color 0.2s,
|
|
1320
|
+
border-color 0.2s,
|
|
1321
|
+
box-shadow 0.2s;
|
|
1291
1322
|
border-radius: 30px;
|
|
1292
1323
|
outline-color: transparent;
|
|
1293
1324
|
}
|
|
@@ -1329,7 +1360,11 @@
|
|
|
1329
1360
|
background: #ffffff;
|
|
1330
1361
|
padding: 0.75rem 0.75rem;
|
|
1331
1362
|
border: 1px solid #d1d5db;
|
|
1332
|
-
transition:
|
|
1363
|
+
transition:
|
|
1364
|
+
background-color 0.2s,
|
|
1365
|
+
color 0.2s,
|
|
1366
|
+
border-color 0.2s,
|
|
1367
|
+
box-shadow 0.2s;
|
|
1333
1368
|
appearance: none;
|
|
1334
1369
|
border-radius: 6px;
|
|
1335
1370
|
outline-color: transparent;
|
|
@@ -1470,7 +1505,11 @@
|
|
|
1470
1505
|
color: #4b5563;
|
|
1471
1506
|
border: 1px solid #d1d5db;
|
|
1472
1507
|
border-radius: 6px;
|
|
1473
|
-
transition:
|
|
1508
|
+
transition:
|
|
1509
|
+
background-color 0.2s,
|
|
1510
|
+
color 0.2s,
|
|
1511
|
+
border-color 0.2s,
|
|
1512
|
+
box-shadow 0.2s;
|
|
1474
1513
|
outline-color: transparent;
|
|
1475
1514
|
}
|
|
1476
1515
|
.p-listbox .p-listbox-header {
|
|
@@ -1665,7 +1704,11 @@
|
|
|
1665
1704
|
.p-multiselect {
|
|
1666
1705
|
background: #ffffff;
|
|
1667
1706
|
border: 1px solid #d1d5db;
|
|
1668
|
-
transition:
|
|
1707
|
+
transition:
|
|
1708
|
+
background-color 0.2s,
|
|
1709
|
+
color 0.2s,
|
|
1710
|
+
border-color 0.2s,
|
|
1711
|
+
box-shadow 0.2s;
|
|
1669
1712
|
border-radius: 6px;
|
|
1670
1713
|
outline-color: transparent;
|
|
1671
1714
|
}
|
|
@@ -1689,7 +1732,11 @@
|
|
|
1689
1732
|
}
|
|
1690
1733
|
.p-multiselect .p-multiselect-label {
|
|
1691
1734
|
padding: 0.75rem 0.75rem;
|
|
1692
|
-
transition:
|
|
1735
|
+
transition:
|
|
1736
|
+
background-color 0.2s,
|
|
1737
|
+
color 0.2s,
|
|
1738
|
+
border-color 0.2s,
|
|
1739
|
+
box-shadow 0.2s;
|
|
1693
1740
|
}
|
|
1694
1741
|
.p-multiselect .p-multiselect-label.p-placeholder {
|
|
1695
1742
|
color: #6b7280;
|
|
@@ -1751,7 +1798,10 @@
|
|
|
1751
1798
|
border: 0 none;
|
|
1752
1799
|
background: transparent;
|
|
1753
1800
|
border-radius: 50%;
|
|
1754
|
-
transition:
|
|
1801
|
+
transition:
|
|
1802
|
+
background-color 0.2s,
|
|
1803
|
+
color 0.2s,
|
|
1804
|
+
box-shadow 0.2s;
|
|
1755
1805
|
}
|
|
1756
1806
|
.p-multiselect-panel .p-multiselect-header .p-multiselect-close:enabled:hover {
|
|
1757
1807
|
color: #374151;
|
|
@@ -1882,7 +1932,11 @@
|
|
|
1882
1932
|
height: 22px;
|
|
1883
1933
|
color: #4b5563;
|
|
1884
1934
|
border-radius: 50%;
|
|
1885
|
-
transition:
|
|
1935
|
+
transition:
|
|
1936
|
+
background-color 0.2s,
|
|
1937
|
+
color 0.2s,
|
|
1938
|
+
border-color 0.2s,
|
|
1939
|
+
box-shadow 0.2s;
|
|
1886
1940
|
outline-color: transparent;
|
|
1887
1941
|
}
|
|
1888
1942
|
.p-radiobutton .p-radiobutton-box .p-radiobutton-icon {
|
|
@@ -1960,7 +2014,11 @@
|
|
|
1960
2014
|
}
|
|
1961
2015
|
.p-rating .p-rating-item .p-rating-icon {
|
|
1962
2016
|
color: #4b5563;
|
|
1963
|
-
transition:
|
|
2017
|
+
transition:
|
|
2018
|
+
background-color 0.2s,
|
|
2019
|
+
color 0.2s,
|
|
2020
|
+
border-color 0.2s,
|
|
2021
|
+
box-shadow 0.2s;
|
|
1964
2022
|
font-size: 1.143rem;
|
|
1965
2023
|
}
|
|
1966
2024
|
.p-rating .p-rating-item .p-rating-icon.p-icon {
|
|
@@ -1988,7 +2046,11 @@
|
|
|
1988
2046
|
background: #ffffff;
|
|
1989
2047
|
border: 1px solid #d1d5db;
|
|
1990
2048
|
color: #4b5563;
|
|
1991
|
-
transition:
|
|
2049
|
+
transition:
|
|
2050
|
+
background-color 0.2s,
|
|
2051
|
+
color 0.2s,
|
|
2052
|
+
border-color 0.2s,
|
|
2053
|
+
box-shadow 0.2s;
|
|
1992
2054
|
}
|
|
1993
2055
|
.p-selectbutton .p-button .p-button-icon-left,
|
|
1994
2056
|
.p-selectbutton .p-button .p-button-icon-right {
|
|
@@ -2049,7 +2111,11 @@
|
|
|
2049
2111
|
background: #ffffff;
|
|
2050
2112
|
border: 2px solid #3b82f6;
|
|
2051
2113
|
border-radius: 50%;
|
|
2052
|
-
transition:
|
|
2114
|
+
transition:
|
|
2115
|
+
background-color 0.2s,
|
|
2116
|
+
color 0.2s,
|
|
2117
|
+
border-color 0.2s,
|
|
2118
|
+
box-shadow 0.2s;
|
|
2053
2119
|
}
|
|
2054
2120
|
.p-slider .p-slider-handle:focus {
|
|
2055
2121
|
outline: 0 none;
|
|
@@ -2066,7 +2132,11 @@
|
|
|
2066
2132
|
.p-treeselect {
|
|
2067
2133
|
background: #ffffff;
|
|
2068
2134
|
border: 1px solid #d1d5db;
|
|
2069
|
-
transition:
|
|
2135
|
+
transition:
|
|
2136
|
+
background-color 0.2s,
|
|
2137
|
+
color 0.2s,
|
|
2138
|
+
border-color 0.2s,
|
|
2139
|
+
box-shadow 0.2s;
|
|
2070
2140
|
border-radius: 6px;
|
|
2071
2141
|
}
|
|
2072
2142
|
.p-treeselect:not(.p-disabled):hover {
|
|
@@ -2092,7 +2162,11 @@
|
|
|
2092
2162
|
}
|
|
2093
2163
|
.p-treeselect .p-treeselect-label {
|
|
2094
2164
|
padding: 0.75rem 0.75rem;
|
|
2095
|
-
transition:
|
|
2165
|
+
transition:
|
|
2166
|
+
background-color 0.2s,
|
|
2167
|
+
color 0.2s,
|
|
2168
|
+
border-color 0.2s,
|
|
2169
|
+
box-shadow 0.2s;
|
|
2096
2170
|
}
|
|
2097
2171
|
.p-treeselect .p-treeselect-label.p-placeholder {
|
|
2098
2172
|
color: #6b7280;
|
|
@@ -2147,10 +2221,16 @@
|
|
|
2147
2221
|
right: 0.75rem;
|
|
2148
2222
|
color: #6b7280;
|
|
2149
2223
|
}
|
|
2150
|
-
.p-treeselect-panel
|
|
2224
|
+
.p-treeselect-panel
|
|
2225
|
+
.p-treeselect-header
|
|
2226
|
+
.p-treeselect-filter-container.p-treeselect-clearable-filter
|
|
2227
|
+
.p-treeselect-filter {
|
|
2151
2228
|
padding-right: 3.5rem;
|
|
2152
2229
|
}
|
|
2153
|
-
.p-treeselect-panel
|
|
2230
|
+
.p-treeselect-panel
|
|
2231
|
+
.p-treeselect-header
|
|
2232
|
+
.p-treeselect-filter-container.p-treeselect-clearable-filter
|
|
2233
|
+
.p-treeselect-filter-clear-icon {
|
|
2154
2234
|
right: 2.5rem;
|
|
2155
2235
|
}
|
|
2156
2236
|
.p-treeselect-panel .p-treeselect-header .p-treeselect-close {
|
|
@@ -2160,7 +2240,10 @@
|
|
|
2160
2240
|
border: 0 none;
|
|
2161
2241
|
background: transparent;
|
|
2162
2242
|
border-radius: 50%;
|
|
2163
|
-
transition:
|
|
2243
|
+
transition:
|
|
2244
|
+
background-color 0.2s,
|
|
2245
|
+
color 0.2s,
|
|
2246
|
+
box-shadow 0.2s;
|
|
2164
2247
|
}
|
|
2165
2248
|
.p-treeselect-panel .p-treeselect-header .p-treeselect-close:enabled:hover {
|
|
2166
2249
|
color: #374151;
|
|
@@ -2220,7 +2303,11 @@
|
|
|
2220
2303
|
background: #ffffff;
|
|
2221
2304
|
border: 1px solid #d1d5db;
|
|
2222
2305
|
color: #4b5563;
|
|
2223
|
-
transition:
|
|
2306
|
+
transition:
|
|
2307
|
+
background-color 0.2s,
|
|
2308
|
+
color 0.2s,
|
|
2309
|
+
border-color 0.2s,
|
|
2310
|
+
box-shadow 0.2s;
|
|
2224
2311
|
outline-color: transparent;
|
|
2225
2312
|
}
|
|
2226
2313
|
.p-togglebutton .p-button .p-button-icon-left,
|
|
@@ -2269,7 +2356,11 @@
|
|
|
2269
2356
|
border: 1px solid #3b82f6;
|
|
2270
2357
|
padding: 0.75rem 1.25rem;
|
|
2271
2358
|
font-size: 1rem;
|
|
2272
|
-
transition:
|
|
2359
|
+
transition:
|
|
2360
|
+
background-color 0.2s,
|
|
2361
|
+
color 0.2s,
|
|
2362
|
+
border-color 0.2s,
|
|
2363
|
+
box-shadow 0.2s;
|
|
2273
2364
|
border-radius: 6px;
|
|
2274
2365
|
}
|
|
2275
2366
|
.p-button:not(:disabled):hover {
|
|
@@ -2364,7 +2455,10 @@
|
|
|
2364
2455
|
background-color: #ffffff;
|
|
2365
2456
|
}
|
|
2366
2457
|
.p-button.p-button-raised {
|
|
2367
|
-
box-shadow:
|
|
2458
|
+
box-shadow:
|
|
2459
|
+
0 3px 1px -2px rgba(0, 0, 0, 0.2),
|
|
2460
|
+
0 2px 2px 0 rgba(0, 0, 0, 0.14),
|
|
2461
|
+
0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
2368
2462
|
}
|
|
2369
2463
|
.p-button.p-button-rounded {
|
|
2370
2464
|
border-radius: 2rem;
|
|
@@ -2422,338 +2516,538 @@
|
|
|
2422
2516
|
.p-fluid .p-button-group .p-button {
|
|
2423
2517
|
flex: 1;
|
|
2424
2518
|
}
|
|
2425
|
-
.p-button.p-button-secondary,
|
|
2519
|
+
.p-button.p-button-secondary,
|
|
2520
|
+
.p-button-group.p-button-secondary > .p-button,
|
|
2521
|
+
.p-splitbutton.p-button-secondary > .p-button,
|
|
2522
|
+
.p-fileupload-choose.p-button-secondary {
|
|
2426
2523
|
color: #ffffff;
|
|
2427
2524
|
background: #64748b;
|
|
2428
2525
|
border: 1px solid #64748b;
|
|
2429
2526
|
}
|
|
2430
|
-
.p-button.p-button-secondary:not(:disabled):hover,
|
|
2527
|
+
.p-button.p-button-secondary:not(:disabled):hover,
|
|
2528
|
+
.p-button-group.p-button-secondary > .p-button:not(:disabled):hover,
|
|
2529
|
+
.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover,
|
|
2530
|
+
.p-fileupload-choose.p-button-secondary:not(:disabled):hover {
|
|
2431
2531
|
background: #475569;
|
|
2432
2532
|
color: #ffffff;
|
|
2433
2533
|
border-color: #475569;
|
|
2434
2534
|
}
|
|
2435
|
-
.p-button.p-button-secondary:not(:disabled):focus,
|
|
2535
|
+
.p-button.p-button-secondary:not(:disabled):focus,
|
|
2536
|
+
.p-button-group.p-button-secondary > .p-button:not(:disabled):focus,
|
|
2537
|
+
.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus,
|
|
2538
|
+
.p-fileupload-choose.p-button-secondary:not(:disabled):focus {
|
|
2436
2539
|
box-shadow: 0 0 0 0.2rem #e2e8f0;
|
|
2437
2540
|
}
|
|
2438
|
-
.p-button.p-button-secondary:not(:disabled):active,
|
|
2541
|
+
.p-button.p-button-secondary:not(:disabled):active,
|
|
2542
|
+
.p-button-group.p-button-secondary > .p-button:not(:disabled):active,
|
|
2543
|
+
.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active,
|
|
2544
|
+
.p-fileupload-choose.p-button-secondary:not(:disabled):active {
|
|
2439
2545
|
background: #334155;
|
|
2440
2546
|
color: #ffffff;
|
|
2441
2547
|
border-color: #334155;
|
|
2442
2548
|
}
|
|
2443
|
-
.p-button.p-button-secondary.p-button-outlined,
|
|
2549
|
+
.p-button.p-button-secondary.p-button-outlined,
|
|
2550
|
+
.p-button-group.p-button-secondary > .p-button.p-button-outlined,
|
|
2551
|
+
.p-splitbutton.p-button-secondary > .p-button.p-button-outlined,
|
|
2552
|
+
.p-fileupload-choose.p-button-secondary.p-button-outlined {
|
|
2444
2553
|
background-color: transparent;
|
|
2445
2554
|
color: #64748b;
|
|
2446
2555
|
border: 1px solid;
|
|
2447
2556
|
}
|
|
2448
|
-
.p-button.p-button-secondary.p-button-outlined:not(:disabled):hover,
|
|
2557
|
+
.p-button.p-button-secondary.p-button-outlined:not(:disabled):hover,
|
|
2558
|
+
.p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover,
|
|
2559
|
+
.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover,
|
|
2560
|
+
.p-fileupload-choose.p-button-secondary.p-button-outlined:not(:disabled):hover {
|
|
2449
2561
|
background: rgba(100, 116, 139, 0.04);
|
|
2450
2562
|
color: #64748b;
|
|
2451
2563
|
border: 1px solid;
|
|
2452
2564
|
}
|
|
2453
|
-
.p-button.p-button-secondary.p-button-outlined:not(:disabled):active,
|
|
2565
|
+
.p-button.p-button-secondary.p-button-outlined:not(:disabled):active,
|
|
2566
|
+
.p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active,
|
|
2567
|
+
.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active,
|
|
2568
|
+
.p-fileupload-choose.p-button-secondary.p-button-outlined:not(:disabled):active {
|
|
2454
2569
|
background: rgba(100, 116, 139, 0.16);
|
|
2455
2570
|
color: #64748b;
|
|
2456
2571
|
border: 1px solid;
|
|
2457
2572
|
}
|
|
2458
|
-
.p-button.p-button-secondary.p-button-text,
|
|
2573
|
+
.p-button.p-button-secondary.p-button-text,
|
|
2574
|
+
.p-button-group.p-button-secondary > .p-button.p-button-text,
|
|
2575
|
+
.p-splitbutton.p-button-secondary > .p-button.p-button-text,
|
|
2576
|
+
.p-fileupload-choose.p-button-secondary.p-button-text {
|
|
2459
2577
|
background-color: transparent;
|
|
2460
2578
|
color: #64748b;
|
|
2461
2579
|
border-color: transparent;
|
|
2462
2580
|
}
|
|
2463
|
-
.p-button.p-button-secondary.p-button-text:not(:disabled):hover,
|
|
2581
|
+
.p-button.p-button-secondary.p-button-text:not(:disabled):hover,
|
|
2582
|
+
.p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover,
|
|
2583
|
+
.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover,
|
|
2584
|
+
.p-fileupload-choose.p-button-secondary.p-button-text:not(:disabled):hover {
|
|
2464
2585
|
background: rgba(100, 116, 139, 0.04);
|
|
2465
2586
|
border-color: transparent;
|
|
2466
2587
|
color: #64748b;
|
|
2467
2588
|
}
|
|
2468
|
-
.p-button.p-button-secondary.p-button-text:not(:disabled):active,
|
|
2589
|
+
.p-button.p-button-secondary.p-button-text:not(:disabled):active,
|
|
2590
|
+
.p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active,
|
|
2591
|
+
.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active,
|
|
2592
|
+
.p-fileupload-choose.p-button-secondary.p-button-text:not(:disabled):active {
|
|
2469
2593
|
background: rgba(100, 116, 139, 0.16);
|
|
2470
2594
|
border-color: transparent;
|
|
2471
2595
|
color: #64748b;
|
|
2472
2596
|
}
|
|
2473
|
-
.p-button.p-button-info,
|
|
2597
|
+
.p-button.p-button-info,
|
|
2598
|
+
.p-button-group.p-button-info > .p-button,
|
|
2599
|
+
.p-splitbutton.p-button-info > .p-button,
|
|
2600
|
+
.p-fileupload-choose.p-button-info {
|
|
2474
2601
|
color: #ffffff;
|
|
2475
2602
|
background: #0ea5e9;
|
|
2476
2603
|
border: 1px solid #0ea5e9;
|
|
2477
2604
|
}
|
|
2478
|
-
.p-button.p-button-info:not(:disabled):hover,
|
|
2605
|
+
.p-button.p-button-info:not(:disabled):hover,
|
|
2606
|
+
.p-button-group.p-button-info > .p-button:not(:disabled):hover,
|
|
2607
|
+
.p-splitbutton.p-button-info > .p-button:not(:disabled):hover,
|
|
2608
|
+
.p-fileupload-choose.p-button-info:not(:disabled):hover {
|
|
2479
2609
|
background: #0284c7;
|
|
2480
2610
|
color: #ffffff;
|
|
2481
2611
|
border-color: #0284c7;
|
|
2482
2612
|
}
|
|
2483
|
-
.p-button.p-button-info:not(:disabled):focus,
|
|
2613
|
+
.p-button.p-button-info:not(:disabled):focus,
|
|
2614
|
+
.p-button-group.p-button-info > .p-button:not(:disabled):focus,
|
|
2615
|
+
.p-splitbutton.p-button-info > .p-button:not(:disabled):focus,
|
|
2616
|
+
.p-fileupload-choose.p-button-info:not(:disabled):focus {
|
|
2484
2617
|
box-shadow: 0 0 0 0.2rem #bfdbfe;
|
|
2485
2618
|
}
|
|
2486
|
-
.p-button.p-button-info:not(:disabled):active,
|
|
2619
|
+
.p-button.p-button-info:not(:disabled):active,
|
|
2620
|
+
.p-button-group.p-button-info > .p-button:not(:disabled):active,
|
|
2621
|
+
.p-splitbutton.p-button-info > .p-button:not(:disabled):active,
|
|
2622
|
+
.p-fileupload-choose.p-button-info:not(:disabled):active {
|
|
2487
2623
|
background: #0369a1;
|
|
2488
2624
|
color: #ffffff;
|
|
2489
2625
|
border-color: #0369a1;
|
|
2490
2626
|
}
|
|
2491
|
-
.p-button.p-button-info.p-button-outlined,
|
|
2627
|
+
.p-button.p-button-info.p-button-outlined,
|
|
2628
|
+
.p-button-group.p-button-info > .p-button.p-button-outlined,
|
|
2629
|
+
.p-splitbutton.p-button-info > .p-button.p-button-outlined,
|
|
2630
|
+
.p-fileupload-choose.p-button-info.p-button-outlined {
|
|
2492
2631
|
background-color: transparent;
|
|
2493
2632
|
color: #0ea5e9;
|
|
2494
2633
|
border: 1px solid;
|
|
2495
2634
|
}
|
|
2496
|
-
.p-button.p-button-info.p-button-outlined:not(:disabled):hover,
|
|
2635
|
+
.p-button.p-button-info.p-button-outlined:not(:disabled):hover,
|
|
2636
|
+
.p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover,
|
|
2637
|
+
.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover,
|
|
2638
|
+
.p-fileupload-choose.p-button-info.p-button-outlined:not(:disabled):hover {
|
|
2497
2639
|
background: rgba(14, 165, 233, 0.04);
|
|
2498
2640
|
color: #0ea5e9;
|
|
2499
2641
|
border: 1px solid;
|
|
2500
2642
|
}
|
|
2501
|
-
.p-button.p-button-info.p-button-outlined:not(:disabled):active,
|
|
2643
|
+
.p-button.p-button-info.p-button-outlined:not(:disabled):active,
|
|
2644
|
+
.p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active,
|
|
2645
|
+
.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active,
|
|
2646
|
+
.p-fileupload-choose.p-button-info.p-button-outlined:not(:disabled):active {
|
|
2502
2647
|
background: rgba(14, 165, 233, 0.16);
|
|
2503
2648
|
color: #0ea5e9;
|
|
2504
2649
|
border: 1px solid;
|
|
2505
2650
|
}
|
|
2506
|
-
.p-button.p-button-info.p-button-text,
|
|
2651
|
+
.p-button.p-button-info.p-button-text,
|
|
2652
|
+
.p-button-group.p-button-info > .p-button.p-button-text,
|
|
2653
|
+
.p-splitbutton.p-button-info > .p-button.p-button-text,
|
|
2654
|
+
.p-fileupload-choose.p-button-info.p-button-text {
|
|
2507
2655
|
background-color: transparent;
|
|
2508
2656
|
color: #0ea5e9;
|
|
2509
2657
|
border-color: transparent;
|
|
2510
2658
|
}
|
|
2511
|
-
.p-button.p-button-info.p-button-text:not(:disabled):hover,
|
|
2659
|
+
.p-button.p-button-info.p-button-text:not(:disabled):hover,
|
|
2660
|
+
.p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover,
|
|
2661
|
+
.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover,
|
|
2662
|
+
.p-fileupload-choose.p-button-info.p-button-text:not(:disabled):hover {
|
|
2512
2663
|
background: rgba(14, 165, 233, 0.04);
|
|
2513
2664
|
border-color: transparent;
|
|
2514
2665
|
color: #0ea5e9;
|
|
2515
2666
|
}
|
|
2516
|
-
.p-button.p-button-info.p-button-text:not(:disabled):active,
|
|
2667
|
+
.p-button.p-button-info.p-button-text:not(:disabled):active,
|
|
2668
|
+
.p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active,
|
|
2669
|
+
.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active,
|
|
2670
|
+
.p-fileupload-choose.p-button-info.p-button-text:not(:disabled):active {
|
|
2517
2671
|
background: rgba(14, 165, 233, 0.16);
|
|
2518
2672
|
border-color: transparent;
|
|
2519
2673
|
color: #0ea5e9;
|
|
2520
2674
|
}
|
|
2521
|
-
.p-button.p-button-success,
|
|
2675
|
+
.p-button.p-button-success,
|
|
2676
|
+
.p-button-group.p-button-success > .p-button,
|
|
2677
|
+
.p-splitbutton.p-button-success > .p-button,
|
|
2678
|
+
.p-fileupload-choose.p-button-success {
|
|
2522
2679
|
color: #ffffff;
|
|
2523
2680
|
background: #22c55e;
|
|
2524
2681
|
border: 1px solid #22c55e;
|
|
2525
2682
|
}
|
|
2526
|
-
.p-button.p-button-success:not(:disabled):hover,
|
|
2683
|
+
.p-button.p-button-success:not(:disabled):hover,
|
|
2684
|
+
.p-button-group.p-button-success > .p-button:not(:disabled):hover,
|
|
2685
|
+
.p-splitbutton.p-button-success > .p-button:not(:disabled):hover,
|
|
2686
|
+
.p-fileupload-choose.p-button-success:not(:disabled):hover {
|
|
2527
2687
|
background: #16a34a;
|
|
2528
2688
|
color: #ffffff;
|
|
2529
2689
|
border-color: #16a34a;
|
|
2530
2690
|
}
|
|
2531
|
-
.p-button.p-button-success:not(:disabled):focus,
|
|
2691
|
+
.p-button.p-button-success:not(:disabled):focus,
|
|
2692
|
+
.p-button-group.p-button-success > .p-button:not(:disabled):focus,
|
|
2693
|
+
.p-splitbutton.p-button-success > .p-button:not(:disabled):focus,
|
|
2694
|
+
.p-fileupload-choose.p-button-success:not(:disabled):focus {
|
|
2532
2695
|
box-shadow: 0 0 0 0.2rem #bbf7d0;
|
|
2533
2696
|
}
|
|
2534
|
-
.p-button.p-button-success:not(:disabled):active,
|
|
2697
|
+
.p-button.p-button-success:not(:disabled):active,
|
|
2698
|
+
.p-button-group.p-button-success > .p-button:not(:disabled):active,
|
|
2699
|
+
.p-splitbutton.p-button-success > .p-button:not(:disabled):active,
|
|
2700
|
+
.p-fileupload-choose.p-button-success:not(:disabled):active {
|
|
2535
2701
|
background: #15803d;
|
|
2536
2702
|
color: #ffffff;
|
|
2537
2703
|
border-color: #15803d;
|
|
2538
2704
|
}
|
|
2539
|
-
.p-button.p-button-success.p-button-outlined,
|
|
2705
|
+
.p-button.p-button-success.p-button-outlined,
|
|
2706
|
+
.p-button-group.p-button-success > .p-button.p-button-outlined,
|
|
2707
|
+
.p-splitbutton.p-button-success > .p-button.p-button-outlined,
|
|
2708
|
+
.p-fileupload-choose.p-button-success.p-button-outlined {
|
|
2540
2709
|
background-color: transparent;
|
|
2541
2710
|
color: #22c55e;
|
|
2542
2711
|
border: 1px solid;
|
|
2543
2712
|
}
|
|
2544
|
-
.p-button.p-button-success.p-button-outlined:not(:disabled):hover,
|
|
2713
|
+
.p-button.p-button-success.p-button-outlined:not(:disabled):hover,
|
|
2714
|
+
.p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover,
|
|
2715
|
+
.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover,
|
|
2716
|
+
.p-fileupload-choose.p-button-success.p-button-outlined:not(:disabled):hover {
|
|
2545
2717
|
background: rgba(34, 197, 94, 0.04);
|
|
2546
2718
|
color: #22c55e;
|
|
2547
2719
|
border: 1px solid;
|
|
2548
2720
|
}
|
|
2549
|
-
.p-button.p-button-success.p-button-outlined:not(:disabled):active,
|
|
2721
|
+
.p-button.p-button-success.p-button-outlined:not(:disabled):active,
|
|
2722
|
+
.p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active,
|
|
2723
|
+
.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active,
|
|
2724
|
+
.p-fileupload-choose.p-button-success.p-button-outlined:not(:disabled):active {
|
|
2550
2725
|
background: rgba(34, 197, 94, 0.16);
|
|
2551
2726
|
color: #22c55e;
|
|
2552
2727
|
border: 1px solid;
|
|
2553
2728
|
}
|
|
2554
|
-
.p-button.p-button-success.p-button-text,
|
|
2729
|
+
.p-button.p-button-success.p-button-text,
|
|
2730
|
+
.p-button-group.p-button-success > .p-button.p-button-text,
|
|
2731
|
+
.p-splitbutton.p-button-success > .p-button.p-button-text,
|
|
2732
|
+
.p-fileupload-choose.p-button-success.p-button-text {
|
|
2555
2733
|
background-color: transparent;
|
|
2556
2734
|
color: #22c55e;
|
|
2557
2735
|
border-color: transparent;
|
|
2558
2736
|
}
|
|
2559
|
-
.p-button.p-button-success.p-button-text:not(:disabled):hover,
|
|
2737
|
+
.p-button.p-button-success.p-button-text:not(:disabled):hover,
|
|
2738
|
+
.p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover,
|
|
2739
|
+
.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover,
|
|
2740
|
+
.p-fileupload-choose.p-button-success.p-button-text:not(:disabled):hover {
|
|
2560
2741
|
background: rgba(34, 197, 94, 0.04);
|
|
2561
2742
|
border-color: transparent;
|
|
2562
2743
|
color: #22c55e;
|
|
2563
2744
|
}
|
|
2564
|
-
.p-button.p-button-success.p-button-text:not(:disabled):active,
|
|
2745
|
+
.p-button.p-button-success.p-button-text:not(:disabled):active,
|
|
2746
|
+
.p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active,
|
|
2747
|
+
.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active,
|
|
2748
|
+
.p-fileupload-choose.p-button-success.p-button-text:not(:disabled):active {
|
|
2565
2749
|
background: rgba(34, 197, 94, 0.16);
|
|
2566
2750
|
border-color: transparent;
|
|
2567
2751
|
color: #22c55e;
|
|
2568
2752
|
}
|
|
2569
|
-
.p-button.p-button-warning,
|
|
2753
|
+
.p-button.p-button-warning,
|
|
2754
|
+
.p-button-group.p-button-warning > .p-button,
|
|
2755
|
+
.p-splitbutton.p-button-warning > .p-button,
|
|
2756
|
+
.p-fileupload-choose.p-button-warning {
|
|
2570
2757
|
color: #ffffff;
|
|
2571
2758
|
background: #f97316;
|
|
2572
2759
|
border: 1px solid #f97316;
|
|
2573
2760
|
}
|
|
2574
|
-
.p-button.p-button-warning:not(:disabled):hover,
|
|
2761
|
+
.p-button.p-button-warning:not(:disabled):hover,
|
|
2762
|
+
.p-button-group.p-button-warning > .p-button:not(:disabled):hover,
|
|
2763
|
+
.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover,
|
|
2764
|
+
.p-fileupload-choose.p-button-warning:not(:disabled):hover {
|
|
2575
2765
|
background: #ea580c;
|
|
2576
2766
|
color: #ffffff;
|
|
2577
2767
|
border-color: #ea580c;
|
|
2578
2768
|
}
|
|
2579
|
-
.p-button.p-button-warning:not(:disabled):focus,
|
|
2769
|
+
.p-button.p-button-warning:not(:disabled):focus,
|
|
2770
|
+
.p-button-group.p-button-warning > .p-button:not(:disabled):focus,
|
|
2771
|
+
.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus,
|
|
2772
|
+
.p-fileupload-choose.p-button-warning:not(:disabled):focus {
|
|
2580
2773
|
box-shadow: 0 0 0 0.2rem #fde68a;
|
|
2581
2774
|
}
|
|
2582
|
-
.p-button.p-button-warning:not(:disabled):active,
|
|
2775
|
+
.p-button.p-button-warning:not(:disabled):active,
|
|
2776
|
+
.p-button-group.p-button-warning > .p-button:not(:disabled):active,
|
|
2777
|
+
.p-splitbutton.p-button-warning > .p-button:not(:disabled):active,
|
|
2778
|
+
.p-fileupload-choose.p-button-warning:not(:disabled):active {
|
|
2583
2779
|
background: #c2410c;
|
|
2584
2780
|
color: #ffffff;
|
|
2585
2781
|
border-color: #c2410c;
|
|
2586
2782
|
}
|
|
2587
|
-
.p-button.p-button-warning.p-button-outlined,
|
|
2783
|
+
.p-button.p-button-warning.p-button-outlined,
|
|
2784
|
+
.p-button-group.p-button-warning > .p-button.p-button-outlined,
|
|
2785
|
+
.p-splitbutton.p-button-warning > .p-button.p-button-outlined,
|
|
2786
|
+
.p-fileupload-choose.p-button-warning.p-button-outlined {
|
|
2588
2787
|
background-color: transparent;
|
|
2589
2788
|
color: #f97316;
|
|
2590
2789
|
border: 1px solid;
|
|
2591
2790
|
}
|
|
2592
|
-
.p-button.p-button-warning.p-button-outlined:not(:disabled):hover,
|
|
2791
|
+
.p-button.p-button-warning.p-button-outlined:not(:disabled):hover,
|
|
2792
|
+
.p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover,
|
|
2793
|
+
.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover,
|
|
2794
|
+
.p-fileupload-choose.p-button-warning.p-button-outlined:not(:disabled):hover {
|
|
2593
2795
|
background: rgba(249, 115, 22, 0.04);
|
|
2594
2796
|
color: #f97316;
|
|
2595
2797
|
border: 1px solid;
|
|
2596
2798
|
}
|
|
2597
|
-
.p-button.p-button-warning.p-button-outlined:not(:disabled):active,
|
|
2799
|
+
.p-button.p-button-warning.p-button-outlined:not(:disabled):active,
|
|
2800
|
+
.p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active,
|
|
2801
|
+
.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active,
|
|
2802
|
+
.p-fileupload-choose.p-button-warning.p-button-outlined:not(:disabled):active {
|
|
2598
2803
|
background: rgba(249, 115, 22, 0.16);
|
|
2599
2804
|
color: #f97316;
|
|
2600
2805
|
border: 1px solid;
|
|
2601
2806
|
}
|
|
2602
|
-
.p-button.p-button-warning.p-button-text,
|
|
2807
|
+
.p-button.p-button-warning.p-button-text,
|
|
2808
|
+
.p-button-group.p-button-warning > .p-button.p-button-text,
|
|
2809
|
+
.p-splitbutton.p-button-warning > .p-button.p-button-text,
|
|
2810
|
+
.p-fileupload-choose.p-button-warning.p-button-text {
|
|
2603
2811
|
background-color: transparent;
|
|
2604
2812
|
color: #f97316;
|
|
2605
2813
|
border-color: transparent;
|
|
2606
2814
|
}
|
|
2607
|
-
.p-button.p-button-warning.p-button-text:not(:disabled):hover,
|
|
2815
|
+
.p-button.p-button-warning.p-button-text:not(:disabled):hover,
|
|
2816
|
+
.p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover,
|
|
2817
|
+
.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover,
|
|
2818
|
+
.p-fileupload-choose.p-button-warning.p-button-text:not(:disabled):hover {
|
|
2608
2819
|
background: rgba(249, 115, 22, 0.04);
|
|
2609
2820
|
border-color: transparent;
|
|
2610
2821
|
color: #f97316;
|
|
2611
2822
|
}
|
|
2612
|
-
.p-button.p-button-warning.p-button-text:not(:disabled):active,
|
|
2823
|
+
.p-button.p-button-warning.p-button-text:not(:disabled):active,
|
|
2824
|
+
.p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active,
|
|
2825
|
+
.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active,
|
|
2826
|
+
.p-fileupload-choose.p-button-warning.p-button-text:not(:disabled):active {
|
|
2613
2827
|
background: rgba(249, 115, 22, 0.16);
|
|
2614
2828
|
border-color: transparent;
|
|
2615
2829
|
color: #f97316;
|
|
2616
2830
|
}
|
|
2617
|
-
.p-button.p-button-help,
|
|
2831
|
+
.p-button.p-button-help,
|
|
2832
|
+
.p-button-group.p-button-help > .p-button,
|
|
2833
|
+
.p-splitbutton.p-button-help > .p-button,
|
|
2834
|
+
.p-fileupload-choose.p-button-help {
|
|
2618
2835
|
color: #ffffff;
|
|
2619
2836
|
background: #a855f7;
|
|
2620
2837
|
border: 1px solid #a855f7;
|
|
2621
2838
|
}
|
|
2622
|
-
.p-button.p-button-help:not(:disabled):hover,
|
|
2839
|
+
.p-button.p-button-help:not(:disabled):hover,
|
|
2840
|
+
.p-button-group.p-button-help > .p-button:not(:disabled):hover,
|
|
2841
|
+
.p-splitbutton.p-button-help > .p-button:not(:disabled):hover,
|
|
2842
|
+
.p-fileupload-choose.p-button-help:not(:disabled):hover {
|
|
2623
2843
|
background: #9333ea;
|
|
2624
2844
|
color: #ffffff;
|
|
2625
2845
|
border-color: #9333ea;
|
|
2626
2846
|
}
|
|
2627
|
-
.p-button.p-button-help:not(:disabled):focus,
|
|
2847
|
+
.p-button.p-button-help:not(:disabled):focus,
|
|
2848
|
+
.p-button-group.p-button-help > .p-button:not(:disabled):focus,
|
|
2849
|
+
.p-splitbutton.p-button-help > .p-button:not(:disabled):focus,
|
|
2850
|
+
.p-fileupload-choose.p-button-help:not(:disabled):focus {
|
|
2628
2851
|
box-shadow: 0 0 0 0.2rem #e9d5ff;
|
|
2629
2852
|
}
|
|
2630
|
-
.p-button.p-button-help:not(:disabled):active,
|
|
2853
|
+
.p-button.p-button-help:not(:disabled):active,
|
|
2854
|
+
.p-button-group.p-button-help > .p-button:not(:disabled):active,
|
|
2855
|
+
.p-splitbutton.p-button-help > .p-button:not(:disabled):active,
|
|
2856
|
+
.p-fileupload-choose.p-button-help:not(:disabled):active {
|
|
2631
2857
|
background: #7e22ce;
|
|
2632
2858
|
color: #ffffff;
|
|
2633
2859
|
border-color: #7e22ce;
|
|
2634
2860
|
}
|
|
2635
|
-
.p-button.p-button-help.p-button-outlined,
|
|
2861
|
+
.p-button.p-button-help.p-button-outlined,
|
|
2862
|
+
.p-button-group.p-button-help > .p-button.p-button-outlined,
|
|
2863
|
+
.p-splitbutton.p-button-help > .p-button.p-button-outlined,
|
|
2864
|
+
.p-fileupload-choose.p-button-help.p-button-outlined {
|
|
2636
2865
|
background-color: transparent;
|
|
2637
2866
|
color: #a855f7;
|
|
2638
2867
|
border: 1px solid;
|
|
2639
2868
|
}
|
|
2640
|
-
.p-button.p-button-help.p-button-outlined:not(:disabled):hover,
|
|
2869
|
+
.p-button.p-button-help.p-button-outlined:not(:disabled):hover,
|
|
2870
|
+
.p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover,
|
|
2871
|
+
.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover,
|
|
2872
|
+
.p-fileupload-choose.p-button-help.p-button-outlined:not(:disabled):hover {
|
|
2641
2873
|
background: rgba(168, 85, 247, 0.04);
|
|
2642
2874
|
color: #a855f7;
|
|
2643
2875
|
border: 1px solid;
|
|
2644
2876
|
}
|
|
2645
|
-
.p-button.p-button-help.p-button-outlined:not(:disabled):active,
|
|
2877
|
+
.p-button.p-button-help.p-button-outlined:not(:disabled):active,
|
|
2878
|
+
.p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active,
|
|
2879
|
+
.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active,
|
|
2880
|
+
.p-fileupload-choose.p-button-help.p-button-outlined:not(:disabled):active {
|
|
2646
2881
|
background: rgba(168, 85, 247, 0.16);
|
|
2647
2882
|
color: #a855f7;
|
|
2648
2883
|
border: 1px solid;
|
|
2649
2884
|
}
|
|
2650
|
-
.p-button.p-button-help.p-button-text,
|
|
2885
|
+
.p-button.p-button-help.p-button-text,
|
|
2886
|
+
.p-button-group.p-button-help > .p-button.p-button-text,
|
|
2887
|
+
.p-splitbutton.p-button-help > .p-button.p-button-text,
|
|
2888
|
+
.p-fileupload-choose.p-button-help.p-button-text {
|
|
2651
2889
|
background-color: transparent;
|
|
2652
2890
|
color: #a855f7;
|
|
2653
2891
|
border-color: transparent;
|
|
2654
2892
|
}
|
|
2655
|
-
.p-button.p-button-help.p-button-text:not(:disabled):hover,
|
|
2893
|
+
.p-button.p-button-help.p-button-text:not(:disabled):hover,
|
|
2894
|
+
.p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover,
|
|
2895
|
+
.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover,
|
|
2896
|
+
.p-fileupload-choose.p-button-help.p-button-text:not(:disabled):hover {
|
|
2656
2897
|
background: rgba(168, 85, 247, 0.04);
|
|
2657
2898
|
border-color: transparent;
|
|
2658
2899
|
color: #a855f7;
|
|
2659
2900
|
}
|
|
2660
|
-
.p-button.p-button-help.p-button-text:not(:disabled):active,
|
|
2901
|
+
.p-button.p-button-help.p-button-text:not(:disabled):active,
|
|
2902
|
+
.p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active,
|
|
2903
|
+
.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active,
|
|
2904
|
+
.p-fileupload-choose.p-button-help.p-button-text:not(:disabled):active {
|
|
2661
2905
|
background: rgba(168, 85, 247, 0.16);
|
|
2662
2906
|
border-color: transparent;
|
|
2663
2907
|
color: #a855f7;
|
|
2664
2908
|
}
|
|
2665
|
-
.p-button.p-button-danger,
|
|
2909
|
+
.p-button.p-button-danger,
|
|
2910
|
+
.p-button-group.p-button-danger > .p-button,
|
|
2911
|
+
.p-splitbutton.p-button-danger > .p-button,
|
|
2912
|
+
.p-fileupload-choose.p-button-danger {
|
|
2666
2913
|
color: #ffffff;
|
|
2667
2914
|
background: #ef4444;
|
|
2668
2915
|
border: 1px solid #ef4444;
|
|
2669
2916
|
}
|
|
2670
|
-
.p-button.p-button-danger:not(:disabled):hover,
|
|
2917
|
+
.p-button.p-button-danger:not(:disabled):hover,
|
|
2918
|
+
.p-button-group.p-button-danger > .p-button:not(:disabled):hover,
|
|
2919
|
+
.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover,
|
|
2920
|
+
.p-fileupload-choose.p-button-danger:not(:disabled):hover {
|
|
2671
2921
|
background: #dc2626;
|
|
2672
2922
|
color: #ffffff;
|
|
2673
2923
|
border-color: #dc2626;
|
|
2674
2924
|
}
|
|
2675
|
-
.p-button.p-button-danger:not(:disabled):focus,
|
|
2925
|
+
.p-button.p-button-danger:not(:disabled):focus,
|
|
2926
|
+
.p-button-group.p-button-danger > .p-button:not(:disabled):focus,
|
|
2927
|
+
.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus,
|
|
2928
|
+
.p-fileupload-choose.p-button-danger:not(:disabled):focus {
|
|
2676
2929
|
box-shadow: 0 0 0 0.2rem #fecaca;
|
|
2677
2930
|
}
|
|
2678
|
-
.p-button.p-button-danger:not(:disabled):active,
|
|
2931
|
+
.p-button.p-button-danger:not(:disabled):active,
|
|
2932
|
+
.p-button-group.p-button-danger > .p-button:not(:disabled):active,
|
|
2933
|
+
.p-splitbutton.p-button-danger > .p-button:not(:disabled):active,
|
|
2934
|
+
.p-fileupload-choose.p-button-danger:not(:disabled):active {
|
|
2679
2935
|
background: #b91c1c;
|
|
2680
2936
|
color: #ffffff;
|
|
2681
2937
|
border-color: #b91c1c;
|
|
2682
2938
|
}
|
|
2683
|
-
.p-button.p-button-danger.p-button-outlined,
|
|
2939
|
+
.p-button.p-button-danger.p-button-outlined,
|
|
2940
|
+
.p-button-group.p-button-danger > .p-button.p-button-outlined,
|
|
2941
|
+
.p-splitbutton.p-button-danger > .p-button.p-button-outlined,
|
|
2942
|
+
.p-fileupload-choose.p-button-danger.p-button-outlined {
|
|
2684
2943
|
background-color: transparent;
|
|
2685
2944
|
color: #ef4444;
|
|
2686
2945
|
border: 1px solid;
|
|
2687
2946
|
}
|
|
2688
|
-
.p-button.p-button-danger.p-button-outlined:not(:disabled):hover,
|
|
2947
|
+
.p-button.p-button-danger.p-button-outlined:not(:disabled):hover,
|
|
2948
|
+
.p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover,
|
|
2949
|
+
.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover,
|
|
2950
|
+
.p-fileupload-choose.p-button-danger.p-button-outlined:not(:disabled):hover {
|
|
2689
2951
|
background: rgba(239, 68, 68, 0.04);
|
|
2690
2952
|
color: #ef4444;
|
|
2691
2953
|
border: 1px solid;
|
|
2692
2954
|
}
|
|
2693
|
-
.p-button.p-button-danger.p-button-outlined:not(:disabled):active,
|
|
2955
|
+
.p-button.p-button-danger.p-button-outlined:not(:disabled):active,
|
|
2956
|
+
.p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active,
|
|
2957
|
+
.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active,
|
|
2958
|
+
.p-fileupload-choose.p-button-danger.p-button-outlined:not(:disabled):active {
|
|
2694
2959
|
background: rgba(239, 68, 68, 0.16);
|
|
2695
2960
|
color: #ef4444;
|
|
2696
2961
|
border: 1px solid;
|
|
2697
2962
|
}
|
|
2698
|
-
.p-button.p-button-danger.p-button-text,
|
|
2963
|
+
.p-button.p-button-danger.p-button-text,
|
|
2964
|
+
.p-button-group.p-button-danger > .p-button.p-button-text,
|
|
2965
|
+
.p-splitbutton.p-button-danger > .p-button.p-button-text,
|
|
2966
|
+
.p-fileupload-choose.p-button-danger.p-button-text {
|
|
2699
2967
|
background-color: transparent;
|
|
2700
2968
|
color: #ef4444;
|
|
2701
2969
|
border-color: transparent;
|
|
2702
2970
|
}
|
|
2703
|
-
.p-button.p-button-danger.p-button-text:not(:disabled):hover,
|
|
2971
|
+
.p-button.p-button-danger.p-button-text:not(:disabled):hover,
|
|
2972
|
+
.p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover,
|
|
2973
|
+
.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover,
|
|
2974
|
+
.p-fileupload-choose.p-button-danger.p-button-text:not(:disabled):hover {
|
|
2704
2975
|
background: rgba(239, 68, 68, 0.04);
|
|
2705
2976
|
border-color: transparent;
|
|
2706
2977
|
color: #ef4444;
|
|
2707
2978
|
}
|
|
2708
|
-
.p-button.p-button-danger.p-button-text:not(:disabled):active,
|
|
2979
|
+
.p-button.p-button-danger.p-button-text:not(:disabled):active,
|
|
2980
|
+
.p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active,
|
|
2981
|
+
.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active,
|
|
2982
|
+
.p-fileupload-choose.p-button-danger.p-button-text:not(:disabled):active {
|
|
2709
2983
|
background: rgba(239, 68, 68, 0.16);
|
|
2710
2984
|
border-color: transparent;
|
|
2711
2985
|
color: #ef4444;
|
|
2712
2986
|
}
|
|
2713
|
-
.p-button.p-button-contrast,
|
|
2987
|
+
.p-button.p-button-contrast,
|
|
2988
|
+
.p-button-group.p-button-contrast > .p-button,
|
|
2989
|
+
.p-splitbutton.p-button-contrast > .p-button {
|
|
2714
2990
|
color: #ffffff;
|
|
2715
2991
|
background: #1f2937;
|
|
2716
2992
|
border: 1px solid #1f2937;
|
|
2717
2993
|
}
|
|
2718
|
-
.p-button.p-button-contrast:not(:disabled):hover,
|
|
2994
|
+
.p-button.p-button-contrast:not(:disabled):hover,
|
|
2995
|
+
.p-button-group.p-button-contrast > .p-button:not(:disabled):hover,
|
|
2996
|
+
.p-splitbutton.p-button-contrast > .p-button:not(:disabled):hover {
|
|
2719
2997
|
background: #374151;
|
|
2720
2998
|
color: #ffffff;
|
|
2721
2999
|
border-color: #374151;
|
|
2722
3000
|
}
|
|
2723
|
-
.p-button.p-button-contrast:not(:disabled):focus,
|
|
3001
|
+
.p-button.p-button-contrast:not(:disabled):focus,
|
|
3002
|
+
.p-button-group.p-button-contrast > .p-button:not(:disabled):focus,
|
|
3003
|
+
.p-splitbutton.p-button-contrast > .p-button:not(:disabled):focus {
|
|
2724
3004
|
box-shadow: none;
|
|
2725
3005
|
}
|
|
2726
|
-
.p-button.p-button-contrast:not(:disabled):active,
|
|
3006
|
+
.p-button.p-button-contrast:not(:disabled):active,
|
|
3007
|
+
.p-button-group.p-button-contrast > .p-button:not(:disabled):active,
|
|
3008
|
+
.p-splitbutton.p-button-contrast > .p-button:not(:disabled):active {
|
|
2727
3009
|
background: #4b5563;
|
|
2728
3010
|
color: #ffffff;
|
|
2729
3011
|
border-color: #4b5563;
|
|
2730
3012
|
}
|
|
2731
|
-
.p-button.p-button-contrast.p-button-outlined,
|
|
3013
|
+
.p-button.p-button-contrast.p-button-outlined,
|
|
3014
|
+
.p-button-group.p-button-contrast > .p-button.p-button-outlined,
|
|
3015
|
+
.p-splitbutton.p-button-contrast > .p-button.p-button-outlined {
|
|
2732
3016
|
background-color: transparent;
|
|
2733
3017
|
color: #1f2937;
|
|
2734
3018
|
border: 1px solid;
|
|
2735
3019
|
}
|
|
2736
|
-
.p-button.p-button-contrast.p-button-outlined:not(:disabled):hover,
|
|
3020
|
+
.p-button.p-button-contrast.p-button-outlined:not(:disabled):hover,
|
|
3021
|
+
.p-button-group.p-button-contrast > .p-button.p-button-outlined:not(:disabled):hover,
|
|
3022
|
+
.p-splitbutton.p-button-contrast > .p-button.p-button-outlined:not(:disabled):hover {
|
|
2737
3023
|
background: rgba(31, 41, 55, 0.04);
|
|
2738
3024
|
color: #1f2937;
|
|
2739
3025
|
border: 1px solid;
|
|
2740
3026
|
}
|
|
2741
|
-
.p-button.p-button-contrast.p-button-outlined:not(:disabled):active,
|
|
3027
|
+
.p-button.p-button-contrast.p-button-outlined:not(:disabled):active,
|
|
3028
|
+
.p-button-group.p-button-contrast > .p-button.p-button-outlined:not(:disabled):active,
|
|
3029
|
+
.p-splitbutton.p-button-contrast > .p-button.p-button-outlined:not(:disabled):active {
|
|
2742
3030
|
background: rgba(31, 41, 55, 0.16);
|
|
2743
3031
|
color: #1f2937;
|
|
2744
3032
|
border: 1px solid;
|
|
2745
3033
|
}
|
|
2746
|
-
.p-button.p-button-contrast.p-button-text,
|
|
3034
|
+
.p-button.p-button-contrast.p-button-text,
|
|
3035
|
+
.p-button-group.p-button-contrast > .p-button.p-button-text,
|
|
3036
|
+
.p-splitbutton.p-button-contrast > .p-button.p-button-text {
|
|
2747
3037
|
background-color: transparent;
|
|
2748
3038
|
color: #1f2937;
|
|
2749
3039
|
border-color: transparent;
|
|
2750
3040
|
}
|
|
2751
|
-
.p-button.p-button-contrast.p-button-text:not(:disabled):hover,
|
|
3041
|
+
.p-button.p-button-contrast.p-button-text:not(:disabled):hover,
|
|
3042
|
+
.p-button-group.p-button-contrast > .p-button.p-button-text:not(:disabled):hover,
|
|
3043
|
+
.p-splitbutton.p-button-contrast > .p-button.p-button-text:not(:disabled):hover {
|
|
2752
3044
|
background: rgba(31, 41, 55, 0.04);
|
|
2753
3045
|
border-color: transparent;
|
|
2754
3046
|
color: #1f2937;
|
|
2755
3047
|
}
|
|
2756
|
-
.p-button.p-button-contrast.p-button-text:not(:disabled):active,
|
|
3048
|
+
.p-button.p-button-contrast.p-button-text:not(:disabled):active,
|
|
3049
|
+
.p-button-group.p-button-contrast > .p-button.p-button-text:not(:disabled):active,
|
|
3050
|
+
.p-splitbutton.p-button-contrast > .p-button.p-button-text:not(:disabled):active {
|
|
2757
3051
|
background: rgba(31, 41, 55, 0.16);
|
|
2758
3052
|
border-color: transparent;
|
|
2759
3053
|
color: #1f2937;
|
|
@@ -2836,7 +3130,10 @@
|
|
|
2836
3130
|
color: #6b7280;
|
|
2837
3131
|
}
|
|
2838
3132
|
.p-splitbutton.p-button-raised {
|
|
2839
|
-
box-shadow:
|
|
3133
|
+
box-shadow:
|
|
3134
|
+
0 3px 1px -2px rgba(0, 0, 0, 0.2),
|
|
3135
|
+
0 2px 2px 0 rgba(0, 0, 0, 0.14),
|
|
3136
|
+
0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
2840
3137
|
}
|
|
2841
3138
|
.p-splitbutton.p-button-rounded {
|
|
2842
3139
|
border-radius: 2rem;
|
|
@@ -3088,7 +3385,8 @@
|
|
|
3088
3385
|
.p-speeddial-quarter-circle .p-speeddial-item {
|
|
3089
3386
|
margin: 0;
|
|
3090
3387
|
}
|
|
3091
|
-
.p-speeddial-circle .p-speeddial-item:first-child,
|
|
3388
|
+
.p-speeddial-circle .p-speeddial-item:first-child,
|
|
3389
|
+
.p-speeddial-circle .p-speeddial-item:last-child,
|
|
3092
3390
|
.p-speeddial-semi-circle .p-speeddial-item:first-child,
|
|
3093
3391
|
.p-speeddial-semi-circle .p-speeddial-item:last-child,
|
|
3094
3392
|
.p-speeddial-quarter-circle .p-speeddial-item:first-child,
|
|
@@ -3107,7 +3405,10 @@
|
|
|
3107
3405
|
border: 0 none;
|
|
3108
3406
|
background: transparent;
|
|
3109
3407
|
border-radius: 50%;
|
|
3110
|
-
transition:
|
|
3408
|
+
transition:
|
|
3409
|
+
background-color 0.2s,
|
|
3410
|
+
color 0.2s,
|
|
3411
|
+
box-shadow 0.2s;
|
|
3111
3412
|
}
|
|
3112
3413
|
.p-carousel .p-carousel-content .p-carousel-prev:enabled:hover,
|
|
3113
3414
|
.p-carousel .p-carousel-content .p-carousel-next:enabled:hover {
|
|
@@ -3136,7 +3437,10 @@
|
|
|
3136
3437
|
background-color: #d1d5db;
|
|
3137
3438
|
width: 2rem;
|
|
3138
3439
|
height: 0.5rem;
|
|
3139
|
-
transition:
|
|
3440
|
+
transition:
|
|
3441
|
+
background-color 0.2s,
|
|
3442
|
+
color 0.2s,
|
|
3443
|
+
box-shadow 0.2s;
|
|
3140
3444
|
border-radius: 0;
|
|
3141
3445
|
}
|
|
3142
3446
|
.p-carousel .p-carousel-indicators .p-carousel-indicator button:hover {
|
|
@@ -3248,7 +3552,10 @@
|
|
|
3248
3552
|
border: 0 none;
|
|
3249
3553
|
background: transparent;
|
|
3250
3554
|
border-radius: 50%;
|
|
3251
|
-
transition:
|
|
3555
|
+
transition:
|
|
3556
|
+
background-color 0.2s,
|
|
3557
|
+
color 0.2s,
|
|
3558
|
+
box-shadow 0.2s;
|
|
3252
3559
|
}
|
|
3253
3560
|
.p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover,
|
|
3254
3561
|
.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover,
|
|
@@ -3290,7 +3597,9 @@
|
|
|
3290
3597
|
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
|
|
3291
3598
|
box-shadow: inset 0 -2px 0 0 #eff6ff;
|
|
3292
3599
|
}
|
|
3293
|
-
.p-datatable.p-datatable-selectable
|
|
3600
|
+
.p-datatable.p-datatable-selectable
|
|
3601
|
+
.p-datatable-tbody
|
|
3602
|
+
> tr.p-selectable-row:not(.p-highlight):not(.p-datatable-emptymessage):hover {
|
|
3294
3603
|
background: #f3f4f6;
|
|
3295
3604
|
color: #4b5563;
|
|
3296
3605
|
}
|
|
@@ -3298,15 +3607,23 @@
|
|
|
3298
3607
|
outline: 0.15rem solid #bfdbfe;
|
|
3299
3608
|
outline-offset: -0.15rem;
|
|
3300
3609
|
}
|
|
3301
|
-
.p-datatable.p-datatable-selectable-cell
|
|
3610
|
+
.p-datatable.p-datatable-selectable-cell
|
|
3611
|
+
.p-datatable-tbody
|
|
3612
|
+
> tr.p-selectable-row
|
|
3613
|
+
> td.p-selectable-cell:not(.p-highlight):hover {
|
|
3302
3614
|
background: #f3f4f6;
|
|
3303
3615
|
color: #4b5563;
|
|
3304
3616
|
}
|
|
3305
|
-
.p-datatable.p-datatable-selectable-cell
|
|
3617
|
+
.p-datatable.p-datatable-selectable-cell
|
|
3618
|
+
.p-datatable-tbody
|
|
3619
|
+
> tr.p-selectable-row
|
|
3620
|
+
> td.p-selectable-cell:focus-visible {
|
|
3306
3621
|
outline: 0.15rem solid #bfdbfe;
|
|
3307
3622
|
outline-offset: -0.15rem;
|
|
3308
3623
|
}
|
|
3309
|
-
.p-datatable.p-datatable-hoverable-rows
|
|
3624
|
+
.p-datatable.p-datatable-hoverable-rows
|
|
3625
|
+
.p-datatable-tbody
|
|
3626
|
+
> tr:not(.p-highlight):not(.p-datatable-emptymessage):hover {
|
|
3310
3627
|
background: #f3f4f6;
|
|
3311
3628
|
color: #4b5563;
|
|
3312
3629
|
}
|
|
@@ -3318,8 +3635,17 @@
|
|
|
3318
3635
|
background: #f9fafb;
|
|
3319
3636
|
}
|
|
3320
3637
|
.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead,
|
|
3321
|
-
.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot,
|
|
3322
|
-
.p-datatable.p-datatable-scrollable
|
|
3638
|
+
.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot,
|
|
3639
|
+
.p-datatable.p-datatable-scrollable
|
|
3640
|
+
> .p-datatable-wrapper
|
|
3641
|
+
> .p-virtualscroller
|
|
3642
|
+
> .p-datatable-table
|
|
3643
|
+
> .p-datatable-thead,
|
|
3644
|
+
.p-datatable.p-datatable-scrollable
|
|
3645
|
+
> .p-datatable-wrapper
|
|
3646
|
+
> .p-virtualscroller
|
|
3647
|
+
> .p-datatable-table
|
|
3648
|
+
> .p-datatable-tfoot {
|
|
3323
3649
|
background-color: #f9fafb;
|
|
3324
3650
|
}
|
|
3325
3651
|
.p-datatable .p-datatable-loading-icon {
|
|
@@ -3374,13 +3700,22 @@
|
|
|
3374
3700
|
.p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody > tr > td {
|
|
3375
3701
|
border-width: 0 0 1px 1px;
|
|
3376
3702
|
}
|
|
3377
|
-
.p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody)
|
|
3703
|
+
.p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody)
|
|
3704
|
+
.p-datatable-tbody
|
|
3705
|
+
> tr
|
|
3706
|
+
> td:last-child {
|
|
3378
3707
|
border-width: 0 1px 1px 1px;
|
|
3379
3708
|
}
|
|
3380
|
-
.p-datatable.p-datatable-gridlines:has(.p-datatable-tbody):has(.p-datatable-tfoot)
|
|
3709
|
+
.p-datatable.p-datatable-gridlines:has(.p-datatable-tbody):has(.p-datatable-tfoot)
|
|
3710
|
+
.p-datatable-tbody
|
|
3711
|
+
> tr:last-child
|
|
3712
|
+
> td {
|
|
3381
3713
|
border-width: 0 0 0 1px;
|
|
3382
3714
|
}
|
|
3383
|
-
.p-datatable.p-datatable-gridlines:has(.p-datatable-tbody):has(.p-datatable-tfoot)
|
|
3715
|
+
.p-datatable.p-datatable-gridlines:has(.p-datatable-tbody):has(.p-datatable-tfoot)
|
|
3716
|
+
.p-datatable-tbody
|
|
3717
|
+
> tr:last-child
|
|
3718
|
+
> td:last-child {
|
|
3384
3719
|
border-width: 0 1px 0 1px;
|
|
3385
3720
|
}
|
|
3386
3721
|
.p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd {
|
|
@@ -3518,18 +3853,23 @@
|
|
|
3518
3853
|
border: 0 none;
|
|
3519
3854
|
background: transparent;
|
|
3520
3855
|
border-radius: 50%;
|
|
3521
|
-
transition:
|
|
3856
|
+
transition:
|
|
3857
|
+
background-color 0.2s,
|
|
3858
|
+
color 0.2s,
|
|
3859
|
+
box-shadow 0.2s;
|
|
3522
3860
|
}
|
|
3523
3861
|
.p-column-filter-menu-button:hover {
|
|
3524
3862
|
color: #374151;
|
|
3525
3863
|
border-color: transparent;
|
|
3526
3864
|
background: #f3f4f6;
|
|
3527
3865
|
}
|
|
3528
|
-
.p-column-filter-menu-button.p-column-filter-menu-button-open,
|
|
3866
|
+
.p-column-filter-menu-button.p-column-filter-menu-button-open,
|
|
3867
|
+
.p-column-filter-menu-button.p-column-filter-menu-button-open:hover {
|
|
3529
3868
|
background: #f3f4f6;
|
|
3530
3869
|
color: #374151;
|
|
3531
3870
|
}
|
|
3532
|
-
.p-column-filter-menu-button.p-column-filter-menu-button-active,
|
|
3871
|
+
.p-column-filter-menu-button.p-column-filter-menu-button-active,
|
|
3872
|
+
.p-column-filter-menu-button.p-column-filter-menu-button-active:hover {
|
|
3533
3873
|
background: #eff6ff;
|
|
3534
3874
|
color: #1d4ed8;
|
|
3535
3875
|
}
|
|
@@ -3545,7 +3885,10 @@
|
|
|
3545
3885
|
border: 0 none;
|
|
3546
3886
|
background: transparent;
|
|
3547
3887
|
border-radius: 50%;
|
|
3548
|
-
transition:
|
|
3888
|
+
transition:
|
|
3889
|
+
background-color 0.2s,
|
|
3890
|
+
color 0.2s,
|
|
3891
|
+
box-shadow 0.2s;
|
|
3549
3892
|
}
|
|
3550
3893
|
.p-column-filter-clear-button:hover {
|
|
3551
3894
|
color: #374151;
|
|
@@ -3581,7 +3924,9 @@
|
|
|
3581
3924
|
color: #1d4ed8;
|
|
3582
3925
|
background: #eff6ff;
|
|
3583
3926
|
}
|
|
3584
|
-
.p-column-filter-overlay
|
|
3927
|
+
.p-column-filter-overlay
|
|
3928
|
+
.p-column-filter-row-items
|
|
3929
|
+
.p-column-filter-row-item:not(.p-highlight):not(.p-disabled):hover {
|
|
3585
3930
|
color: #4b5563;
|
|
3586
3931
|
background: #f3f4f6;
|
|
3587
3932
|
}
|
|
@@ -3666,7 +4011,9 @@
|
|
|
3666
4011
|
border: 0 none;
|
|
3667
4012
|
color: #4b5563;
|
|
3668
4013
|
background: transparent;
|
|
3669
|
-
transition:
|
|
4014
|
+
transition:
|
|
4015
|
+
transform 0.2s,
|
|
4016
|
+
box-shadow 0.2s;
|
|
3670
4017
|
}
|
|
3671
4018
|
.p-orderlist .p-orderlist-list .p-orderlist-item:not(.p-highlight):hover {
|
|
3672
4019
|
background: #f3f4f6;
|
|
@@ -3851,7 +4198,9 @@
|
|
|
3851
4198
|
border: 0 none;
|
|
3852
4199
|
color: #4b5563;
|
|
3853
4200
|
background: transparent;
|
|
3854
|
-
transition:
|
|
4201
|
+
transition:
|
|
4202
|
+
transform 0.2s,
|
|
4203
|
+
box-shadow 0.2s;
|
|
3855
4204
|
}
|
|
3856
4205
|
.p-picklist .p-picklist-list .p-picklist-item:not(.p-highlight):hover {
|
|
3857
4206
|
background: #f3f4f6;
|
|
@@ -3953,7 +4302,10 @@
|
|
|
3953
4302
|
border: 0 none;
|
|
3954
4303
|
background: transparent;
|
|
3955
4304
|
border-radius: 50%;
|
|
3956
|
-
transition:
|
|
4305
|
+
transition:
|
|
4306
|
+
background-color 0.2s,
|
|
4307
|
+
color 0.2s,
|
|
4308
|
+
box-shadow 0.2s;
|
|
3957
4309
|
}
|
|
3958
4310
|
.p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler:enabled:hover {
|
|
3959
4311
|
color: #374151;
|
|
@@ -4240,7 +4592,10 @@
|
|
|
4240
4592
|
border: 0 none;
|
|
4241
4593
|
background: transparent;
|
|
4242
4594
|
border-radius: 50%;
|
|
4243
|
-
transition:
|
|
4595
|
+
transition:
|
|
4596
|
+
background-color 0.2s,
|
|
4597
|
+
color 0.2s,
|
|
4598
|
+
box-shadow 0.2s;
|
|
4244
4599
|
}
|
|
4245
4600
|
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler:enabled:hover {
|
|
4246
4601
|
color: #374151;
|
|
@@ -4275,11 +4630,13 @@
|
|
|
4275
4630
|
.p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler:hover {
|
|
4276
4631
|
color: #1d4ed8;
|
|
4277
4632
|
}
|
|
4278
|
-
.p-treetable.p-treetable-selectable .p-treetable-tbody > tr:not(.p-highlight):hover,
|
|
4633
|
+
.p-treetable.p-treetable-selectable .p-treetable-tbody > tr:not(.p-highlight):hover,
|
|
4634
|
+
.p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover {
|
|
4279
4635
|
background: #f3f4f6;
|
|
4280
4636
|
color: #4b5563;
|
|
4281
4637
|
}
|
|
4282
|
-
.p-treetable.p-treetable-selectable .p-treetable-tbody > tr:not(.p-highlight):hover .p-treetable-toggler,
|
|
4638
|
+
.p-treetable.p-treetable-selectable .p-treetable-tbody > tr:not(.p-highlight):hover .p-treetable-toggler,
|
|
4639
|
+
.p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover .p-treetable-toggler {
|
|
4283
4640
|
color: #4b5563;
|
|
4284
4641
|
}
|
|
4285
4642
|
.p-treetable .p-column-resizer-helper {
|
|
@@ -4438,7 +4795,10 @@
|
|
|
4438
4795
|
.p-card {
|
|
4439
4796
|
background: #ffffff;
|
|
4440
4797
|
color: #4b5563;
|
|
4441
|
-
box-shadow:
|
|
4798
|
+
box-shadow:
|
|
4799
|
+
0 2px 1px -1px rgba(0, 0, 0, 0.2),
|
|
4800
|
+
0 1px 1px 0 rgba(0, 0, 0, 0.14),
|
|
4801
|
+
0 1px 3px 0 rgba(0, 0, 0, 0.12);
|
|
4442
4802
|
border-radius: 6px;
|
|
4443
4803
|
}
|
|
4444
4804
|
.p-card .p-card-body {
|
|
@@ -4476,7 +4836,10 @@
|
|
|
4476
4836
|
}
|
|
4477
4837
|
.p-fieldset.p-fieldset-toggleable .p-fieldset-legend {
|
|
4478
4838
|
padding: 0;
|
|
4479
|
-
transition:
|
|
4839
|
+
transition:
|
|
4840
|
+
background-color 0.2s,
|
|
4841
|
+
color 0.2s,
|
|
4842
|
+
box-shadow 0.2s;
|
|
4480
4843
|
}
|
|
4481
4844
|
.p-fieldset.p-fieldset-toggleable .p-fieldset-legend a {
|
|
4482
4845
|
padding: 1.25rem;
|
|
@@ -4541,7 +4904,10 @@
|
|
|
4541
4904
|
border: 0 none;
|
|
4542
4905
|
background: transparent;
|
|
4543
4906
|
border-radius: 50%;
|
|
4544
|
-
transition:
|
|
4907
|
+
transition:
|
|
4908
|
+
background-color 0.2s,
|
|
4909
|
+
color 0.2s,
|
|
4910
|
+
box-shadow 0.2s;
|
|
4545
4911
|
}
|
|
4546
4912
|
.p-panel .p-panel-header .p-panel-header-icon:enabled:hover {
|
|
4547
4913
|
color: #374151;
|
|
@@ -4583,7 +4949,10 @@
|
|
|
4583
4949
|
color: #4b5563;
|
|
4584
4950
|
}
|
|
4585
4951
|
.p-splitter .p-splitter-gutter {
|
|
4586
|
-
transition:
|
|
4952
|
+
transition:
|
|
4953
|
+
background-color 0.2s,
|
|
4954
|
+
color 0.2s,
|
|
4955
|
+
box-shadow 0.2s;
|
|
4587
4956
|
background: #f9fafb;
|
|
4588
4957
|
}
|
|
4589
4958
|
.p-splitter .p-splitter-gutter .p-splitter-gutter-handle {
|
|
@@ -4623,13 +4992,19 @@
|
|
|
4623
4992
|
line-height: 2rem;
|
|
4624
4993
|
font-size: 1.143rem;
|
|
4625
4994
|
border-radius: 50%;
|
|
4626
|
-
transition:
|
|
4995
|
+
transition:
|
|
4996
|
+
background-color 0.2s,
|
|
4997
|
+
color 0.2s,
|
|
4998
|
+
box-shadow 0.2s;
|
|
4627
4999
|
}
|
|
4628
5000
|
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
|
4629
5001
|
margin-left: 0.5rem;
|
|
4630
5002
|
color: #6b7280;
|
|
4631
5003
|
font-weight: 700;
|
|
4632
|
-
transition:
|
|
5004
|
+
transition:
|
|
5005
|
+
background-color 0.2s,
|
|
5006
|
+
color 0.2s,
|
|
5007
|
+
box-shadow 0.2s;
|
|
4633
5008
|
}
|
|
4634
5009
|
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
|
4635
5010
|
outline: 0 none;
|
|
@@ -4814,7 +5189,10 @@
|
|
|
4814
5189
|
background: #ffffff;
|
|
4815
5190
|
color: #3b82f6;
|
|
4816
5191
|
width: 3rem;
|
|
4817
|
-
box-shadow:
|
|
5192
|
+
box-shadow:
|
|
5193
|
+
0 3px 1px -2px rgba(0, 0, 0, 0.2),
|
|
5194
|
+
0 2px 2px 0 rgba(0, 0, 0, 0.14),
|
|
5195
|
+
0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
4818
5196
|
border-radius: 0;
|
|
4819
5197
|
}
|
|
4820
5198
|
.p-tabview .p-tabview-nav-btn.p-link:focus-visible {
|
|
@@ -4911,7 +5289,10 @@
|
|
|
4911
5289
|
border: 0 none;
|
|
4912
5290
|
background: transparent;
|
|
4913
5291
|
border-radius: 50%;
|
|
4914
|
-
transition:
|
|
5292
|
+
transition:
|
|
5293
|
+
background-color 0.2s,
|
|
5294
|
+
color 0.2s,
|
|
5295
|
+
box-shadow 0.2s;
|
|
4915
5296
|
}
|
|
4916
5297
|
.p-dialog .p-dialog-header .p-dialog-header-icon:enabled:hover {
|
|
4917
5298
|
color: #374151;
|
|
@@ -4951,7 +5332,8 @@
|
|
|
4951
5332
|
margin: 0 0.5rem 0 0;
|
|
4952
5333
|
width: auto;
|
|
4953
5334
|
}
|
|
4954
|
-
.p-dialog.p-dialog-maximized .p-dialog-header,
|
|
5335
|
+
.p-dialog.p-dialog-maximized .p-dialog-header,
|
|
5336
|
+
.p-dialog.p-dialog-maximized .p-dialog-content:last-of-type {
|
|
4955
5337
|
border-radius: 0;
|
|
4956
5338
|
}
|
|
4957
5339
|
.p-dialog.p-confirm-dialog .p-confirm-dialog-icon {
|
|
@@ -4979,7 +5361,10 @@
|
|
|
4979
5361
|
color: #ffffff;
|
|
4980
5362
|
width: 2rem;
|
|
4981
5363
|
height: 2rem;
|
|
4982
|
-
transition:
|
|
5364
|
+
transition:
|
|
5365
|
+
background-color 0.2s,
|
|
5366
|
+
color 0.2s,
|
|
5367
|
+
box-shadow 0.2s;
|
|
4983
5368
|
border-radius: 50%;
|
|
4984
5369
|
position: absolute;
|
|
4985
5370
|
top: -1rem;
|
|
@@ -5022,7 +5407,10 @@
|
|
|
5022
5407
|
border: 0 none;
|
|
5023
5408
|
background: transparent;
|
|
5024
5409
|
border-radius: 50%;
|
|
5025
|
-
transition:
|
|
5410
|
+
transition:
|
|
5411
|
+
background-color 0.2s,
|
|
5412
|
+
color 0.2s,
|
|
5413
|
+
box-shadow 0.2s;
|
|
5026
5414
|
}
|
|
5027
5415
|
.p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover,
|
|
5028
5416
|
.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover {
|
|
@@ -5179,22 +5567,46 @@
|
|
|
5179
5567
|
color: #4b5563;
|
|
5180
5568
|
background: #e5e7eb;
|
|
5181
5569
|
}
|
|
5182
|
-
.p-contextmenu
|
|
5570
|
+
.p-contextmenu
|
|
5571
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled).p-focus
|
|
5572
|
+
> .p-menuitem-content
|
|
5573
|
+
.p-menuitem-link
|
|
5574
|
+
.p-menuitem-text {
|
|
5183
5575
|
color: #4b5563;
|
|
5184
5576
|
}
|
|
5185
|
-
.p-contextmenu
|
|
5186
|
-
|
|
5577
|
+
.p-contextmenu
|
|
5578
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled).p-focus
|
|
5579
|
+
> .p-menuitem-content
|
|
5580
|
+
.p-menuitem-link
|
|
5581
|
+
.p-menuitem-icon,
|
|
5582
|
+
.p-contextmenu
|
|
5583
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled).p-focus
|
|
5584
|
+
> .p-menuitem-content
|
|
5585
|
+
.p-menuitem-link
|
|
5586
|
+
.p-submenu-icon {
|
|
5187
5587
|
color: #4b5563;
|
|
5188
5588
|
}
|
|
5189
5589
|
.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover {
|
|
5190
5590
|
color: #4b5563;
|
|
5191
5591
|
background: #f3f4f6;
|
|
5192
5592
|
}
|
|
5193
|
-
.p-contextmenu
|
|
5194
|
-
|
|
5195
|
-
|
|
5196
|
-
|
|
5197
|
-
|
|
5593
|
+
.p-contextmenu
|
|
5594
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
5595
|
+
> .p-menuitem-content:hover
|
|
5596
|
+
.p-menuitem-link
|
|
5597
|
+
.p-menuitem-text {
|
|
5598
|
+
color: #4b5563;
|
|
5599
|
+
}
|
|
5600
|
+
.p-contextmenu
|
|
5601
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
5602
|
+
> .p-menuitem-content:hover
|
|
5603
|
+
.p-menuitem-link
|
|
5604
|
+
.p-menuitem-icon,
|
|
5605
|
+
.p-contextmenu
|
|
5606
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
5607
|
+
> .p-menuitem-content:hover
|
|
5608
|
+
.p-menuitem-link
|
|
5609
|
+
.p-submenu-icon {
|
|
5198
5610
|
color: #6b7280;
|
|
5199
5611
|
}
|
|
5200
5612
|
.p-contextmenu .p-menuitem-separator {
|
|
@@ -5231,43 +5643,53 @@
|
|
|
5231
5643
|
height: 4rem;
|
|
5232
5644
|
}
|
|
5233
5645
|
.p-dock.p-dock-top .p-dock-item-second-prev,
|
|
5234
|
-
.p-dock.p-dock-top .p-dock-item-second-next,
|
|
5646
|
+
.p-dock.p-dock-top .p-dock-item-second-next,
|
|
5647
|
+
.p-dock.p-dock-bottom .p-dock-item-second-prev,
|
|
5235
5648
|
.p-dock.p-dock-bottom .p-dock-item-second-next {
|
|
5236
5649
|
margin: 0 0.9rem;
|
|
5237
5650
|
}
|
|
5238
5651
|
.p-dock.p-dock-top .p-dock-item-prev,
|
|
5239
|
-
.p-dock.p-dock-top .p-dock-item-next,
|
|
5652
|
+
.p-dock.p-dock-top .p-dock-item-next,
|
|
5653
|
+
.p-dock.p-dock-bottom .p-dock-item-prev,
|
|
5240
5654
|
.p-dock.p-dock-bottom .p-dock-item-next {
|
|
5241
5655
|
margin: 0 1.3rem;
|
|
5242
5656
|
}
|
|
5243
|
-
.p-dock.p-dock-top .p-dock-item-current,
|
|
5657
|
+
.p-dock.p-dock-top .p-dock-item-current,
|
|
5658
|
+
.p-dock.p-dock-bottom .p-dock-item-current {
|
|
5244
5659
|
margin: 0 1.5rem;
|
|
5245
5660
|
}
|
|
5246
5661
|
.p-dock.p-dock-left .p-dock-item-second-prev,
|
|
5247
|
-
.p-dock.p-dock-left .p-dock-item-second-next,
|
|
5662
|
+
.p-dock.p-dock-left .p-dock-item-second-next,
|
|
5663
|
+
.p-dock.p-dock-right .p-dock-item-second-prev,
|
|
5248
5664
|
.p-dock.p-dock-right .p-dock-item-second-next {
|
|
5249
5665
|
margin: 0.9rem 0;
|
|
5250
5666
|
}
|
|
5251
5667
|
.p-dock.p-dock-left .p-dock-item-prev,
|
|
5252
|
-
.p-dock.p-dock-left .p-dock-item-next,
|
|
5668
|
+
.p-dock.p-dock-left .p-dock-item-next,
|
|
5669
|
+
.p-dock.p-dock-right .p-dock-item-prev,
|
|
5253
5670
|
.p-dock.p-dock-right .p-dock-item-next {
|
|
5254
5671
|
margin: 1.3rem 0;
|
|
5255
5672
|
}
|
|
5256
|
-
.p-dock.p-dock-left .p-dock-item-current,
|
|
5673
|
+
.p-dock.p-dock-left .p-dock-item-current,
|
|
5674
|
+
.p-dock.p-dock-right .p-dock-item-current {
|
|
5257
5675
|
margin: 1.5rem 0;
|
|
5258
5676
|
}
|
|
5259
|
-
.p-dock.p-dock-mobile.p-dock-top .p-dock-list-container,
|
|
5677
|
+
.p-dock.p-dock-mobile.p-dock-top .p-dock-list-container,
|
|
5678
|
+
.p-dock.p-dock-mobile.p-dock-bottom .p-dock-list-container {
|
|
5260
5679
|
overflow-x: auto;
|
|
5261
5680
|
width: 100%;
|
|
5262
5681
|
}
|
|
5263
|
-
.p-dock.p-dock-mobile.p-dock-top .p-dock-list-container .p-dock-list,
|
|
5682
|
+
.p-dock.p-dock-mobile.p-dock-top .p-dock-list-container .p-dock-list,
|
|
5683
|
+
.p-dock.p-dock-mobile.p-dock-bottom .p-dock-list-container .p-dock-list {
|
|
5264
5684
|
margin: 0 auto;
|
|
5265
5685
|
}
|
|
5266
|
-
.p-dock.p-dock-mobile.p-dock-left .p-dock-list-container,
|
|
5686
|
+
.p-dock.p-dock-mobile.p-dock-left .p-dock-list-container,
|
|
5687
|
+
.p-dock.p-dock-mobile.p-dock-right .p-dock-list-container {
|
|
5267
5688
|
overflow-y: auto;
|
|
5268
5689
|
height: 100%;
|
|
5269
5690
|
}
|
|
5270
|
-
.p-dock.p-dock-mobile.p-dock-left .p-dock-list-container .p-dock-list,
|
|
5691
|
+
.p-dock.p-dock-mobile.p-dock-left .p-dock-list-container .p-dock-list,
|
|
5692
|
+
.p-dock.p-dock-mobile.p-dock-right .p-dock-list-container .p-dock-list {
|
|
5271
5693
|
margin: auto 0;
|
|
5272
5694
|
}
|
|
5273
5695
|
.p-dock.p-dock-mobile .p-dock-list .p-dock-item {
|
|
@@ -5278,15 +5700,18 @@
|
|
|
5278
5700
|
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-top .p-dock-item-second-next,
|
|
5279
5701
|
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-top .p-dock-item-prev,
|
|
5280
5702
|
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-top .p-dock-item-next,
|
|
5281
|
-
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-top .p-dock-item-current,
|
|
5703
|
+
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-top .p-dock-item-current,
|
|
5704
|
+
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-bottom .p-dock-item-second-prev,
|
|
5282
5705
|
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-bottom .p-dock-item-second-next,
|
|
5283
5706
|
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-bottom .p-dock-item-prev,
|
|
5284
5707
|
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-bottom .p-dock-item-next,
|
|
5285
|
-
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-bottom .p-dock-item-current,
|
|
5708
|
+
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-bottom .p-dock-item-current,
|
|
5709
|
+
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-left .p-dock-item-second-prev,
|
|
5286
5710
|
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-left .p-dock-item-second-next,
|
|
5287
5711
|
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-left .p-dock-item-prev,
|
|
5288
5712
|
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-left .p-dock-item-next,
|
|
5289
|
-
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-left .p-dock-item-current,
|
|
5713
|
+
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-left .p-dock-item-current,
|
|
5714
|
+
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-right .p-dock-item-second-prev,
|
|
5290
5715
|
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-right .p-dock-item-second-next,
|
|
5291
5716
|
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-right .p-dock-item-prev,
|
|
5292
5717
|
.p-dock.p-dock-mobile.p-dock-magnification.p-dock-right .p-dock-item-next,
|
|
@@ -5342,22 +5767,46 @@
|
|
|
5342
5767
|
color: #4b5563;
|
|
5343
5768
|
background: #e5e7eb;
|
|
5344
5769
|
}
|
|
5345
|
-
.p-megamenu
|
|
5770
|
+
.p-megamenu
|
|
5771
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled).p-focus
|
|
5772
|
+
> .p-menuitem-content
|
|
5773
|
+
.p-menuitem-link
|
|
5774
|
+
.p-menuitem-text {
|
|
5346
5775
|
color: #4b5563;
|
|
5347
5776
|
}
|
|
5348
|
-
.p-megamenu
|
|
5349
|
-
|
|
5777
|
+
.p-megamenu
|
|
5778
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled).p-focus
|
|
5779
|
+
> .p-menuitem-content
|
|
5780
|
+
.p-menuitem-link
|
|
5781
|
+
.p-menuitem-icon,
|
|
5782
|
+
.p-megamenu
|
|
5783
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled).p-focus
|
|
5784
|
+
> .p-menuitem-content
|
|
5785
|
+
.p-menuitem-link
|
|
5786
|
+
.p-submenu-icon {
|
|
5350
5787
|
color: #4b5563;
|
|
5351
5788
|
}
|
|
5352
5789
|
.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover {
|
|
5353
5790
|
color: #4b5563;
|
|
5354
5791
|
background: #f3f4f6;
|
|
5355
5792
|
}
|
|
5356
|
-
.p-megamenu
|
|
5357
|
-
|
|
5358
|
-
|
|
5359
|
-
|
|
5360
|
-
|
|
5793
|
+
.p-megamenu
|
|
5794
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
5795
|
+
> .p-menuitem-content:hover
|
|
5796
|
+
.p-menuitem-link
|
|
5797
|
+
.p-menuitem-text {
|
|
5798
|
+
color: #4b5563;
|
|
5799
|
+
}
|
|
5800
|
+
.p-megamenu
|
|
5801
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
5802
|
+
> .p-menuitem-content:hover
|
|
5803
|
+
.p-menuitem-link
|
|
5804
|
+
.p-menuitem-icon,
|
|
5805
|
+
.p-megamenu
|
|
5806
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
5807
|
+
> .p-menuitem-content:hover
|
|
5808
|
+
.p-menuitem-link
|
|
5809
|
+
.p-submenu-icon {
|
|
5361
5810
|
color: #6b7280;
|
|
5362
5811
|
}
|
|
5363
5812
|
.p-megamenu .p-megamenu-panel {
|
|
@@ -5392,7 +5841,10 @@
|
|
|
5392
5841
|
height: 2rem;
|
|
5393
5842
|
color: #6b7280;
|
|
5394
5843
|
border-radius: 50%;
|
|
5395
|
-
transition:
|
|
5844
|
+
transition:
|
|
5845
|
+
background-color 0.2s,
|
|
5846
|
+
color 0.2s,
|
|
5847
|
+
box-shadow 0.2s;
|
|
5396
5848
|
}
|
|
5397
5849
|
.p-megamenu .p-megamenu-button:hover {
|
|
5398
5850
|
color: #6b7280;
|
|
@@ -5412,26 +5864,59 @@
|
|
|
5412
5864
|
padding: 0.75rem 1.25rem;
|
|
5413
5865
|
user-select: none;
|
|
5414
5866
|
}
|
|
5415
|
-
.p-megamenu.p-megamenu-horizontal
|
|
5867
|
+
.p-megamenu.p-megamenu-horizontal
|
|
5868
|
+
.p-megamenu-root-list
|
|
5869
|
+
> .p-menuitem
|
|
5870
|
+
> .p-menuitem-content
|
|
5871
|
+
.p-menuitem-link
|
|
5872
|
+
.p-menuitem-text {
|
|
5416
5873
|
color: #4b5563;
|
|
5417
5874
|
}
|
|
5418
|
-
.p-megamenu.p-megamenu-horizontal
|
|
5875
|
+
.p-megamenu.p-megamenu-horizontal
|
|
5876
|
+
.p-megamenu-root-list
|
|
5877
|
+
> .p-menuitem
|
|
5878
|
+
> .p-menuitem-content
|
|
5879
|
+
.p-menuitem-link
|
|
5880
|
+
.p-menuitem-icon {
|
|
5419
5881
|
color: #6b7280;
|
|
5420
5882
|
margin-right: 0.5rem;
|
|
5421
5883
|
}
|
|
5422
|
-
.p-megamenu.p-megamenu-horizontal
|
|
5884
|
+
.p-megamenu.p-megamenu-horizontal
|
|
5885
|
+
.p-megamenu-root-list
|
|
5886
|
+
> .p-menuitem
|
|
5887
|
+
> .p-menuitem-content
|
|
5888
|
+
.p-menuitem-link
|
|
5889
|
+
.p-submenu-icon {
|
|
5423
5890
|
color: #6b7280;
|
|
5424
5891
|
margin-left: 0.5rem;
|
|
5425
5892
|
}
|
|
5426
|
-
.p-megamenu.p-megamenu-horizontal
|
|
5893
|
+
.p-megamenu.p-megamenu-horizontal
|
|
5894
|
+
.p-megamenu-root-list
|
|
5895
|
+
> .p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
5896
|
+
> .p-menuitem-content:hover {
|
|
5427
5897
|
color: #4b5563;
|
|
5428
5898
|
background: #f3f4f6;
|
|
5429
5899
|
}
|
|
5430
|
-
.p-megamenu.p-megamenu-horizontal
|
|
5431
|
-
|
|
5432
|
-
|
|
5433
|
-
|
|
5434
|
-
|
|
5900
|
+
.p-megamenu.p-megamenu-horizontal
|
|
5901
|
+
.p-megamenu-root-list
|
|
5902
|
+
> .p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
5903
|
+
> .p-menuitem-content:hover
|
|
5904
|
+
.p-menuitem-link
|
|
5905
|
+
.p-menuitem-text {
|
|
5906
|
+
color: #4b5563;
|
|
5907
|
+
}
|
|
5908
|
+
.p-megamenu.p-megamenu-horizontal
|
|
5909
|
+
.p-megamenu-root-list
|
|
5910
|
+
> .p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
5911
|
+
> .p-menuitem-content:hover
|
|
5912
|
+
.p-menuitem-link
|
|
5913
|
+
.p-menuitem-icon,
|
|
5914
|
+
.p-megamenu.p-megamenu-horizontal
|
|
5915
|
+
.p-megamenu-root-list
|
|
5916
|
+
> .p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
5917
|
+
> .p-menuitem-content:hover
|
|
5918
|
+
.p-menuitem-link
|
|
5919
|
+
.p-submenu-icon {
|
|
5435
5920
|
color: #6b7280;
|
|
5436
5921
|
}
|
|
5437
5922
|
.p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list {
|
|
@@ -5460,61 +5945,158 @@
|
|
|
5460
5945
|
transition: box-shadow 0.2s;
|
|
5461
5946
|
border-radius: 0;
|
|
5462
5947
|
}
|
|
5463
|
-
.p-megamenu.p-megamenu-mobile-active
|
|
5948
|
+
.p-megamenu.p-megamenu-mobile-active
|
|
5949
|
+
.p-megamenu-root-list
|
|
5950
|
+
> .p-menuitem
|
|
5951
|
+
> .p-menuitem-link
|
|
5952
|
+
> .p-menuitem-content
|
|
5953
|
+
.p-menuitem-link {
|
|
5464
5954
|
color: #4b5563;
|
|
5465
5955
|
padding: 0.75rem 1.25rem;
|
|
5466
5956
|
user-select: none;
|
|
5467
5957
|
}
|
|
5468
|
-
.p-megamenu.p-megamenu-mobile-active
|
|
5469
|
-
|
|
5470
|
-
|
|
5471
|
-
|
|
5958
|
+
.p-megamenu.p-megamenu-mobile-active
|
|
5959
|
+
.p-megamenu-root-list
|
|
5960
|
+
> .p-menuitem
|
|
5961
|
+
> .p-menuitem-link
|
|
5962
|
+
> .p-menuitem-content
|
|
5963
|
+
.p-menuitem-link
|
|
5964
|
+
.p-menuitem-text {
|
|
5965
|
+
color: #4b5563;
|
|
5966
|
+
}
|
|
5967
|
+
.p-megamenu.p-megamenu-mobile-active
|
|
5968
|
+
.p-megamenu-root-list
|
|
5969
|
+
> .p-menuitem
|
|
5970
|
+
> .p-menuitem-link
|
|
5971
|
+
> .p-menuitem-content
|
|
5972
|
+
.p-menuitem-link
|
|
5973
|
+
.p-menuitem-icon {
|
|
5472
5974
|
color: #6b7280;
|
|
5473
5975
|
margin-right: 0.5rem;
|
|
5474
5976
|
}
|
|
5475
|
-
.p-megamenu.p-megamenu-mobile-active
|
|
5977
|
+
.p-megamenu.p-megamenu-mobile-active
|
|
5978
|
+
.p-megamenu-root-list
|
|
5979
|
+
> .p-menuitem
|
|
5980
|
+
> .p-menuitem-link
|
|
5981
|
+
> .p-menuitem-content
|
|
5982
|
+
.p-menuitem-link
|
|
5983
|
+
.p-submenu-icon {
|
|
5476
5984
|
color: #6b7280;
|
|
5477
5985
|
}
|
|
5478
|
-
.p-megamenu.p-megamenu-mobile-active
|
|
5986
|
+
.p-megamenu.p-megamenu-mobile-active
|
|
5987
|
+
.p-megamenu-root-list
|
|
5988
|
+
> .p-menuitem
|
|
5989
|
+
> .p-menuitem-link.p-highlight
|
|
5990
|
+
> .p-menuitem-content {
|
|
5479
5991
|
color: #1d4ed8;
|
|
5480
5992
|
background: #eff6ff;
|
|
5481
5993
|
}
|
|
5482
|
-
.p-megamenu.p-megamenu-mobile-active
|
|
5994
|
+
.p-megamenu.p-megamenu-mobile-active
|
|
5995
|
+
.p-megamenu-root-list
|
|
5996
|
+
> .p-menuitem
|
|
5997
|
+
> .p-menuitem-link.p-highlight
|
|
5998
|
+
> .p-menuitem-content
|
|
5999
|
+
.p-menuitem-link
|
|
6000
|
+
.p-menuitem-text {
|
|
5483
6001
|
color: #1d4ed8;
|
|
5484
6002
|
}
|
|
5485
|
-
.p-megamenu.p-megamenu-mobile-active
|
|
5486
|
-
|
|
6003
|
+
.p-megamenu.p-megamenu-mobile-active
|
|
6004
|
+
.p-megamenu-root-list
|
|
6005
|
+
> .p-menuitem
|
|
6006
|
+
> .p-menuitem-link.p-highlight
|
|
6007
|
+
> .p-menuitem-content
|
|
6008
|
+
.p-menuitem-link
|
|
6009
|
+
.p-menuitem-icon,
|
|
6010
|
+
.p-megamenu.p-megamenu-mobile-active
|
|
6011
|
+
.p-megamenu-root-list
|
|
6012
|
+
> .p-menuitem
|
|
6013
|
+
> .p-menuitem-link.p-highlight
|
|
6014
|
+
> .p-menuitem-content
|
|
6015
|
+
.p-menuitem-link
|
|
6016
|
+
.p-submenu-icon {
|
|
5487
6017
|
color: #1d4ed8;
|
|
5488
6018
|
}
|
|
5489
|
-
.p-megamenu.p-megamenu-mobile-active
|
|
6019
|
+
.p-megamenu.p-megamenu-mobile-active
|
|
6020
|
+
.p-megamenu-root-list
|
|
6021
|
+
> .p-menuitem
|
|
6022
|
+
> .p-menuitem-link.p-highlight.p-focus
|
|
6023
|
+
> .p-menuitem-content {
|
|
5490
6024
|
background: rgba(59, 130, 246, 0.24);
|
|
5491
6025
|
}
|
|
5492
|
-
.p-megamenu.p-megamenu-mobile-active
|
|
6026
|
+
.p-megamenu.p-megamenu-mobile-active
|
|
6027
|
+
.p-megamenu-root-list
|
|
6028
|
+
> .p-menuitem
|
|
6029
|
+
> .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus
|
|
6030
|
+
> .p-menuitem-content {
|
|
5493
6031
|
color: #4b5563;
|
|
5494
6032
|
background: #e5e7eb;
|
|
5495
6033
|
}
|
|
5496
|
-
.p-megamenu.p-megamenu-mobile-active
|
|
5497
|
-
|
|
5498
|
-
|
|
5499
|
-
|
|
5500
|
-
|
|
5501
|
-
|
|
5502
|
-
|
|
5503
|
-
|
|
6034
|
+
.p-megamenu.p-megamenu-mobile-active
|
|
6035
|
+
.p-megamenu-root-list
|
|
6036
|
+
> .p-menuitem
|
|
6037
|
+
> .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus
|
|
6038
|
+
> .p-menuitem-content
|
|
6039
|
+
.p-menuitem-link
|
|
6040
|
+
.p-menuitem-text {
|
|
6041
|
+
color: #4b5563;
|
|
6042
|
+
}
|
|
6043
|
+
.p-megamenu.p-megamenu-mobile-active
|
|
6044
|
+
.p-megamenu-root-list
|
|
6045
|
+
> .p-menuitem
|
|
6046
|
+
> .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus
|
|
6047
|
+
> .p-menuitem-content
|
|
6048
|
+
.p-menuitem-link
|
|
6049
|
+
.p-menuitem-icon,
|
|
6050
|
+
.p-megamenu.p-megamenu-mobile-active
|
|
6051
|
+
.p-megamenu-root-list
|
|
6052
|
+
> .p-menuitem
|
|
6053
|
+
> .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus
|
|
6054
|
+
> .p-menuitem-content
|
|
6055
|
+
.p-menuitem-link
|
|
6056
|
+
.p-submenu-icon {
|
|
6057
|
+
color: #4b5563;
|
|
6058
|
+
}
|
|
6059
|
+
.p-megamenu.p-megamenu-mobile-active
|
|
6060
|
+
.p-megamenu-root-list
|
|
6061
|
+
> .p-menuitem
|
|
6062
|
+
> .p-menuitem-link:not(.p-highlight):not(.p-disabled)
|
|
6063
|
+
> .p-menuitem-content:hover {
|
|
5504
6064
|
color: #4b5563;
|
|
5505
6065
|
background: #f3f4f6;
|
|
5506
6066
|
}
|
|
5507
|
-
.p-megamenu.p-megamenu-mobile-active
|
|
5508
|
-
|
|
5509
|
-
|
|
5510
|
-
|
|
5511
|
-
|
|
6067
|
+
.p-megamenu.p-megamenu-mobile-active
|
|
6068
|
+
.p-megamenu-root-list
|
|
6069
|
+
> .p-menuitem
|
|
6070
|
+
> .p-menuitem-link:not(.p-highlight):not(.p-disabled)
|
|
6071
|
+
> .p-menuitem-content:hover
|
|
6072
|
+
.p-menuitem-link
|
|
6073
|
+
.p-menuitem-text {
|
|
6074
|
+
color: #4b5563;
|
|
6075
|
+
}
|
|
6076
|
+
.p-megamenu.p-megamenu-mobile-active
|
|
6077
|
+
.p-megamenu-root-list
|
|
6078
|
+
> .p-menuitem
|
|
6079
|
+
> .p-menuitem-link:not(.p-highlight):not(.p-disabled)
|
|
6080
|
+
> .p-menuitem-content:hover
|
|
6081
|
+
.p-menuitem-link
|
|
6082
|
+
.p-menuitem-icon,
|
|
6083
|
+
.p-megamenu.p-megamenu-mobile-active
|
|
6084
|
+
.p-megamenu-root-list
|
|
6085
|
+
> .p-menuitem
|
|
6086
|
+
> .p-menuitem-link:not(.p-highlight):not(.p-disabled)
|
|
6087
|
+
> .p-menuitem-content:hover
|
|
6088
|
+
.p-menuitem-link
|
|
6089
|
+
.p-submenu-icon {
|
|
5512
6090
|
color: #6b7280;
|
|
5513
6091
|
}
|
|
5514
6092
|
.p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
|
5515
6093
|
margin-left: auto;
|
|
5516
6094
|
}
|
|
5517
|
-
.p-megamenu.p-megamenu-mobile-active
|
|
6095
|
+
.p-megamenu.p-megamenu-mobile-active
|
|
6096
|
+
.p-megamenu-root-list
|
|
6097
|
+
> .p-menuitem.p-menuitem-active
|
|
6098
|
+
> .p-menuitem-link
|
|
6099
|
+
> .p-submenu-icon {
|
|
5518
6100
|
transform: rotate(-180deg);
|
|
5519
6101
|
}
|
|
5520
6102
|
.p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list .p-submenu-list {
|
|
@@ -5527,7 +6109,12 @@
|
|
|
5527
6109
|
transition: transform 0.2s;
|
|
5528
6110
|
transform: rotate(90deg);
|
|
5529
6111
|
}
|
|
5530
|
-
.p-megamenu.p-megamenu-mobile-active
|
|
6112
|
+
.p-megamenu.p-megamenu-mobile-active
|
|
6113
|
+
.p-megamenu-root-list
|
|
6114
|
+
.p-submenu-list
|
|
6115
|
+
.p-menuitem-active
|
|
6116
|
+
> .p-menuitem-link
|
|
6117
|
+
> .p-submenu-icon {
|
|
5531
6118
|
transform: rotate(-90deg);
|
|
5532
6119
|
}
|
|
5533
6120
|
.p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list .p-menuitem {
|
|
@@ -5580,11 +6167,23 @@
|
|
|
5580
6167
|
color: #4b5563;
|
|
5581
6168
|
background: #e5e7eb;
|
|
5582
6169
|
}
|
|
5583
|
-
.p-menu
|
|
6170
|
+
.p-menu
|
|
6171
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled).p-focus
|
|
6172
|
+
> .p-menuitem-content
|
|
6173
|
+
.p-menuitem-link
|
|
6174
|
+
.p-menuitem-text {
|
|
5584
6175
|
color: #4b5563;
|
|
5585
6176
|
}
|
|
5586
|
-
.p-menu
|
|
5587
|
-
|
|
6177
|
+
.p-menu
|
|
6178
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled).p-focus
|
|
6179
|
+
> .p-menuitem-content
|
|
6180
|
+
.p-menuitem-link
|
|
6181
|
+
.p-menuitem-icon,
|
|
6182
|
+
.p-menu
|
|
6183
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled).p-focus
|
|
6184
|
+
> .p-menuitem-content
|
|
6185
|
+
.p-menuitem-link
|
|
6186
|
+
.p-submenu-icon {
|
|
5588
6187
|
color: #4b5563;
|
|
5589
6188
|
}
|
|
5590
6189
|
.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover {
|
|
@@ -5650,11 +6249,26 @@
|
|
|
5650
6249
|
color: #4b5563;
|
|
5651
6250
|
background: #f3f4f6;
|
|
5652
6251
|
}
|
|
5653
|
-
.p-menubar
|
|
5654
|
-
|
|
5655
|
-
|
|
5656
|
-
|
|
5657
|
-
|
|
6252
|
+
.p-menubar
|
|
6253
|
+
.p-menubar-root-list
|
|
6254
|
+
> .p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
6255
|
+
> .p-menuitem-content:hover
|
|
6256
|
+
.p-menuitem-link
|
|
6257
|
+
.p-menuitem-text {
|
|
6258
|
+
color: #4b5563;
|
|
6259
|
+
}
|
|
6260
|
+
.p-menubar
|
|
6261
|
+
.p-menubar-root-list
|
|
6262
|
+
> .p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
6263
|
+
> .p-menuitem-content:hover
|
|
6264
|
+
.p-menuitem-link
|
|
6265
|
+
.p-menuitem-icon,
|
|
6266
|
+
.p-menubar
|
|
6267
|
+
.p-menubar-root-list
|
|
6268
|
+
> .p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
6269
|
+
> .p-menuitem-content:hover
|
|
6270
|
+
.p-menuitem-link
|
|
6271
|
+
.p-submenu-icon {
|
|
5658
6272
|
color: #6b7280;
|
|
5659
6273
|
}
|
|
5660
6274
|
.p-menubar .p-menuitem > .p-menuitem-content {
|
|
@@ -5695,22 +6309,46 @@
|
|
|
5695
6309
|
color: #4b5563;
|
|
5696
6310
|
background: #e5e7eb;
|
|
5697
6311
|
}
|
|
5698
|
-
.p-menubar
|
|
6312
|
+
.p-menubar
|
|
6313
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled).p-focus
|
|
6314
|
+
> .p-menuitem-content
|
|
6315
|
+
.p-menuitem-link
|
|
6316
|
+
.p-menuitem-text {
|
|
5699
6317
|
color: #4b5563;
|
|
5700
6318
|
}
|
|
5701
|
-
.p-menubar
|
|
5702
|
-
|
|
6319
|
+
.p-menubar
|
|
6320
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled).p-focus
|
|
6321
|
+
> .p-menuitem-content
|
|
6322
|
+
.p-menuitem-link
|
|
6323
|
+
.p-menuitem-icon,
|
|
6324
|
+
.p-menubar
|
|
6325
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled).p-focus
|
|
6326
|
+
> .p-menuitem-content
|
|
6327
|
+
.p-menuitem-link
|
|
6328
|
+
.p-submenu-icon {
|
|
5703
6329
|
color: #4b5563;
|
|
5704
6330
|
}
|
|
5705
6331
|
.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover {
|
|
5706
6332
|
color: #4b5563;
|
|
5707
6333
|
background: #f3f4f6;
|
|
5708
6334
|
}
|
|
5709
|
-
.p-menubar
|
|
5710
|
-
|
|
5711
|
-
|
|
5712
|
-
|
|
5713
|
-
|
|
6335
|
+
.p-menubar
|
|
6336
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
6337
|
+
> .p-menuitem-content:hover
|
|
6338
|
+
.p-menuitem-link
|
|
6339
|
+
.p-menuitem-text {
|
|
6340
|
+
color: #4b5563;
|
|
6341
|
+
}
|
|
6342
|
+
.p-menubar
|
|
6343
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
6344
|
+
> .p-menuitem-content:hover
|
|
6345
|
+
.p-menuitem-link
|
|
6346
|
+
.p-menuitem-icon,
|
|
6347
|
+
.p-menubar
|
|
6348
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
6349
|
+
> .p-menuitem-content:hover
|
|
6350
|
+
.p-menuitem-link
|
|
6351
|
+
.p-submenu-icon {
|
|
5714
6352
|
color: #6b7280;
|
|
5715
6353
|
}
|
|
5716
6354
|
.p-menubar .p-submenu-list {
|
|
@@ -5732,7 +6370,10 @@
|
|
|
5732
6370
|
height: 2rem;
|
|
5733
6371
|
color: #6b7280;
|
|
5734
6372
|
border-radius: 50%;
|
|
5735
|
-
transition:
|
|
6373
|
+
transition:
|
|
6374
|
+
background-color 0.2s,
|
|
6375
|
+
color 0.2s,
|
|
6376
|
+
box-shadow 0.2s;
|
|
5736
6377
|
}
|
|
5737
6378
|
.p-menubar.p-menubar-mobile .p-menubar-button:hover {
|
|
5738
6379
|
color: #6b7280;
|
|
@@ -5760,14 +6401,25 @@
|
|
|
5760
6401
|
margin-left: auto;
|
|
5761
6402
|
transition: transform 0.2s;
|
|
5762
6403
|
}
|
|
5763
|
-
.p-menubar.p-menubar-mobile
|
|
6404
|
+
.p-menubar.p-menubar-mobile
|
|
6405
|
+
.p-menubar-root-list
|
|
6406
|
+
.p-menuitem.p-menuitem-active
|
|
6407
|
+
> .p-menuitem-content
|
|
6408
|
+
> .p-menuitem-link
|
|
6409
|
+
> .p-submenu-icon {
|
|
5764
6410
|
transform: rotate(-180deg);
|
|
5765
6411
|
}
|
|
5766
6412
|
.p-menubar.p-menubar-mobile .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
|
5767
6413
|
transition: transform 0.2s;
|
|
5768
6414
|
transform: rotate(90deg);
|
|
5769
6415
|
}
|
|
5770
|
-
.p-menubar.p-menubar-mobile
|
|
6416
|
+
.p-menubar.p-menubar-mobile
|
|
6417
|
+
.p-menubar-root-list
|
|
6418
|
+
.p-submenu-list
|
|
6419
|
+
.p-menuitem-active
|
|
6420
|
+
> .p-menuitem-content
|
|
6421
|
+
> .p-menuitem-link
|
|
6422
|
+
> .p-submenu-icon {
|
|
5771
6423
|
transform: rotate(-90deg);
|
|
5772
6424
|
}
|
|
5773
6425
|
.p-menubar.p-menubar-mobile .p-menubar-root-list ul li a {
|
|
@@ -5795,7 +6447,10 @@
|
|
|
5795
6447
|
height: 2rem;
|
|
5796
6448
|
color: #6b7280;
|
|
5797
6449
|
border-radius: 50%;
|
|
5798
|
-
transition:
|
|
6450
|
+
transition:
|
|
6451
|
+
background-color 0.2s,
|
|
6452
|
+
color 0.2s,
|
|
6453
|
+
box-shadow 0.2s;
|
|
5799
6454
|
}
|
|
5800
6455
|
.p-menubar .p-menubar-button:hover {
|
|
5801
6456
|
color: #6b7280;
|
|
@@ -5840,50 +6495,130 @@
|
|
|
5840
6495
|
padding: 0.75rem 1.25rem;
|
|
5841
6496
|
user-select: none;
|
|
5842
6497
|
}
|
|
5843
|
-
.p-menubar
|
|
6498
|
+
.p-menubar
|
|
6499
|
+
.p-menubar-root-list
|
|
6500
|
+
> .p-menuitem
|
|
6501
|
+
> .p-menuitem-link
|
|
6502
|
+
> .p-menuitem-content
|
|
6503
|
+
.p-menuitem-link
|
|
6504
|
+
.p-menuitem-text {
|
|
5844
6505
|
color: #4b5563;
|
|
5845
6506
|
}
|
|
5846
|
-
.p-menubar
|
|
6507
|
+
.p-menubar
|
|
6508
|
+
.p-menubar-root-list
|
|
6509
|
+
> .p-menuitem
|
|
6510
|
+
> .p-menuitem-link
|
|
6511
|
+
> .p-menuitem-content
|
|
6512
|
+
.p-menuitem-link
|
|
6513
|
+
.p-menuitem-icon {
|
|
5847
6514
|
color: #6b7280;
|
|
5848
6515
|
margin-right: 0.5rem;
|
|
5849
6516
|
}
|
|
5850
|
-
.p-menubar
|
|
6517
|
+
.p-menubar
|
|
6518
|
+
.p-menubar-root-list
|
|
6519
|
+
> .p-menuitem
|
|
6520
|
+
> .p-menuitem-link
|
|
6521
|
+
> .p-menuitem-content
|
|
6522
|
+
.p-menuitem-link
|
|
6523
|
+
.p-submenu-icon {
|
|
5851
6524
|
color: #6b7280;
|
|
5852
6525
|
}
|
|
5853
6526
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link.p-highlight > .p-menuitem-content {
|
|
5854
6527
|
color: #1d4ed8;
|
|
5855
6528
|
background: #eff6ff;
|
|
5856
6529
|
}
|
|
5857
|
-
.p-menubar
|
|
6530
|
+
.p-menubar
|
|
6531
|
+
.p-menubar-root-list
|
|
6532
|
+
> .p-menuitem
|
|
6533
|
+
> .p-menuitem-link.p-highlight
|
|
6534
|
+
> .p-menuitem-content
|
|
6535
|
+
.p-menuitem-link
|
|
6536
|
+
.p-menuitem-text {
|
|
5858
6537
|
color: #1d4ed8;
|
|
5859
6538
|
}
|
|
5860
|
-
.p-menubar
|
|
5861
|
-
|
|
6539
|
+
.p-menubar
|
|
6540
|
+
.p-menubar-root-list
|
|
6541
|
+
> .p-menuitem
|
|
6542
|
+
> .p-menuitem-link.p-highlight
|
|
6543
|
+
> .p-menuitem-content
|
|
6544
|
+
.p-menuitem-link
|
|
6545
|
+
.p-menuitem-icon,
|
|
6546
|
+
.p-menubar
|
|
6547
|
+
.p-menubar-root-list
|
|
6548
|
+
> .p-menuitem
|
|
6549
|
+
> .p-menuitem-link.p-highlight
|
|
6550
|
+
> .p-menuitem-content
|
|
6551
|
+
.p-menuitem-link
|
|
6552
|
+
.p-submenu-icon {
|
|
5862
6553
|
color: #1d4ed8;
|
|
5863
6554
|
}
|
|
5864
6555
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link.p-highlight.p-focus > .p-menuitem-content {
|
|
5865
6556
|
background: rgba(59, 130, 246, 0.24);
|
|
5866
6557
|
}
|
|
5867
|
-
.p-menubar
|
|
6558
|
+
.p-menubar
|
|
6559
|
+
.p-menubar-root-list
|
|
6560
|
+
> .p-menuitem
|
|
6561
|
+
> .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus
|
|
6562
|
+
> .p-menuitem-content {
|
|
5868
6563
|
color: #4b5563;
|
|
5869
6564
|
background: #e5e7eb;
|
|
5870
6565
|
}
|
|
5871
|
-
.p-menubar
|
|
6566
|
+
.p-menubar
|
|
6567
|
+
.p-menubar-root-list
|
|
6568
|
+
> .p-menuitem
|
|
6569
|
+
> .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus
|
|
6570
|
+
> .p-menuitem-content
|
|
6571
|
+
.p-menuitem-link
|
|
6572
|
+
.p-menuitem-text {
|
|
5872
6573
|
color: #4b5563;
|
|
5873
6574
|
}
|
|
5874
|
-
.p-menubar
|
|
5875
|
-
|
|
6575
|
+
.p-menubar
|
|
6576
|
+
.p-menubar-root-list
|
|
6577
|
+
> .p-menuitem
|
|
6578
|
+
> .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus
|
|
6579
|
+
> .p-menuitem-content
|
|
6580
|
+
.p-menuitem-link
|
|
6581
|
+
.p-menuitem-icon,
|
|
6582
|
+
.p-menubar
|
|
6583
|
+
.p-menubar-root-list
|
|
6584
|
+
> .p-menuitem
|
|
6585
|
+
> .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus
|
|
6586
|
+
> .p-menuitem-content
|
|
6587
|
+
.p-menuitem-link
|
|
6588
|
+
.p-submenu-icon {
|
|
5876
6589
|
color: #4b5563;
|
|
5877
6590
|
}
|
|
5878
|
-
.p-menubar
|
|
6591
|
+
.p-menubar
|
|
6592
|
+
.p-menubar-root-list
|
|
6593
|
+
> .p-menuitem
|
|
6594
|
+
> .p-menuitem-link:not(.p-highlight):not(.p-disabled)
|
|
6595
|
+
> .p-menuitem-content:hover {
|
|
5879
6596
|
color: #4b5563;
|
|
5880
6597
|
background: #f3f4f6;
|
|
5881
6598
|
}
|
|
5882
|
-
.p-menubar
|
|
6599
|
+
.p-menubar
|
|
6600
|
+
.p-menubar-root-list
|
|
6601
|
+
> .p-menuitem
|
|
6602
|
+
> .p-menuitem-link:not(.p-highlight):not(.p-disabled)
|
|
6603
|
+
> .p-menuitem-content:hover
|
|
6604
|
+
.p-menuitem-link
|
|
6605
|
+
.p-menuitem-text {
|
|
5883
6606
|
color: #4b5563;
|
|
5884
6607
|
}
|
|
5885
|
-
.p-menubar
|
|
5886
|
-
|
|
6608
|
+
.p-menubar
|
|
6609
|
+
.p-menubar-root-list
|
|
6610
|
+
> .p-menuitem
|
|
6611
|
+
> .p-menuitem-link:not(.p-highlight):not(.p-disabled)
|
|
6612
|
+
> .p-menuitem-content:hover
|
|
6613
|
+
.p-menuitem-link
|
|
6614
|
+
.p-menuitem-icon,
|
|
6615
|
+
.p-menubar
|
|
6616
|
+
.p-menubar-root-list
|
|
6617
|
+
> .p-menuitem
|
|
6618
|
+
> .p-menuitem-link:not(.p-highlight):not(.p-disabled)
|
|
6619
|
+
> .p-menuitem-content:hover
|
|
6620
|
+
.p-menuitem-link
|
|
6621
|
+
.p-submenu-icon {
|
|
5887
6622
|
color: #6b7280;
|
|
5888
6623
|
}
|
|
5889
6624
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
|
@@ -6029,22 +6764,52 @@
|
|
|
6029
6764
|
color: #4b5563;
|
|
6030
6765
|
background: #e5e7eb;
|
|
6031
6766
|
}
|
|
6032
|
-
.p-panelmenu
|
|
6767
|
+
.p-panelmenu
|
|
6768
|
+
.p-panelmenu-content
|
|
6769
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled).p-focus
|
|
6770
|
+
> .p-menuitem-content
|
|
6771
|
+
.p-menuitem-link
|
|
6772
|
+
.p-menuitem-text {
|
|
6033
6773
|
color: #4b5563;
|
|
6034
6774
|
}
|
|
6035
|
-
.p-panelmenu
|
|
6036
|
-
|
|
6775
|
+
.p-panelmenu
|
|
6776
|
+
.p-panelmenu-content
|
|
6777
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled).p-focus
|
|
6778
|
+
> .p-menuitem-content
|
|
6779
|
+
.p-menuitem-link
|
|
6780
|
+
.p-menuitem-icon,
|
|
6781
|
+
.p-panelmenu
|
|
6782
|
+
.p-panelmenu-content
|
|
6783
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled).p-focus
|
|
6784
|
+
> .p-menuitem-content
|
|
6785
|
+
.p-menuitem-link
|
|
6786
|
+
.p-submenu-icon {
|
|
6037
6787
|
color: #4b5563;
|
|
6038
6788
|
}
|
|
6039
6789
|
.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover {
|
|
6040
6790
|
color: #4b5563;
|
|
6041
6791
|
background: #f3f4f6;
|
|
6042
6792
|
}
|
|
6043
|
-
.p-panelmenu
|
|
6044
|
-
|
|
6045
|
-
|
|
6046
|
-
|
|
6047
|
-
|
|
6793
|
+
.p-panelmenu
|
|
6794
|
+
.p-panelmenu-content
|
|
6795
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
6796
|
+
> .p-menuitem-content:hover
|
|
6797
|
+
.p-menuitem-link
|
|
6798
|
+
.p-menuitem-text {
|
|
6799
|
+
color: #4b5563;
|
|
6800
|
+
}
|
|
6801
|
+
.p-panelmenu
|
|
6802
|
+
.p-panelmenu-content
|
|
6803
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
6804
|
+
> .p-menuitem-content:hover
|
|
6805
|
+
.p-menuitem-link
|
|
6806
|
+
.p-menuitem-icon,
|
|
6807
|
+
.p-panelmenu
|
|
6808
|
+
.p-panelmenu-content
|
|
6809
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
6810
|
+
> .p-menuitem-content:hover
|
|
6811
|
+
.p-menuitem-link
|
|
6812
|
+
.p-submenu-icon {
|
|
6048
6813
|
color: #6b7280;
|
|
6049
6814
|
}
|
|
6050
6815
|
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon {
|
|
@@ -6106,22 +6871,46 @@
|
|
|
6106
6871
|
color: #4b5563;
|
|
6107
6872
|
background: #e5e7eb;
|
|
6108
6873
|
}
|
|
6109
|
-
.p-slidemenu
|
|
6874
|
+
.p-slidemenu
|
|
6875
|
+
.p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus
|
|
6876
|
+
> .p-menuitem-content
|
|
6877
|
+
.p-menuitem-link
|
|
6878
|
+
.p-menuitem-text {
|
|
6110
6879
|
color: #4b5563;
|
|
6111
6880
|
}
|
|
6112
|
-
.p-slidemenu
|
|
6113
|
-
|
|
6881
|
+
.p-slidemenu
|
|
6882
|
+
.p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus
|
|
6883
|
+
> .p-menuitem-content
|
|
6884
|
+
.p-menuitem-link
|
|
6885
|
+
.p-menuitem-icon,
|
|
6886
|
+
.p-slidemenu
|
|
6887
|
+
.p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus
|
|
6888
|
+
> .p-menuitem-content
|
|
6889
|
+
.p-menuitem-link
|
|
6890
|
+
.p-submenu-icon {
|
|
6114
6891
|
color: #4b5563;
|
|
6115
6892
|
}
|
|
6116
6893
|
.p-slidemenu .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover {
|
|
6117
6894
|
color: #4b5563;
|
|
6118
6895
|
background: #f3f4f6;
|
|
6119
6896
|
}
|
|
6120
|
-
.p-slidemenu
|
|
6121
|
-
|
|
6122
|
-
|
|
6123
|
-
|
|
6124
|
-
|
|
6897
|
+
.p-slidemenu
|
|
6898
|
+
.p-menuitem-link:not(.p-highlight):not(.p-disabled)
|
|
6899
|
+
> .p-menuitem-content:hover
|
|
6900
|
+
.p-menuitem-link
|
|
6901
|
+
.p-menuitem-text {
|
|
6902
|
+
color: #4b5563;
|
|
6903
|
+
}
|
|
6904
|
+
.p-slidemenu
|
|
6905
|
+
.p-menuitem-link:not(.p-highlight):not(.p-disabled)
|
|
6906
|
+
> .p-menuitem-content:hover
|
|
6907
|
+
.p-menuitem-link
|
|
6908
|
+
.p-menuitem-icon,
|
|
6909
|
+
.p-slidemenu
|
|
6910
|
+
.p-menuitem-link:not(.p-highlight):not(.p-disabled)
|
|
6911
|
+
> .p-menuitem-content:hover
|
|
6912
|
+
.p-menuitem-link
|
|
6913
|
+
.p-submenu-icon {
|
|
6125
6914
|
color: #6b7280;
|
|
6126
6915
|
}
|
|
6127
6916
|
.p-slidemenu.p-slidemenu-overlay {
|
|
@@ -6141,7 +6930,8 @@
|
|
|
6141
6930
|
.p-slidemenu .p-slidemenu.p-slidemenu-active > .p-slidemenu-link .p-slidemenu-text {
|
|
6142
6931
|
color: #1d4ed8;
|
|
6143
6932
|
}
|
|
6144
|
-
.p-slidemenu .p-slidemenu.p-slidemenu-active > .p-slidemenu-link .p-slidemenu-icon,
|
|
6933
|
+
.p-slidemenu .p-slidemenu.p-slidemenu-active > .p-slidemenu-link .p-slidemenu-icon,
|
|
6934
|
+
.p-slidemenu .p-slidemenu.p-slidemenu-active > .p-slidemenu-link .p-slidemenu-icon {
|
|
6145
6935
|
color: #1d4ed8;
|
|
6146
6936
|
}
|
|
6147
6937
|
.p-slidemenu .p-slidemenu-separator {
|
|
@@ -6194,7 +6984,7 @@
|
|
|
6194
6984
|
color: #4b5563;
|
|
6195
6985
|
}
|
|
6196
6986
|
.p-steps .p-steps-item:before {
|
|
6197
|
-
content:
|
|
6987
|
+
content: ' ';
|
|
6198
6988
|
border-top: 1px solid #e5e7eb;
|
|
6199
6989
|
width: 100%;
|
|
6200
6990
|
top: 50%;
|
|
@@ -6303,22 +7093,46 @@
|
|
|
6303
7093
|
color: #4b5563;
|
|
6304
7094
|
background: #e5e7eb;
|
|
6305
7095
|
}
|
|
6306
|
-
.p-tieredmenu
|
|
7096
|
+
.p-tieredmenu
|
|
7097
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled).p-focus
|
|
7098
|
+
> .p-menuitem-content
|
|
7099
|
+
.p-menuitem-link
|
|
7100
|
+
.p-menuitem-text {
|
|
6307
7101
|
color: #4b5563;
|
|
6308
7102
|
}
|
|
6309
|
-
.p-tieredmenu
|
|
6310
|
-
|
|
7103
|
+
.p-tieredmenu
|
|
7104
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled).p-focus
|
|
7105
|
+
> .p-menuitem-content
|
|
7106
|
+
.p-menuitem-link
|
|
7107
|
+
.p-menuitem-icon,
|
|
7108
|
+
.p-tieredmenu
|
|
7109
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled).p-focus
|
|
7110
|
+
> .p-menuitem-content
|
|
7111
|
+
.p-menuitem-link
|
|
7112
|
+
.p-submenu-icon {
|
|
6311
7113
|
color: #4b5563;
|
|
6312
7114
|
}
|
|
6313
7115
|
.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover {
|
|
6314
7116
|
color: #4b5563;
|
|
6315
7117
|
background: #f3f4f6;
|
|
6316
7118
|
}
|
|
6317
|
-
.p-tieredmenu
|
|
6318
|
-
|
|
6319
|
-
|
|
6320
|
-
|
|
6321
|
-
|
|
7119
|
+
.p-tieredmenu
|
|
7120
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
7121
|
+
> .p-menuitem-content:hover
|
|
7122
|
+
.p-menuitem-link
|
|
7123
|
+
.p-menuitem-text {
|
|
7124
|
+
color: #4b5563;
|
|
7125
|
+
}
|
|
7126
|
+
.p-tieredmenu
|
|
7127
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
7128
|
+
> .p-menuitem-content:hover
|
|
7129
|
+
.p-menuitem-link
|
|
7130
|
+
.p-menuitem-icon,
|
|
7131
|
+
.p-tieredmenu
|
|
7132
|
+
.p-menuitem:not(.p-highlight):not(.p-disabled)
|
|
7133
|
+
> .p-menuitem-content:hover
|
|
7134
|
+
.p-menuitem-link
|
|
7135
|
+
.p-submenu-icon {
|
|
6322
7136
|
color: #6b7280;
|
|
6323
7137
|
}
|
|
6324
7138
|
.p-tieredmenu .p-menuitem-separator {
|
|
@@ -6399,7 +7213,10 @@
|
|
|
6399
7213
|
height: 2rem;
|
|
6400
7214
|
border-radius: 50%;
|
|
6401
7215
|
background: transparent;
|
|
6402
|
-
transition:
|
|
7216
|
+
transition:
|
|
7217
|
+
background-color 0.2s,
|
|
7218
|
+
color 0.2s,
|
|
7219
|
+
box-shadow 0.2s;
|
|
6403
7220
|
}
|
|
6404
7221
|
.p-message .p-message-close:hover {
|
|
6405
7222
|
background: rgba(255, 255, 255, 0.5);
|
|
@@ -6507,7 +7324,10 @@
|
|
|
6507
7324
|
height: 2rem;
|
|
6508
7325
|
border-radius: 50%;
|
|
6509
7326
|
background: transparent;
|
|
6510
|
-
transition:
|
|
7327
|
+
transition:
|
|
7328
|
+
background-color 0.2s,
|
|
7329
|
+
color 0.2s,
|
|
7330
|
+
box-shadow 0.2s;
|
|
6511
7331
|
}
|
|
6512
7332
|
.p-toast .p-toast-message .p-toast-icon-close:hover {
|
|
6513
7333
|
background: rgba(255, 255, 255, 0.5);
|
|
@@ -6563,7 +7383,10 @@
|
|
|
6563
7383
|
color: #f9fafb;
|
|
6564
7384
|
width: 4rem;
|
|
6565
7385
|
height: 4rem;
|
|
6566
|
-
transition:
|
|
7386
|
+
transition:
|
|
7387
|
+
background-color 0.2s,
|
|
7388
|
+
color 0.2s,
|
|
7389
|
+
box-shadow 0.2s;
|
|
6567
7390
|
border-radius: 50%;
|
|
6568
7391
|
}
|
|
6569
7392
|
.p-galleria .p-galleria-close .p-galleria-close-icon {
|
|
@@ -6582,7 +7405,10 @@
|
|
|
6582
7405
|
color: #f9fafb;
|
|
6583
7406
|
width: 4rem;
|
|
6584
7407
|
height: 4rem;
|
|
6585
|
-
transition:
|
|
7408
|
+
transition:
|
|
7409
|
+
background-color 0.2s,
|
|
7410
|
+
color 0.2s,
|
|
7411
|
+
box-shadow 0.2s;
|
|
6586
7412
|
border-radius: 6px;
|
|
6587
7413
|
margin: 0 0.5rem;
|
|
6588
7414
|
}
|
|
@@ -6611,7 +7437,10 @@
|
|
|
6611
7437
|
background-color: #d1d5db;
|
|
6612
7438
|
width: 1rem;
|
|
6613
7439
|
height: 1rem;
|
|
6614
|
-
transition:
|
|
7440
|
+
transition:
|
|
7441
|
+
background-color 0.2s,
|
|
7442
|
+
color 0.2s,
|
|
7443
|
+
box-shadow 0.2s;
|
|
6615
7444
|
border-radius: 50%;
|
|
6616
7445
|
}
|
|
6617
7446
|
.p-galleria .p-galleria-indicators .p-galleria-indicator button:hover {
|
|
@@ -6621,10 +7450,12 @@
|
|
|
6621
7450
|
background: #eff6ff;
|
|
6622
7451
|
color: #1d4ed8;
|
|
6623
7452
|
}
|
|
6624
|
-
.p-galleria.p-galleria-indicators-bottom .p-galleria-indicator,
|
|
7453
|
+
.p-galleria.p-galleria-indicators-bottom .p-galleria-indicator,
|
|
7454
|
+
.p-galleria.p-galleria-indicators-top .p-galleria-indicator {
|
|
6625
7455
|
margin-right: 0.5rem;
|
|
6626
7456
|
}
|
|
6627
|
-
.p-galleria.p-galleria-indicators-left .p-galleria-indicator,
|
|
7457
|
+
.p-galleria.p-galleria-indicators-left .p-galleria-indicator,
|
|
7458
|
+
.p-galleria.p-galleria-indicators-right .p-galleria-indicator {
|
|
6628
7459
|
margin-bottom: 0.5rem;
|
|
6629
7460
|
}
|
|
6630
7461
|
.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators {
|
|
@@ -6651,7 +7482,10 @@
|
|
|
6651
7482
|
color: #f9fafb;
|
|
6652
7483
|
width: 2rem;
|
|
6653
7484
|
height: 2rem;
|
|
6654
|
-
transition:
|
|
7485
|
+
transition:
|
|
7486
|
+
background-color 0.2s,
|
|
7487
|
+
color 0.2s,
|
|
7488
|
+
box-shadow 0.2s;
|
|
6655
7489
|
border-radius: 50%;
|
|
6656
7490
|
}
|
|
6657
7491
|
.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover,
|
|
@@ -6676,7 +7510,10 @@
|
|
|
6676
7510
|
.p-image-preview-indicator {
|
|
6677
7511
|
background-color: transparent;
|
|
6678
7512
|
color: #f8f9fa;
|
|
6679
|
-
transition:
|
|
7513
|
+
transition:
|
|
7514
|
+
background-color 0.2s,
|
|
7515
|
+
color 0.2s,
|
|
7516
|
+
box-shadow 0.2s;
|
|
6680
7517
|
}
|
|
6681
7518
|
.p-image-preview-indicator .p-icon {
|
|
6682
7519
|
width: 1.5rem;
|
|
@@ -6694,7 +7531,10 @@
|
|
|
6694
7531
|
width: 3rem;
|
|
6695
7532
|
height: 3rem;
|
|
6696
7533
|
border-radius: 50%;
|
|
6697
|
-
transition:
|
|
7534
|
+
transition:
|
|
7535
|
+
background-color 0.2s,
|
|
7536
|
+
color 0.2s,
|
|
7537
|
+
box-shadow 0.2s;
|
|
6698
7538
|
margin-right: 0.5rem;
|
|
6699
7539
|
}
|
|
6700
7540
|
.p-image-action.p-link:last-child {
|
|
@@ -6759,7 +7599,10 @@
|
|
|
6759
7599
|
}
|
|
6760
7600
|
.p-chip .p-chip-remove-icon {
|
|
6761
7601
|
border-radius: 6px;
|
|
6762
|
-
transition:
|
|
7602
|
+
transition:
|
|
7603
|
+
background-color 0.2s,
|
|
7604
|
+
color 0.2s,
|
|
7605
|
+
box-shadow 0.2s;
|
|
6763
7606
|
margin-left: 0.5rem;
|
|
6764
7607
|
}
|
|
6765
7608
|
.p-chip .p-chip-remove-icon:focus-visible {
|
|
@@ -6775,7 +7618,10 @@
|
|
|
6775
7618
|
height: 3rem;
|
|
6776
7619
|
border-radius: 50%;
|
|
6777
7620
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
6778
|
-
transition:
|
|
7621
|
+
transition:
|
|
7622
|
+
background-color 0.2s,
|
|
7623
|
+
color 0.2s,
|
|
7624
|
+
box-shadow 0.2s;
|
|
6779
7625
|
}
|
|
6780
7626
|
.p-scrolltop.p-link {
|
|
6781
7627
|
background: rgba(0, 0, 0, 0.7);
|
|
@@ -6833,7 +7679,11 @@
|
|
|
6833
7679
|
.p-inplace .p-inplace-display {
|
|
6834
7680
|
padding: 0.75rem 0.75rem;
|
|
6835
7681
|
border-radius: 6px;
|
|
6836
|
-
transition:
|
|
7682
|
+
transition:
|
|
7683
|
+
background-color 0.2s,
|
|
7684
|
+
color 0.2s,
|
|
7685
|
+
border-color 0.2s,
|
|
7686
|
+
box-shadow 0.2s;
|
|
6837
7687
|
}
|
|
6838
7688
|
.p-inplace .p-inplace-display:not(.p-disabled):hover {
|
|
6839
7689
|
background: #f3f4f6;
|
|
@@ -7000,16 +7850,28 @@
|
|
|
7000
7850
|
}
|
|
7001
7851
|
.p-selectbutton > .p-button,
|
|
7002
7852
|
.p-togglebutton.p-button {
|
|
7003
|
-
transition:
|
|
7853
|
+
transition:
|
|
7854
|
+
background-color 0.2s,
|
|
7855
|
+
border-color 0.2s,
|
|
7856
|
+
box-shadow 0.2s;
|
|
7004
7857
|
}
|
|
7005
7858
|
.p-accordion .p-accordion-header .p-accordion-header-link {
|
|
7006
|
-
transition:
|
|
7859
|
+
transition:
|
|
7860
|
+
background-color 0.2s,
|
|
7861
|
+
border-color 0.2s,
|
|
7862
|
+
box-shadow 0.2s;
|
|
7007
7863
|
}
|
|
7008
7864
|
.p-tabview .p-tabview-nav li .p-tabview-nav-link {
|
|
7009
|
-
transition:
|
|
7865
|
+
transition:
|
|
7866
|
+
background-color 0.2s,
|
|
7867
|
+
border-color 0.2s,
|
|
7868
|
+
box-shadow 0.2s;
|
|
7010
7869
|
}
|
|
7011
7870
|
.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link {
|
|
7012
|
-
transition:
|
|
7871
|
+
transition:
|
|
7872
|
+
background-color 0.2s,
|
|
7873
|
+
border-color 0.2s,
|
|
7874
|
+
box-shadow 0.2s;
|
|
7013
7875
|
}
|
|
7014
7876
|
.p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button {
|
|
7015
7877
|
background-color: #3b82f6;
|
|
@@ -7018,25 +7880,46 @@
|
|
|
7018
7880
|
background-color: #3b82f6;
|
|
7019
7881
|
}
|
|
7020
7882
|
.p-button:focus {
|
|
7021
|
-
box-shadow:
|
|
7883
|
+
box-shadow:
|
|
7884
|
+
0 0 0 2px #ffffff,
|
|
7885
|
+
0 0 0 4px #9dc1fb,
|
|
7886
|
+
0 1px 2px 0 rgb(0, 0, 0);
|
|
7022
7887
|
}
|
|
7023
7888
|
.p-button.p-button-secondary:enabled:focus {
|
|
7024
|
-
box-shadow:
|
|
7889
|
+
box-shadow:
|
|
7890
|
+
0 0 0 2px #ffffff,
|
|
7891
|
+
0 0 0 4px #b0b9c6,
|
|
7892
|
+
0 1px 2px 0 rgb(0, 0, 0);
|
|
7025
7893
|
}
|
|
7026
7894
|
.p-button.p-button-success:enabled:focus {
|
|
7027
|
-
box-shadow:
|
|
7895
|
+
box-shadow:
|
|
7896
|
+
0 0 0 2px #ffffff,
|
|
7897
|
+
0 0 0 4px #88eaac,
|
|
7898
|
+
0 1px 2px 0 rgb(0, 0, 0);
|
|
7028
7899
|
}
|
|
7029
7900
|
.p-button.p-button-info:enabled:focus {
|
|
7030
|
-
box-shadow:
|
|
7901
|
+
box-shadow:
|
|
7902
|
+
0 0 0 2px #ffffff,
|
|
7903
|
+
0 0 0 4px #83d3f8,
|
|
7904
|
+
0 1px 2px 0 rgb(0, 0, 0);
|
|
7031
7905
|
}
|
|
7032
7906
|
.p-button.p-button-warning:enabled:focus {
|
|
7033
|
-
box-shadow:
|
|
7907
|
+
box-shadow:
|
|
7908
|
+
0 0 0 2px #ffffff,
|
|
7909
|
+
0 0 0 4px #fcb98b,
|
|
7910
|
+
0 1px 2px 0 rgb(0, 0, 0);
|
|
7034
7911
|
}
|
|
7035
7912
|
.p-button.p-button-help:enabled:focus {
|
|
7036
|
-
box-shadow:
|
|
7913
|
+
box-shadow:
|
|
7914
|
+
0 0 0 2px #ffffff,
|
|
7915
|
+
0 0 0 4px #d4aafb,
|
|
7916
|
+
0 1px 2px 0 rgb(0, 0, 0);
|
|
7037
7917
|
}
|
|
7038
7918
|
.p-button.p-button-danger:enabled:focus {
|
|
7039
|
-
box-shadow:
|
|
7919
|
+
box-shadow:
|
|
7920
|
+
0 0 0 2px #ffffff,
|
|
7921
|
+
0 0 0 4px #f7a2a2,
|
|
7922
|
+
0 1px 2px 0 rgb(0, 0, 0);
|
|
7040
7923
|
}
|
|
7041
7924
|
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
|
|
7042
7925
|
box-shadow: inset 0 2px 0 0 #3b82f6;
|
|
@@ -7045,7 +7928,10 @@
|
|
|
7045
7928
|
box-shadow: inset 0 -2px 0 0 #3b82f6;
|
|
7046
7929
|
}
|
|
7047
7930
|
.p-speeddial-item.p-focus > .p-speeddial-action {
|
|
7048
|
-
box-shadow:
|
|
7931
|
+
box-shadow:
|
|
7932
|
+
0 0 0 2px #ffffff,
|
|
7933
|
+
0 0 0 4px #9dc1fb,
|
|
7934
|
+
0 1px 2px 0 rgb(0, 0, 0);
|
|
7049
7935
|
}
|
|
7050
7936
|
.p-toast-message {
|
|
7051
7937
|
backdrop-filter: blur(10px);
|
|
@@ -7055,7 +7941,12 @@
|
|
|
7055
7941
|
}
|
|
7056
7942
|
.p-picklist-buttons .p-button,
|
|
7057
7943
|
.p-orderlist-controls .p-button {
|
|
7058
|
-
transition:
|
|
7944
|
+
transition:
|
|
7945
|
+
opacity 0.2s,
|
|
7946
|
+
background-color 0.2s,
|
|
7947
|
+
color 0.2s,
|
|
7948
|
+
border-color 0.2s,
|
|
7949
|
+
box-shadow 0.2s;
|
|
7059
7950
|
}
|
|
7060
7951
|
.p-steps .p-steps-item.p-highlight .p-steps-number {
|
|
7061
7952
|
background: #3b82f6;
|