@alpaca-headless/alpaca-headless-nextjs 1.0.27 → 1.0.129
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/cjs/client-components/ClientLink.js +36 -0
- package/dist/cjs/client-components/MultiComponentEditor.js +26 -0
- package/dist/cjs/client-components/index.js +19 -0
- package/dist/cjs/components/Link.js +1 -1
- package/dist/cjs/components/LinkEditor.js +47 -1
- package/dist/cjs/components/Picture.js +14 -12
- package/dist/cjs/components/PictureEditor.js +20 -39
- package/dist/cjs/components/Placeholder.js +51 -9
- package/dist/cjs/components/RichText.js +1 -1
- package/dist/cjs/components/RichTextEditor.js +17 -2
- package/dist/cjs/components/TextEditor.js +15 -3
- package/dist/cjs/components/Translate.js +1 -1
- package/dist/cjs/{editor → components}/TranslateEditor.js +5 -2
- package/dist/cjs/editor/AiPopup.js +33 -0
- package/dist/cjs/editor/AiTerminal.js +42 -18
- package/dist/cjs/editor/ComponentInfo.js +4 -3
- package/dist/cjs/editor/ComponentPalette.js +12 -68
- package/dist/cjs/editor/ComponentTree.js +76 -59
- package/dist/cjs/editor/ConfirmationDialog.js +31 -0
- package/dist/cjs/editor/ContentTree.js +144 -49
- package/dist/cjs/editor/Debug.js +12 -2
- package/dist/cjs/editor/DialogButtons.js +7 -0
- package/dist/cjs/editor/DictionaryEditor.js +14 -8
- package/dist/cjs/editor/EditFrame.js +88 -20
- package/dist/cjs/editor/EditHistory.js +17 -4
- package/dist/cjs/editor/Editor.js +1 -1
- package/dist/cjs/editor/EditorClient.js +506 -237
- package/dist/cjs/editor/EditorClientHost.js +2 -2
- package/dist/cjs/editor/FieldList.js +30 -43
- package/dist/cjs/editor/FieldListField.js +75 -0
- package/dist/cjs/editor/FloatingToolbar.js +92 -0
- package/dist/cjs/editor/GraphQL.js +4 -6
- package/dist/cjs/editor/ItemEditor.js +9 -0
- package/dist/cjs/editor/ItemInfo.js +17 -0
- package/dist/cjs/editor/ItemNameDialog.js +37 -0
- package/dist/cjs/editor/LanguageSelector.js +1 -1
- package/dist/cjs/editor/LinkEditorDialog.js +67 -0
- package/dist/cjs/editor/MainLayout.js +24 -0
- package/dist/cjs/editor/MediaSelector.js +35 -10
- package/dist/cjs/editor/PictureEditorDialog.js +93 -0
- package/dist/cjs/editor/PlaceholderDropZone.js +48 -9
- package/dist/cjs/editor/SidebarTabs.js +47 -0
- package/dist/cjs/editor/Terminal.js +21 -11
- package/dist/cjs/editor/Utils.js +43 -0
- package/dist/cjs/editor/VersionSelector.js +1 -1
- package/dist/cjs/editor/Workbox.js +41 -0
- package/dist/cjs/editor/componentCommands.js +141 -0
- package/dist/cjs/editor/contentService.js +45 -3
- package/dist/cjs/editor/editContext.js +9 -4
- package/dist/cjs/editor/editService.js +187 -3
- package/dist/cjs/editor/fieldTypes/CheckboxEditor.js +21 -0
- package/dist/cjs/editor/fieldTypes/InternalLinkFieldEditor.js +46 -0
- package/dist/cjs/editor/fieldTypes/LinkFieldEditor.js +55 -0
- package/dist/cjs/editor/fieldTypes/MultiLineText.js +25 -0
- package/dist/cjs/editor/fieldTypes/PictureFieldEditor.js +19 -0
- package/dist/cjs/editor/fieldTypes/RichTextEditor.js +9 -4
- package/dist/cjs/editor/fieldTypes/SingleLineText.js +12 -4
- package/dist/cjs/editor/fieldTypes/TreeListEditor.js +59 -0
- package/dist/cjs/editor/ui/Section.js +8 -0
- package/dist/cjs/loadRouteData.js +24 -14
- package/dist/cjs/middleware/authorization.js +52 -0
- package/dist/cjs/middleware/index.js +17 -0
- package/dist/editor.css +530 -72
- package/dist/primereact/resources/themes/arya-blue/theme.css +103 -91
- package/dist/primereact/resources/themes/arya-green/theme.css +103 -91
- package/dist/primereact/resources/themes/arya-orange/theme.css +103 -91
- package/dist/primereact/resources/themes/arya-purple/theme.css +103 -91
- package/dist/primereact/resources/themes/bootstrap4-dark-blue/theme.css +103 -91
- package/dist/primereact/resources/themes/bootstrap4-dark-purple/theme.css +103 -91
- package/dist/primereact/resources/themes/bootstrap4-light-blue/theme.css +102 -90
- package/dist/primereact/resources/themes/bootstrap4-light-purple/theme.css +102 -90
- package/dist/primereact/resources/themes/fluent-light/theme.css +103 -91
- package/dist/primereact/resources/themes/lara-dark-amber/fonts/Inter-italic.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-dark-amber/fonts/Inter-roman.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-dark-amber/theme.css +6049 -0
- package/dist/primereact/resources/themes/lara-dark-blue/theme.css +1006 -955
- package/dist/primereact/resources/themes/lara-dark-cyan/fonts/Inter-italic.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-dark-cyan/fonts/Inter-roman.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-dark-cyan/theme.css +6049 -0
- package/dist/primereact/resources/themes/lara-dark-green/fonts/Inter-italic.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-dark-green/fonts/Inter-roman.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-dark-green/theme.css +6049 -0
- package/dist/primereact/resources/themes/lara-dark-indigo/theme.css +1006 -955
- package/dist/primereact/resources/themes/lara-dark-pink/fonts/Inter-italic.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-dark-pink/fonts/Inter-roman.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-dark-pink/theme.css +6049 -0
- package/dist/primereact/resources/themes/lara-dark-purple/theme.css +1006 -955
- package/dist/primereact/resources/themes/lara-dark-teal/theme.css +1006 -955
- package/dist/primereact/resources/themes/lara-light-amber/fonts/Inter-italic.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-light-amber/fonts/Inter-roman.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-light-amber/theme.css +6041 -0
- package/dist/primereact/resources/themes/lara-light-blue/theme.css +842 -799
- package/dist/primereact/resources/themes/lara-light-cyan/fonts/Inter-italic.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-light-cyan/fonts/Inter-roman.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-light-cyan/theme.css +6041 -0
- package/dist/primereact/resources/themes/lara-light-green/fonts/Inter-italic.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-light-green/fonts/Inter-roman.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-light-green/theme.css +6041 -0
- package/dist/primereact/resources/themes/lara-light-indigo/theme.css +842 -799
- package/dist/primereact/resources/themes/lara-light-pink/fonts/Inter-italic.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-light-pink/fonts/Inter-roman.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-light-pink/theme.css +6041 -0
- package/dist/primereact/resources/themes/lara-light-purple/theme.css +842 -799
- package/dist/primereact/resources/themes/lara-light-teal/theme.css +1115 -1072
- package/dist/primereact/resources/themes/luna-amber/theme.css +103 -91
- package/dist/primereact/resources/themes/luna-blue/theme.css +103 -91
- package/dist/primereact/resources/themes/luna-green/theme.css +103 -91
- package/dist/primereact/resources/themes/luna-pink/theme.css +103 -91
- package/dist/primereact/resources/themes/md-dark-deeppurple/theme.css +147 -135
- package/dist/primereact/resources/themes/md-dark-indigo/theme.css +147 -135
- package/dist/primereact/resources/themes/md-light-deeppurple/theme.css +147 -135
- package/dist/primereact/resources/themes/md-light-indigo/theme.css +147 -135
- package/dist/primereact/resources/themes/mdc-dark-deeppurple/theme.css +147 -135
- package/dist/primereact/resources/themes/mdc-dark-indigo/theme.css +147 -135
- package/dist/primereact/resources/themes/mdc-light-deeppurple/theme.css +147 -135
- package/dist/primereact/resources/themes/mdc-light-indigo/theme.css +147 -135
- package/dist/primereact/resources/themes/mira/theme.css +108 -91
- package/dist/primereact/resources/themes/nano/theme.css +107 -91
- package/dist/primereact/resources/themes/nova/theme.css +103 -91
- package/dist/primereact/resources/themes/nova-accent/theme.css +103 -91
- package/dist/primereact/resources/themes/nova-alt/theme.css +103 -91
- package/dist/primereact/resources/themes/rhea/theme.css +103 -91
- package/dist/primereact/resources/themes/saga-blue/theme.css +103 -91
- package/dist/primereact/resources/themes/saga-green/theme.css +103 -91
- package/dist/primereact/resources/themes/saga-orange/theme.css +103 -91
- package/dist/primereact/resources/themes/saga-purple/theme.css +103 -91
- package/dist/primereact/resources/themes/soho-dark/theme.css +108 -91
- package/dist/primereact/resources/themes/soho-light/theme.css +108 -91
- package/dist/primereact/resources/themes/vela-blue/theme.css +103 -91
- package/dist/primereact/resources/themes/vela-green/theme.css +103 -91
- package/dist/primereact/resources/themes/vela-orange/theme.css +103 -91
- package/dist/primereact/resources/themes/vela-purple/theme.css +103 -91
- package/dist/primereact/resources/themes/viva-dark/theme.css +103 -91
- package/dist/primereact/resources/themes/viva-light/theme.css +103 -91
- package/package.json +29 -16
- package/tailwind.config.js +9 -2
- package/types/client-components/ClientLink.d.ts +6 -0
- package/types/client-components/MultiComponentEditor.d.ts +10 -0
- package/types/client-components/index.d.ts +2 -0
- package/types/components/Picture.d.ts +1 -0
- package/types/components/Placeholder.d.ts +16 -2
- package/types/components/RichTextEditor.d.ts +55 -55
- package/types/components/TextEditor.d.ts +54 -54
- package/types/editor/AiPopup.d.ts +10 -0
- package/types/editor/AiTerminal.d.ts +4 -3
- package/types/editor/ComponentPalette.d.ts +3 -4
- package/types/editor/ComponentTree.d.ts +1 -1
- package/types/editor/ConfirmationDialog.d.ts +19 -0
- package/types/editor/ContentTree.d.ts +7 -3
- package/types/editor/Debug.d.ts +1 -1
- package/types/editor/DialogButtons.d.ts +4 -0
- package/types/editor/DictionaryEditor.d.ts +3 -2
- package/types/editor/EditFrame.d.ts +4 -3
- package/types/editor/EditorClient.d.ts +4 -4
- package/types/editor/EditorClientHost.d.ts +4 -3
- package/types/editor/FieldListField.d.ts +4 -0
- package/types/editor/FloatingToolbar.d.ts +7 -0
- package/types/editor/ItemEditor.d.ts +4 -0
- package/types/editor/ItemInfo.d.ts +4 -0
- package/types/editor/ItemNameDialog.d.ts +10 -0
- package/types/editor/LinkEditorDialog.d.ts +15 -0
- package/types/editor/MainLayout.d.ts +6 -0
- package/types/editor/MediaSelector.d.ts +2 -1
- package/types/editor/PictureEditorDialog.d.ts +6 -0
- package/types/editor/SidebarTabs.d.ts +8 -0
- package/types/editor/Terminal.d.ts +3 -1
- package/types/editor/Utils.d.ts +3 -0
- package/types/editor/Workbox.d.ts +6 -0
- package/types/editor/componentCommands.d.ts +4 -0
- package/types/editor/contentService.d.ts +7 -1
- package/types/editor/editContext.d.ts +90 -19
- package/types/editor/editService.d.ts +9 -1
- package/types/editor/fieldTypes/CheckboxEditor.d.ts +4 -0
- package/types/editor/fieldTypes/InternalLinkFieldEditor.d.ts +4 -0
- package/types/editor/fieldTypes/LinkFieldEditor.d.ts +4 -0
- package/types/editor/fieldTypes/MultiLineText.d.ts +4 -0
- package/types/editor/fieldTypes/PictureFieldEditor.d.ts +4 -0
- package/types/editor/fieldTypes/TreeListEditor.d.ts +4 -0
- package/types/editor/ui/Section.d.ts +5 -0
- package/types/fieldTypes.d.ts +30 -15
- package/types/layoutData.d.ts +34 -9
- package/types/loadRouteData.d.ts +34 -5
- package/types/mediaProtection.d.ts +1 -0
- package/types/middleware/authorization.d.ts +2 -0
- package/types/middleware/index.d.ts +1 -0
- package/dist/cjs/editor/PageInfo.js +0 -12
- package/dist/esm/alpacaContext.js +0 -8
- package/dist/esm/components/Error.js +0 -10
- package/dist/esm/components/Image.js +0 -32
- package/dist/esm/components/Link.js +0 -29
- package/dist/esm/components/LinkEditor.js +0 -19
- package/dist/esm/components/Picture.js +0 -118
- package/dist/esm/components/PictureEditor.js +0 -64
- package/dist/esm/components/Placeholder.js +0 -69
- package/dist/esm/components/RichText.js +0 -40
- package/dist/esm/components/RichTextEditor.js +0 -52
- package/dist/esm/components/Slot.js +0 -5
- package/dist/esm/components/Text.js +0 -39
- package/dist/esm/components/TextEditor.js +0 -38
- package/dist/esm/components/Translate.js +0 -10
- package/dist/esm/components/index.js +0 -7
- package/dist/esm/editor/AiTerminal.js +0 -157
- package/dist/esm/editor/ComponentInfo.js +0 -10
- package/dist/esm/editor/ComponentPalette.js +0 -72
- package/dist/esm/editor/ComponentTree.js +0 -196
- package/dist/esm/editor/ContentTree.js +0 -117
- package/dist/esm/editor/Debug.js +0 -9
- package/dist/esm/editor/DictionaryEditor.js +0 -31
- package/dist/esm/editor/EditFrame.js +0 -57
- package/dist/esm/editor/EditHistory.js +0 -26
- package/dist/esm/editor/Editor.js +0 -23
- package/dist/esm/editor/EditorClient.js +0 -477
- package/dist/esm/editor/EditorClientHost.js +0 -7
- package/dist/esm/editor/FieldList.js +0 -60
- package/dist/esm/editor/GraphQL.js +0 -82
- package/dist/esm/editor/LanguageSelector.js +0 -17
- package/dist/esm/editor/MediaSelector.js +0 -60
- package/dist/esm/editor/PageInfo.js +0 -8
- package/dist/esm/editor/PlaceholderDropZone.js +0 -50
- package/dist/esm/editor/PlaceholderDropZoneHost.js +0 -7
- package/dist/esm/editor/Terminal.js +0 -47
- package/dist/esm/editor/TranslateEditor.js +0 -21
- package/dist/esm/editor/VersionSelector.js +0 -17
- package/dist/esm/editor/componentTreeHelper.js +0 -14
- package/dist/esm/editor/contentService.js +0 -31
- package/dist/esm/editor/editContext.js +0 -5
- package/dist/esm/editor/editService.js +0 -139
- package/dist/esm/editor/fieldTypes/RichTextEditor.js +0 -15
- package/dist/esm/editor/fieldTypes/SingleLineText.js +0 -13
- package/dist/esm/editor/index.js +0 -2
- package/dist/esm/fieldTypes.js +0 -1
- package/dist/esm/graphQLTypes.js +0 -1
- package/dist/esm/index.js +0 -7
- package/dist/esm/layoutData.js +0 -1
- package/dist/esm/loadRouteData.js +0 -123
- package/dist/esm/mediaProtection.js +0 -49
- package/types/editor/PageInfo.d.ts +0 -4
- /package/types/{editor → components}/TranslateEditor.d.ts +0 -0
|
@@ -5,40 +5,40 @@
|
|
|
5
5
|
--font-family:"Inter var", sans-serif;
|
|
6
6
|
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
|
7
7
|
--surface-a:#ffffff;
|
|
8
|
-
--surface-b:#
|
|
9
|
-
--surface-c:#
|
|
10
|
-
--surface-d:#
|
|
8
|
+
--surface-b:#f9fafb;
|
|
9
|
+
--surface-c:#f3f4f6;
|
|
10
|
+
--surface-d:#e5e7eb;
|
|
11
11
|
--surface-e:#ffffff;
|
|
12
12
|
--surface-f:#ffffff;
|
|
13
|
-
--text-color:#
|
|
14
|
-
--text-color-secondary:#
|
|
13
|
+
--text-color:#4b5563;
|
|
14
|
+
--text-color-secondary:#6b7280;
|
|
15
15
|
--primary-color:#8B5CF6;
|
|
16
16
|
--primary-color-text:#ffffff;
|
|
17
17
|
--surface-0: #ffffff;
|
|
18
|
-
--surface-50: #
|
|
19
|
-
--surface-100: #
|
|
20
|
-
--surface-200: #
|
|
21
|
-
--surface-300: #
|
|
22
|
-
--surface-400: #
|
|
23
|
-
--surface-500: #
|
|
24
|
-
--surface-600: #
|
|
25
|
-
--surface-700: #
|
|
26
|
-
--surface-800: #
|
|
27
|
-
--surface-900: #
|
|
28
|
-
--gray-50: #
|
|
29
|
-
--gray-100: #
|
|
30
|
-
--gray-200: #
|
|
31
|
-
--gray-300: #
|
|
32
|
-
--gray-400: #
|
|
33
|
-
--gray-500: #
|
|
34
|
-
--gray-600: #
|
|
35
|
-
--gray-700: #
|
|
36
|
-
--gray-800: #
|
|
37
|
-
--gray-900: #
|
|
18
|
+
--surface-50: #f9fafb;
|
|
19
|
+
--surface-100: #f3f4f6;
|
|
20
|
+
--surface-200: #e5e7eb;
|
|
21
|
+
--surface-300: #d1d5db;
|
|
22
|
+
--surface-400: #9ca3af;
|
|
23
|
+
--surface-500: #6b7280;
|
|
24
|
+
--surface-600: #4b5563;
|
|
25
|
+
--surface-700: #374151;
|
|
26
|
+
--surface-800: #1f2937;
|
|
27
|
+
--surface-900: #111827;
|
|
28
|
+
--gray-50: #f9fafb;
|
|
29
|
+
--gray-100: #f3f4f6;
|
|
30
|
+
--gray-200: #e5e7eb;
|
|
31
|
+
--gray-300: #d1d5db;
|
|
32
|
+
--gray-400: #9ca3af;
|
|
33
|
+
--gray-500: #6b7280;
|
|
34
|
+
--gray-600: #4b5563;
|
|
35
|
+
--gray-700: #374151;
|
|
36
|
+
--gray-800: #1f2937;
|
|
37
|
+
--gray-900: #111827;
|
|
38
38
|
--content-padding:1.25rem;
|
|
39
39
|
--inline-spacing:0.5rem;
|
|
40
40
|
--border-radius:6px;
|
|
41
|
-
--surface-ground:#
|
|
41
|
+
--surface-ground:#f9fafb;
|
|
42
42
|
--surface-section:#ffffff;
|
|
43
43
|
--surface-card:#ffffff;
|
|
44
44
|
--surface-overlay:#ffffff;
|
|
@@ -191,40 +191,40 @@
|
|
|
191
191
|
}
|
|
192
192
|
|
|
193
193
|
.p-editor-container .p-editor-toolbar {
|
|
194
|
-
background: #
|
|
194
|
+
background: #f9fafb;
|
|
195
195
|
border-top-right-radius: 6px;
|
|
196
196
|
border-top-left-radius: 6px;
|
|
197
197
|
}
|
|
198
198
|
.p-editor-container .p-editor-toolbar.ql-snow {
|
|
199
|
-
border: 1px solid #
|
|
199
|
+
border: 1px solid #e5e7eb;
|
|
200
200
|
}
|
|
201
201
|
.p-editor-container .p-editor-toolbar.ql-snow .ql-stroke {
|
|
202
|
-
stroke: #
|
|
202
|
+
stroke: #6b7280;
|
|
203
203
|
}
|
|
204
204
|
.p-editor-container .p-editor-toolbar.ql-snow .ql-fill {
|
|
205
|
-
fill: #
|
|
205
|
+
fill: #6b7280;
|
|
206
206
|
}
|
|
207
207
|
.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label {
|
|
208
208
|
border: 0 none;
|
|
209
|
-
color: #
|
|
209
|
+
color: #6b7280;
|
|
210
210
|
}
|
|
211
211
|
.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover {
|
|
212
|
-
color: #
|
|
212
|
+
color: #4b5563;
|
|
213
213
|
}
|
|
214
214
|
.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover .ql-stroke {
|
|
215
|
-
stroke: #
|
|
215
|
+
stroke: #4b5563;
|
|
216
216
|
}
|
|
217
217
|
.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover .ql-fill {
|
|
218
|
-
fill: #
|
|
218
|
+
fill: #4b5563;
|
|
219
219
|
}
|
|
220
220
|
.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
|
|
221
|
-
color: #
|
|
221
|
+
color: #4b5563;
|
|
222
222
|
}
|
|
223
223
|
.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
|
|
224
|
-
stroke: #
|
|
224
|
+
stroke: #4b5563;
|
|
225
225
|
}
|
|
226
226
|
.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
|
|
227
|
-
fill: #
|
|
227
|
+
fill: #4b5563;
|
|
228
228
|
}
|
|
229
229
|
.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
|
|
230
230
|
background: #ffffff;
|
|
@@ -234,11 +234,11 @@
|
|
|
234
234
|
padding: 0.75rem 0;
|
|
235
235
|
}
|
|
236
236
|
.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item {
|
|
237
|
-
color: #
|
|
237
|
+
color: #4b5563;
|
|
238
238
|
}
|
|
239
239
|
.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item:hover {
|
|
240
|
-
color: #
|
|
241
|
-
background: #
|
|
240
|
+
color: #4b5563;
|
|
241
|
+
background: #f3f4f6;
|
|
242
242
|
}
|
|
243
243
|
.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded:not(.ql-icon-picker) .ql-picker-item {
|
|
244
244
|
padding: 0.75rem 1.25rem;
|
|
@@ -248,25 +248,25 @@
|
|
|
248
248
|
border-bottom-left-radius: 6px;
|
|
249
249
|
}
|
|
250
250
|
.p-editor-container .p-editor-content.ql-snow {
|
|
251
|
-
border: 1px solid #
|
|
251
|
+
border: 1px solid #e5e7eb;
|
|
252
252
|
}
|
|
253
253
|
.p-editor-container .p-editor-content .ql-editor {
|
|
254
254
|
background: #ffffff;
|
|
255
|
-
color: #
|
|
255
|
+
color: #4b5563;
|
|
256
256
|
border-bottom-right-radius: 6px;
|
|
257
257
|
border-bottom-left-radius: 6px;
|
|
258
258
|
}
|
|
259
259
|
.p-editor-container .ql-snow.ql-toolbar button:hover,
|
|
260
260
|
.p-editor-container .ql-snow.ql-toolbar button:focus {
|
|
261
|
-
color: #
|
|
261
|
+
color: #4b5563;
|
|
262
262
|
}
|
|
263
263
|
.p-editor-container .ql-snow.ql-toolbar button:hover .ql-stroke,
|
|
264
264
|
.p-editor-container .ql-snow.ql-toolbar button:focus .ql-stroke {
|
|
265
|
-
stroke: #
|
|
265
|
+
stroke: #4b5563;
|
|
266
266
|
}
|
|
267
267
|
.p-editor-container .ql-snow.ql-toolbar button:hover .ql-fill,
|
|
268
268
|
.p-editor-container .ql-snow.ql-toolbar button:focus .ql-fill {
|
|
269
|
-
fill: #
|
|
269
|
+
fill: #4b5563;
|
|
270
270
|
}
|
|
271
271
|
.p-editor-container .ql-snow.ql-toolbar button.ql-active,
|
|
272
272
|
.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active,
|
|
@@ -315,7 +315,7 @@
|
|
|
315
315
|
}
|
|
316
316
|
|
|
317
317
|
.p-text-secondary {
|
|
318
|
-
color: #
|
|
318
|
+
color: #6b7280;
|
|
319
319
|
}
|
|
320
320
|
|
|
321
321
|
.pi {
|
|
@@ -390,7 +390,7 @@
|
|
|
390
390
|
font-family: var(--font-family);
|
|
391
391
|
font-feature-settings: var(--font-feature-settings, normal);
|
|
392
392
|
font-size: 1rem;
|
|
393
|
-
color: #
|
|
393
|
+
color: #4b5563;
|
|
394
394
|
padding: 0;
|
|
395
395
|
margin: 0;
|
|
396
396
|
}
|
|
@@ -410,7 +410,7 @@
|
|
|
410
410
|
|
|
411
411
|
.p-autocomplete-panel {
|
|
412
412
|
background: #ffffff;
|
|
413
|
-
color: #
|
|
413
|
+
color: #4b5563;
|
|
414
414
|
border: 0 none;
|
|
415
415
|
border-radius: 6px;
|
|
416
416
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
@@ -422,14 +422,14 @@
|
|
|
422
422
|
margin: 0;
|
|
423
423
|
padding: 0.75rem 1.25rem;
|
|
424
424
|
border: 0 none;
|
|
425
|
-
color: #
|
|
425
|
+
color: #4b5563;
|
|
426
426
|
background: transparent;
|
|
427
427
|
transition: box-shadow 0.2s;
|
|
428
428
|
border-radius: 0;
|
|
429
429
|
}
|
|
430
430
|
.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:hover {
|
|
431
|
-
color: #
|
|
432
|
-
background: #
|
|
431
|
+
color: #4b5563;
|
|
432
|
+
background: #f3f4f6;
|
|
433
433
|
}
|
|
434
434
|
.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight {
|
|
435
435
|
color: #6D28D9;
|
|
@@ -438,7 +438,7 @@
|
|
|
438
438
|
.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item-group {
|
|
439
439
|
margin: 0;
|
|
440
440
|
padding: 0.75rem 1.25rem;
|
|
441
|
-
color: #
|
|
441
|
+
color: #374151;
|
|
442
442
|
background: #ffffff;
|
|
443
443
|
font-weight: 700;
|
|
444
444
|
}
|
|
@@ -450,8 +450,8 @@
|
|
|
450
450
|
.p-datepicker {
|
|
451
451
|
padding: 0.5rem;
|
|
452
452
|
background: #ffffff;
|
|
453
|
-
color: #
|
|
454
|
-
border: 1px solid #
|
|
453
|
+
color: #4b5563;
|
|
454
|
+
border: 1px solid #d1d5db;
|
|
455
455
|
border-radius: 6px;
|
|
456
456
|
}
|
|
457
457
|
.p-datepicker:not(.p-datepicker-inline) {
|
|
@@ -464,11 +464,11 @@
|
|
|
464
464
|
}
|
|
465
465
|
.p-datepicker .p-datepicker-header {
|
|
466
466
|
padding: 0.5rem;
|
|
467
|
-
color: #
|
|
467
|
+
color: #4b5563;
|
|
468
468
|
background: #ffffff;
|
|
469
469
|
font-weight: 600;
|
|
470
470
|
margin: 0;
|
|
471
|
-
border-bottom: 1px solid #
|
|
471
|
+
border-bottom: 1px solid #e5e7eb;
|
|
472
472
|
border-top-right-radius: 6px;
|
|
473
473
|
border-top-left-radius: 6px;
|
|
474
474
|
}
|
|
@@ -476,7 +476,7 @@
|
|
|
476
476
|
.p-datepicker .p-datepicker-header .p-datepicker-next {
|
|
477
477
|
width: 2rem;
|
|
478
478
|
height: 2rem;
|
|
479
|
-
color: #
|
|
479
|
+
color: #6b7280;
|
|
480
480
|
border: 0 none;
|
|
481
481
|
background: transparent;
|
|
482
482
|
border-radius: 50%;
|
|
@@ -484,9 +484,9 @@
|
|
|
484
484
|
}
|
|
485
485
|
.p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover,
|
|
486
486
|
.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover {
|
|
487
|
-
color: #
|
|
487
|
+
color: #374151;
|
|
488
488
|
border-color: transparent;
|
|
489
|
-
background: #
|
|
489
|
+
background: #f3f4f6;
|
|
490
490
|
}
|
|
491
491
|
.p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible,
|
|
492
492
|
.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible {
|
|
@@ -499,7 +499,7 @@
|
|
|
499
499
|
}
|
|
500
500
|
.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year,
|
|
501
501
|
.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month {
|
|
502
|
-
color: #
|
|
502
|
+
color: #4b5563;
|
|
503
503
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
504
504
|
font-weight: 600;
|
|
505
505
|
padding: 0.5rem;
|
|
@@ -542,8 +542,8 @@
|
|
|
542
542
|
box-shadow: 0 0 0 0.2rem #DDD6FE;
|
|
543
543
|
}
|
|
544
544
|
.p-datepicker table td.p-datepicker-today > span {
|
|
545
|
-
background: #
|
|
546
|
-
color: #
|
|
545
|
+
background: #d1d5db;
|
|
546
|
+
color: #4b5563;
|
|
547
547
|
border-color: transparent;
|
|
548
548
|
}
|
|
549
549
|
.p-datepicker table td.p-datepicker-today > span.p-highlight {
|
|
@@ -552,28 +552,28 @@
|
|
|
552
552
|
}
|
|
553
553
|
.p-datepicker .p-datepicker-buttonbar {
|
|
554
554
|
padding: 1rem 0;
|
|
555
|
-
border-top: 1px solid #
|
|
555
|
+
border-top: 1px solid #e5e7eb;
|
|
556
556
|
}
|
|
557
557
|
.p-datepicker .p-datepicker-buttonbar .p-button {
|
|
558
558
|
width: auto;
|
|
559
559
|
}
|
|
560
560
|
.p-datepicker .p-timepicker {
|
|
561
|
-
border-top: 1px solid #
|
|
561
|
+
border-top: 1px solid #e5e7eb;
|
|
562
562
|
padding: 0.5rem;
|
|
563
563
|
}
|
|
564
564
|
.p-datepicker .p-timepicker button {
|
|
565
565
|
width: 2rem;
|
|
566
566
|
height: 2rem;
|
|
567
|
-
color: #
|
|
567
|
+
color: #6b7280;
|
|
568
568
|
border: 0 none;
|
|
569
569
|
background: transparent;
|
|
570
570
|
border-radius: 50%;
|
|
571
571
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
572
572
|
}
|
|
573
573
|
.p-datepicker .p-timepicker button:enabled:hover {
|
|
574
|
-
color: #
|
|
574
|
+
color: #374151;
|
|
575
575
|
border-color: transparent;
|
|
576
|
-
background: #
|
|
576
|
+
background: #f3f4f6;
|
|
577
577
|
}
|
|
578
578
|
.p-datepicker .p-timepicker button:focus-visible {
|
|
579
579
|
outline: 0 none;
|
|
@@ -617,7 +617,7 @@
|
|
|
617
617
|
background: #F5F3FF;
|
|
618
618
|
}
|
|
619
619
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group {
|
|
620
|
-
border-left: 1px solid #
|
|
620
|
+
border-left: 1px solid #e5e7eb;
|
|
621
621
|
padding-right: 0.5rem;
|
|
622
622
|
padding-left: 0.5rem;
|
|
623
623
|
padding-top: 0;
|
|
@@ -631,7 +631,7 @@
|
|
|
631
631
|
border-left: 0 none;
|
|
632
632
|
}
|
|
633
633
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
|
634
|
-
background: #
|
|
634
|
+
background: #f3f4f6;
|
|
635
635
|
}
|
|
636
636
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):focus {
|
|
637
637
|
outline: 0 none;
|
|
@@ -639,7 +639,7 @@
|
|
|
639
639
|
box-shadow: 0 0 0 0.2rem #DDD6FE;
|
|
640
640
|
}
|
|
641
641
|
.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):not(.p-highlight):hover {
|
|
642
|
-
background: #
|
|
642
|
+
background: #f3f4f6;
|
|
643
643
|
}
|
|
644
644
|
.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):focus {
|
|
645
645
|
outline: 0 none;
|
|
@@ -647,7 +647,7 @@
|
|
|
647
647
|
box-shadow: 0 0 0 0.2rem #DDD6FE;
|
|
648
648
|
}
|
|
649
649
|
.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):not(.p-highlight):hover {
|
|
650
|
-
background: #
|
|
650
|
+
background: #f3f4f6;
|
|
651
651
|
}
|
|
652
652
|
.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):focus {
|
|
653
653
|
outline: 0 none;
|
|
@@ -662,7 +662,7 @@
|
|
|
662
662
|
}
|
|
663
663
|
.p-cascadeselect {
|
|
664
664
|
background: #ffffff;
|
|
665
|
-
border: 1px solid #
|
|
665
|
+
border: 1px solid #d1d5db;
|
|
666
666
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
667
667
|
border-radius: 6px;
|
|
668
668
|
}
|
|
@@ -681,7 +681,7 @@
|
|
|
681
681
|
padding: 0.75rem 0.75rem;
|
|
682
682
|
}
|
|
683
683
|
.p-cascadeselect .p-cascadeselect-label.p-placeholder {
|
|
684
|
-
color: #
|
|
684
|
+
color: #6b7280;
|
|
685
685
|
}
|
|
686
686
|
.p-cascadeselect .p-cascadeselect-label:enabled:focus {
|
|
687
687
|
outline: 0 none;
|
|
@@ -689,7 +689,7 @@
|
|
|
689
689
|
}
|
|
690
690
|
.p-cascadeselect .p-cascadeselect-trigger {
|
|
691
691
|
background: transparent;
|
|
692
|
-
color: #
|
|
692
|
+
color: #6b7280;
|
|
693
693
|
width: 3rem;
|
|
694
694
|
border-top-right-radius: 6px;
|
|
695
695
|
border-bottom-right-radius: 6px;
|
|
@@ -700,7 +700,7 @@
|
|
|
700
700
|
|
|
701
701
|
.p-cascadeselect-panel {
|
|
702
702
|
background: #ffffff;
|
|
703
|
-
color: #
|
|
703
|
+
color: #4b5563;
|
|
704
704
|
border: 0 none;
|
|
705
705
|
border-radius: 6px;
|
|
706
706
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
@@ -711,7 +711,7 @@
|
|
|
711
711
|
.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item {
|
|
712
712
|
margin: 0;
|
|
713
713
|
border: 0 none;
|
|
714
|
-
color: #
|
|
714
|
+
color: #4b5563;
|
|
715
715
|
background: transparent;
|
|
716
716
|
transition: box-shadow 0.2s;
|
|
717
717
|
border-radius: 0;
|
|
@@ -729,8 +729,8 @@
|
|
|
729
729
|
background: #F5F3FF;
|
|
730
730
|
}
|
|
731
731
|
.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:not(.p-highlight):not(.p-disabled):hover {
|
|
732
|
-
color: #
|
|
733
|
-
background: #
|
|
732
|
+
color: #4b5563;
|
|
733
|
+
background: #f3f4f6;
|
|
734
734
|
}
|
|
735
735
|
.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon {
|
|
736
736
|
font-size: 0.875rem;
|
|
@@ -741,10 +741,10 @@
|
|
|
741
741
|
}
|
|
742
742
|
|
|
743
743
|
.p-input-filled .p-cascadeselect {
|
|
744
|
-
background: #
|
|
744
|
+
background: #f3f4f6;
|
|
745
745
|
}
|
|
746
746
|
.p-input-filled .p-cascadeselect:not(.p-disabled):hover {
|
|
747
|
-
background-color: #
|
|
747
|
+
background-color: #f3f4f6;
|
|
748
748
|
}
|
|
749
749
|
.p-input-filled .p-cascadeselect:not(.p-disabled).p-focus {
|
|
750
750
|
background-color: #ffffff;
|
|
@@ -755,11 +755,11 @@
|
|
|
755
755
|
height: 22px;
|
|
756
756
|
}
|
|
757
757
|
.p-checkbox .p-checkbox-box {
|
|
758
|
-
border: 2px solid #
|
|
758
|
+
border: 2px solid #d1d5db;
|
|
759
759
|
background: #ffffff;
|
|
760
760
|
width: 22px;
|
|
761
761
|
height: 22px;
|
|
762
|
-
color: #
|
|
762
|
+
color: #4b5563;
|
|
763
763
|
border-radius: 6px;
|
|
764
764
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
765
765
|
}
|
|
@@ -800,13 +800,13 @@
|
|
|
800
800
|
}
|
|
801
801
|
|
|
802
802
|
.p-input-filled .p-checkbox .p-checkbox-box {
|
|
803
|
-
background-color: #
|
|
803
|
+
background-color: #f3f4f6;
|
|
804
804
|
}
|
|
805
805
|
.p-input-filled .p-checkbox .p-checkbox-box.p-highlight {
|
|
806
806
|
background: #8B5CF6;
|
|
807
807
|
}
|
|
808
808
|
.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover {
|
|
809
|
-
background-color: #
|
|
809
|
+
background-color: #f3f4f6;
|
|
810
810
|
}
|
|
811
811
|
.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover {
|
|
812
812
|
background: #6D28D9;
|
|
@@ -829,7 +829,7 @@
|
|
|
829
829
|
padding: 0.375rem 0.75rem;
|
|
830
830
|
margin-right: 0.5rem;
|
|
831
831
|
background: #F5F3FF;
|
|
832
|
-
color: #
|
|
832
|
+
color: #4b5563;
|
|
833
833
|
border-radius: 16px;
|
|
834
834
|
}
|
|
835
835
|
.p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon {
|
|
@@ -842,7 +842,7 @@
|
|
|
842
842
|
font-family: var(--font-family);
|
|
843
843
|
font-feature-settings: var(--font-feature-settings, normal);
|
|
844
844
|
font-size: 1rem;
|
|
845
|
-
color: #
|
|
845
|
+
color: #4b5563;
|
|
846
846
|
padding: 0;
|
|
847
847
|
margin: 0;
|
|
848
848
|
}
|
|
@@ -870,7 +870,7 @@
|
|
|
870
870
|
|
|
871
871
|
.p-dropdown {
|
|
872
872
|
background: #ffffff;
|
|
873
|
-
border: 1px solid #
|
|
873
|
+
border: 1px solid #d1d5db;
|
|
874
874
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
875
875
|
border-radius: 6px;
|
|
876
876
|
}
|
|
@@ -891,7 +891,7 @@
|
|
|
891
891
|
border: 0 none;
|
|
892
892
|
}
|
|
893
893
|
.p-dropdown .p-dropdown-label.p-placeholder {
|
|
894
|
-
color: #
|
|
894
|
+
color: #6b7280;
|
|
895
895
|
}
|
|
896
896
|
.p-dropdown .p-dropdown-label:enabled:focus {
|
|
897
897
|
outline: 0 none;
|
|
@@ -899,13 +899,13 @@
|
|
|
899
899
|
}
|
|
900
900
|
.p-dropdown .p-dropdown-trigger {
|
|
901
901
|
background: transparent;
|
|
902
|
-
color: #
|
|
902
|
+
color: #6b7280;
|
|
903
903
|
width: 3rem;
|
|
904
904
|
border-top-right-radius: 6px;
|
|
905
905
|
border-bottom-right-radius: 6px;
|
|
906
906
|
}
|
|
907
907
|
.p-dropdown .p-dropdown-clear-icon {
|
|
908
|
-
color: #
|
|
908
|
+
color: #6b7280;
|
|
909
909
|
right: 3rem;
|
|
910
910
|
}
|
|
911
911
|
.p-dropdown.p-invalid.p-component {
|
|
@@ -914,16 +914,16 @@
|
|
|
914
914
|
|
|
915
915
|
.p-dropdown-panel {
|
|
916
916
|
background: #ffffff;
|
|
917
|
-
color: #
|
|
917
|
+
color: #4b5563;
|
|
918
918
|
border: 0 none;
|
|
919
919
|
border-radius: 6px;
|
|
920
920
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
921
921
|
}
|
|
922
922
|
.p-dropdown-panel .p-dropdown-header {
|
|
923
923
|
padding: 0.75rem 1.25rem;
|
|
924
|
-
border-bottom: 1px solid #
|
|
925
|
-
color: #
|
|
926
|
-
background: #
|
|
924
|
+
border-bottom: 1px solid #e5e7eb;
|
|
925
|
+
color: #374151;
|
|
926
|
+
background: #f9fafb;
|
|
927
927
|
margin: 0;
|
|
928
928
|
border-top-right-radius: 6px;
|
|
929
929
|
border-top-left-radius: 6px;
|
|
@@ -934,7 +934,7 @@
|
|
|
934
934
|
}
|
|
935
935
|
.p-dropdown-panel .p-dropdown-header .p-dropdown-filter-icon {
|
|
936
936
|
right: 0.75rem;
|
|
937
|
-
color: #
|
|
937
|
+
color: #6b7280;
|
|
938
938
|
}
|
|
939
939
|
.p-dropdown-panel .p-dropdown-header .p-dropdown-clearable-filter .p-dropdown-filter {
|
|
940
940
|
padding-right: 3.5rem;
|
|
@@ -950,7 +950,7 @@
|
|
|
950
950
|
margin: 0;
|
|
951
951
|
padding: 0.75rem 1.25rem;
|
|
952
952
|
border: 0 none;
|
|
953
|
-
color: #
|
|
953
|
+
color: #4b5563;
|
|
954
954
|
background: transparent;
|
|
955
955
|
transition: box-shadow 0.2s;
|
|
956
956
|
border-radius: 0;
|
|
@@ -960,27 +960,27 @@
|
|
|
960
960
|
background: #F5F3FF;
|
|
961
961
|
}
|
|
962
962
|
.p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover {
|
|
963
|
-
color: #
|
|
964
|
-
background: #
|
|
963
|
+
color: #4b5563;
|
|
964
|
+
background: #f3f4f6;
|
|
965
965
|
}
|
|
966
966
|
.p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
|
|
967
967
|
margin: 0;
|
|
968
968
|
padding: 0.75rem 1.25rem;
|
|
969
|
-
color: #
|
|
969
|
+
color: #374151;
|
|
970
970
|
background: #ffffff;
|
|
971
971
|
font-weight: 700;
|
|
972
972
|
}
|
|
973
973
|
.p-dropdown-panel .p-dropdown-items .p-dropdown-empty-message {
|
|
974
974
|
padding: 0.75rem 1.25rem;
|
|
975
|
-
color: #
|
|
975
|
+
color: #4b5563;
|
|
976
976
|
background: transparent;
|
|
977
977
|
}
|
|
978
978
|
|
|
979
979
|
.p-input-filled .p-dropdown {
|
|
980
|
-
background: #
|
|
980
|
+
background: #f3f4f6;
|
|
981
981
|
}
|
|
982
982
|
.p-input-filled .p-dropdown:not(.p-disabled):hover {
|
|
983
|
-
background-color: #
|
|
983
|
+
background-color: #f3f4f6;
|
|
984
984
|
}
|
|
985
985
|
.p-input-filled .p-dropdown:not(.p-disabled).p-focus {
|
|
986
986
|
background-color: #ffffff;
|
|
@@ -990,16 +990,16 @@
|
|
|
990
990
|
}
|
|
991
991
|
|
|
992
992
|
.p-inputgroup-addon {
|
|
993
|
-
background: #
|
|
994
|
-
color: #
|
|
995
|
-
border-top: 1px solid #
|
|
996
|
-
border-left: 1px solid #
|
|
997
|
-
border-bottom: 1px solid #
|
|
993
|
+
background: #f3f4f6;
|
|
994
|
+
color: #6b7280;
|
|
995
|
+
border-top: 1px solid #d1d5db;
|
|
996
|
+
border-left: 1px solid #d1d5db;
|
|
997
|
+
border-bottom: 1px solid #d1d5db;
|
|
998
998
|
padding: 0.75rem 0.75rem;
|
|
999
999
|
min-width: 3rem;
|
|
1000
1000
|
}
|
|
1001
1001
|
.p-inputgroup-addon:last-child {
|
|
1002
|
-
border-right: 1px solid #
|
|
1002
|
+
border-right: 1px solid #d1d5db;
|
|
1003
1003
|
}
|
|
1004
1004
|
|
|
1005
1005
|
.p-inputgroup > .p-component,
|
|
@@ -1068,7 +1068,7 @@
|
|
|
1068
1068
|
height: 1.75rem;
|
|
1069
1069
|
}
|
|
1070
1070
|
.p-inputswitch .p-inputswitch-slider {
|
|
1071
|
-
background: #
|
|
1071
|
+
background: #d1d5db;
|
|
1072
1072
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
1073
1073
|
border-radius: 30px;
|
|
1074
1074
|
}
|
|
@@ -1090,7 +1090,7 @@
|
|
|
1090
1090
|
box-shadow: 0 0 0 0.2rem #DDD6FE;
|
|
1091
1091
|
}
|
|
1092
1092
|
.p-inputswitch:not(.p-disabled):hover .p-inputswitch-slider {
|
|
1093
|
-
background: #
|
|
1093
|
+
background: #b7bcc5;
|
|
1094
1094
|
}
|
|
1095
1095
|
.p-inputswitch.p-inputswitch-checked .p-inputswitch-slider {
|
|
1096
1096
|
background: #8B5CF6;
|
|
@@ -1109,10 +1109,10 @@
|
|
|
1109
1109
|
font-family: var(--font-family);
|
|
1110
1110
|
font-feature-settings: var(--font-feature-settings, normal);
|
|
1111
1111
|
font-size: 1rem;
|
|
1112
|
-
color: #
|
|
1112
|
+
color: #4b5563;
|
|
1113
1113
|
background: #ffffff;
|
|
1114
1114
|
padding: 0.75rem 0.75rem;
|
|
1115
|
-
border: 1px solid #
|
|
1115
|
+
border: 1px solid #d1d5db;
|
|
1116
1116
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
1117
1117
|
appearance: none;
|
|
1118
1118
|
border-radius: 6px;
|
|
@@ -1140,7 +1140,7 @@
|
|
|
1140
1140
|
|
|
1141
1141
|
.p-float-label > label {
|
|
1142
1142
|
left: 0.75rem;
|
|
1143
|
-
color: #
|
|
1143
|
+
color: #6b7280;
|
|
1144
1144
|
transition-duration: 0.2s;
|
|
1145
1145
|
}
|
|
1146
1146
|
|
|
@@ -1152,7 +1152,7 @@
|
|
|
1152
1152
|
.p-input-icon-left > svg:first-of-type,
|
|
1153
1153
|
.p-input-icon-left > .p-input-prefix {
|
|
1154
1154
|
left: 0.75rem;
|
|
1155
|
-
color: #
|
|
1155
|
+
color: #6b7280;
|
|
1156
1156
|
}
|
|
1157
1157
|
|
|
1158
1158
|
.p-input-icon-left > .p-inputtext {
|
|
@@ -1167,7 +1167,7 @@
|
|
|
1167
1167
|
.p-input-icon-right > svg:last-of-type,
|
|
1168
1168
|
.p-input-icon-right > .p-input-suffix {
|
|
1169
1169
|
right: 0.75rem;
|
|
1170
|
-
color: #
|
|
1170
|
+
color: #6b7280;
|
|
1171
1171
|
}
|
|
1172
1172
|
|
|
1173
1173
|
.p-input-icon-right > .p-inputtext {
|
|
@@ -1175,26 +1175,26 @@
|
|
|
1175
1175
|
}
|
|
1176
1176
|
|
|
1177
1177
|
::-webkit-input-placeholder {
|
|
1178
|
-
color: #
|
|
1178
|
+
color: #6b7280;
|
|
1179
1179
|
}
|
|
1180
1180
|
|
|
1181
1181
|
:-moz-placeholder {
|
|
1182
|
-
color: #
|
|
1182
|
+
color: #6b7280;
|
|
1183
1183
|
}
|
|
1184
1184
|
|
|
1185
1185
|
::-moz-placeholder {
|
|
1186
|
-
color: #
|
|
1186
|
+
color: #6b7280;
|
|
1187
1187
|
}
|
|
1188
1188
|
|
|
1189
1189
|
:-ms-input-placeholder {
|
|
1190
|
-
color: #
|
|
1190
|
+
color: #6b7280;
|
|
1191
1191
|
}
|
|
1192
1192
|
|
|
1193
1193
|
.p-input-filled .p-inputtext {
|
|
1194
|
-
background-color: #
|
|
1194
|
+
background-color: #f3f4f6;
|
|
1195
1195
|
}
|
|
1196
1196
|
.p-input-filled .p-inputtext:enabled:hover {
|
|
1197
|
-
background-color: #
|
|
1197
|
+
background-color: #f3f4f6;
|
|
1198
1198
|
}
|
|
1199
1199
|
.p-input-filled .p-inputtext:enabled:focus {
|
|
1200
1200
|
background-color: #ffffff;
|
|
@@ -1212,15 +1212,15 @@
|
|
|
1212
1212
|
|
|
1213
1213
|
.p-listbox {
|
|
1214
1214
|
background: #ffffff;
|
|
1215
|
-
color: #
|
|
1216
|
-
border: 1px solid #
|
|
1215
|
+
color: #4b5563;
|
|
1216
|
+
border: 1px solid #d1d5db;
|
|
1217
1217
|
border-radius: 6px;
|
|
1218
1218
|
}
|
|
1219
1219
|
.p-listbox .p-listbox-header {
|
|
1220
1220
|
padding: 0.75rem 1.25rem;
|
|
1221
|
-
border-bottom: 1px solid #
|
|
1222
|
-
color: #
|
|
1223
|
-
background: #
|
|
1221
|
+
border-bottom: 1px solid #e5e7eb;
|
|
1222
|
+
color: #374151;
|
|
1223
|
+
background: #f9fafb;
|
|
1224
1224
|
margin: 0;
|
|
1225
1225
|
border-top-right-radius: 6px;
|
|
1226
1226
|
border-top-left-radius: 6px;
|
|
@@ -1230,7 +1230,7 @@
|
|
|
1230
1230
|
}
|
|
1231
1231
|
.p-listbox .p-listbox-header .p-listbox-filter-icon {
|
|
1232
1232
|
right: 0.75rem;
|
|
1233
|
-
color: #
|
|
1233
|
+
color: #6b7280;
|
|
1234
1234
|
}
|
|
1235
1235
|
.p-listbox .p-listbox-list {
|
|
1236
1236
|
padding: 0.75rem 0;
|
|
@@ -1239,7 +1239,7 @@
|
|
|
1239
1239
|
margin: 0;
|
|
1240
1240
|
padding: 0.75rem 1.25rem;
|
|
1241
1241
|
border: 0 none;
|
|
1242
|
-
color: #
|
|
1242
|
+
color: #4b5563;
|
|
1243
1243
|
transition: box-shadow 0.2s;
|
|
1244
1244
|
border-radius: 0;
|
|
1245
1245
|
}
|
|
@@ -1255,18 +1255,18 @@
|
|
|
1255
1255
|
.p-listbox .p-listbox-list .p-listbox-item-group {
|
|
1256
1256
|
margin: 0;
|
|
1257
1257
|
padding: 0.75rem 1.25rem;
|
|
1258
|
-
color: #
|
|
1258
|
+
color: #374151;
|
|
1259
1259
|
background: #ffffff;
|
|
1260
1260
|
font-weight: 700;
|
|
1261
1261
|
}
|
|
1262
1262
|
.p-listbox .p-listbox-list .p-listbox-empty-message {
|
|
1263
1263
|
padding: 0.75rem 1.25rem;
|
|
1264
|
-
color: #
|
|
1264
|
+
color: #4b5563;
|
|
1265
1265
|
background: transparent;
|
|
1266
1266
|
}
|
|
1267
1267
|
.p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled):hover {
|
|
1268
|
-
color: #
|
|
1269
|
-
background: #
|
|
1268
|
+
color: #4b5563;
|
|
1269
|
+
background: #f3f4f6;
|
|
1270
1270
|
}
|
|
1271
1271
|
.p-listbox.p-invalid {
|
|
1272
1272
|
border-color: #e24c4c;
|
|
@@ -1274,7 +1274,7 @@
|
|
|
1274
1274
|
|
|
1275
1275
|
.p-mention-panel {
|
|
1276
1276
|
background: #ffffff;
|
|
1277
|
-
color: #
|
|
1277
|
+
color: #4b5563;
|
|
1278
1278
|
border: 0 none;
|
|
1279
1279
|
border-radius: 6px;
|
|
1280
1280
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
@@ -1286,14 +1286,14 @@
|
|
|
1286
1286
|
margin: 0;
|
|
1287
1287
|
padding: 0.75rem 1.25rem;
|
|
1288
1288
|
border: 0 none;
|
|
1289
|
-
color: #
|
|
1289
|
+
color: #4b5563;
|
|
1290
1290
|
background: transparent;
|
|
1291
1291
|
transition: box-shadow 0.2s;
|
|
1292
1292
|
border-radius: 0;
|
|
1293
1293
|
}
|
|
1294
1294
|
.p-mention-panel .p-mention-items .p-mention-item:hover {
|
|
1295
|
-
color: #
|
|
1296
|
-
background: #
|
|
1295
|
+
color: #4b5563;
|
|
1296
|
+
background: #f3f4f6;
|
|
1297
1297
|
}
|
|
1298
1298
|
.p-mention-panel .p-mention-items .p-mention-item.p-highlight {
|
|
1299
1299
|
color: #6D28D9;
|
|
@@ -1302,7 +1302,7 @@
|
|
|
1302
1302
|
|
|
1303
1303
|
.p-multiselect {
|
|
1304
1304
|
background: #ffffff;
|
|
1305
|
-
border: 1px solid #
|
|
1305
|
+
border: 1px solid #d1d5db;
|
|
1306
1306
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
1307
1307
|
border-radius: 6px;
|
|
1308
1308
|
}
|
|
@@ -1323,13 +1323,13 @@
|
|
|
1323
1323
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
1324
1324
|
}
|
|
1325
1325
|
.p-multiselect .p-multiselect-label.p-placeholder {
|
|
1326
|
-
color: #
|
|
1326
|
+
color: #6b7280;
|
|
1327
1327
|
}
|
|
1328
1328
|
.p-multiselect.p-multiselect-chip .p-multiselect-token {
|
|
1329
1329
|
padding: 0.375rem 0.75rem;
|
|
1330
1330
|
margin-right: 0.5rem;
|
|
1331
|
-
background: #
|
|
1332
|
-
color: #
|
|
1331
|
+
background: #e5e7eb;
|
|
1332
|
+
color: #4b5563;
|
|
1333
1333
|
border-radius: 16px;
|
|
1334
1334
|
}
|
|
1335
1335
|
.p-multiselect.p-multiselect-chip .p-multiselect-token .p-multiselect-token-icon {
|
|
@@ -1337,13 +1337,13 @@
|
|
|
1337
1337
|
}
|
|
1338
1338
|
.p-multiselect .p-multiselect-trigger {
|
|
1339
1339
|
background: transparent;
|
|
1340
|
-
color: #
|
|
1340
|
+
color: #6b7280;
|
|
1341
1341
|
width: 3rem;
|
|
1342
1342
|
border-top-right-radius: 6px;
|
|
1343
1343
|
border-bottom-right-radius: 6px;
|
|
1344
1344
|
}
|
|
1345
1345
|
.p-multiselect .p-multiselect-clear-icon {
|
|
1346
|
-
color: #
|
|
1346
|
+
color: #6b7280;
|
|
1347
1347
|
right: 3rem;
|
|
1348
1348
|
}
|
|
1349
1349
|
.p-multiselect.p-invalid.p-component {
|
|
@@ -1362,16 +1362,16 @@
|
|
|
1362
1362
|
|
|
1363
1363
|
.p-multiselect-panel {
|
|
1364
1364
|
background: #ffffff;
|
|
1365
|
-
color: #
|
|
1365
|
+
color: #4b5563;
|
|
1366
1366
|
border: 0 none;
|
|
1367
1367
|
border-radius: 6px;
|
|
1368
1368
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
1369
1369
|
}
|
|
1370
1370
|
.p-multiselect-panel .p-multiselect-header {
|
|
1371
1371
|
padding: 0.75rem 1.25rem;
|
|
1372
|
-
border-bottom: 1px solid #
|
|
1373
|
-
color: #
|
|
1374
|
-
background: #
|
|
1372
|
+
border-bottom: 1px solid #e5e7eb;
|
|
1373
|
+
color: #374151;
|
|
1374
|
+
background: #f9fafb;
|
|
1375
1375
|
margin: 0;
|
|
1376
1376
|
border-top-right-radius: 6px;
|
|
1377
1377
|
border-top-left-radius: 6px;
|
|
@@ -1384,21 +1384,21 @@
|
|
|
1384
1384
|
}
|
|
1385
1385
|
.p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter-icon {
|
|
1386
1386
|
right: 0.75rem;
|
|
1387
|
-
color: #
|
|
1387
|
+
color: #6b7280;
|
|
1388
1388
|
}
|
|
1389
1389
|
.p-multiselect-panel .p-multiselect-header .p-multiselect-close {
|
|
1390
1390
|
width: 2rem;
|
|
1391
1391
|
height: 2rem;
|
|
1392
|
-
color: #
|
|
1392
|
+
color: #6b7280;
|
|
1393
1393
|
border: 0 none;
|
|
1394
1394
|
background: transparent;
|
|
1395
1395
|
border-radius: 50%;
|
|
1396
1396
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
1397
1397
|
}
|
|
1398
1398
|
.p-multiselect-panel .p-multiselect-header .p-multiselect-close:enabled:hover {
|
|
1399
|
-
color: #
|
|
1399
|
+
color: #374151;
|
|
1400
1400
|
border-color: transparent;
|
|
1401
|
-
background: #
|
|
1401
|
+
background: #f3f4f6;
|
|
1402
1402
|
}
|
|
1403
1403
|
.p-multiselect-panel .p-multiselect-header .p-multiselect-close:focus-visible {
|
|
1404
1404
|
outline: 0 none;
|
|
@@ -1412,7 +1412,7 @@
|
|
|
1412
1412
|
margin: 0;
|
|
1413
1413
|
padding: 0.75rem 1.25rem;
|
|
1414
1414
|
border: 0 none;
|
|
1415
|
-
color: #
|
|
1415
|
+
color: #4b5563;
|
|
1416
1416
|
background: transparent;
|
|
1417
1417
|
transition: box-shadow 0.2s;
|
|
1418
1418
|
border-radius: 0;
|
|
@@ -1422,8 +1422,8 @@
|
|
|
1422
1422
|
background: #F5F3FF;
|
|
1423
1423
|
}
|
|
1424
1424
|
.p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover {
|
|
1425
|
-
color: #
|
|
1426
|
-
background: #
|
|
1425
|
+
color: #4b5563;
|
|
1426
|
+
background: #f3f4f6;
|
|
1427
1427
|
}
|
|
1428
1428
|
.p-multiselect-panel .p-multiselect-items .p-multiselect-item:focus {
|
|
1429
1429
|
outline: 0 none;
|
|
@@ -1436,21 +1436,21 @@
|
|
|
1436
1436
|
.p-multiselect-panel .p-multiselect-items .p-multiselect-item-group {
|
|
1437
1437
|
margin: 0;
|
|
1438
1438
|
padding: 0.75rem 1.25rem;
|
|
1439
|
-
color: #
|
|
1439
|
+
color: #374151;
|
|
1440
1440
|
background: #ffffff;
|
|
1441
1441
|
font-weight: 700;
|
|
1442
1442
|
}
|
|
1443
1443
|
.p-multiselect-panel .p-multiselect-items .p-multiselect-empty-message {
|
|
1444
1444
|
padding: 0.75rem 1.25rem;
|
|
1445
|
-
color: #
|
|
1445
|
+
color: #4b5563;
|
|
1446
1446
|
background: transparent;
|
|
1447
1447
|
}
|
|
1448
1448
|
|
|
1449
1449
|
.p-input-filled .p-multiselect {
|
|
1450
|
-
background: #
|
|
1450
|
+
background: #f3f4f6;
|
|
1451
1451
|
}
|
|
1452
1452
|
.p-input-filled .p-multiselect:not(.p-disabled):hover {
|
|
1453
|
-
background-color: #
|
|
1453
|
+
background-color: #f3f4f6;
|
|
1454
1454
|
}
|
|
1455
1455
|
.p-input-filled .p-multiselect:not(.p-disabled).p-focus {
|
|
1456
1456
|
background-color: #ffffff;
|
|
@@ -1463,14 +1463,14 @@
|
|
|
1463
1463
|
.p-password-panel {
|
|
1464
1464
|
padding: 1.25rem;
|
|
1465
1465
|
background: #ffffff;
|
|
1466
|
-
color: #
|
|
1466
|
+
color: #4b5563;
|
|
1467
1467
|
border: 0 none;
|
|
1468
1468
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
1469
1469
|
border-radius: 6px;
|
|
1470
1470
|
}
|
|
1471
1471
|
.p-password-panel .p-password-meter {
|
|
1472
1472
|
margin-bottom: 0.5rem;
|
|
1473
|
-
background: #
|
|
1473
|
+
background: #e5e7eb;
|
|
1474
1474
|
}
|
|
1475
1475
|
.p-password-panel .p-password-meter .p-password-strength.weak {
|
|
1476
1476
|
background: #ea5455;
|
|
@@ -1487,11 +1487,11 @@
|
|
|
1487
1487
|
height: 22px;
|
|
1488
1488
|
}
|
|
1489
1489
|
.p-radiobutton .p-radiobutton-box {
|
|
1490
|
-
border: 2px solid #
|
|
1490
|
+
border: 2px solid #d1d5db;
|
|
1491
1491
|
background: #ffffff;
|
|
1492
1492
|
width: 22px;
|
|
1493
1493
|
height: 22px;
|
|
1494
|
-
color: #
|
|
1494
|
+
color: #4b5563;
|
|
1495
1495
|
border-radius: 50%;
|
|
1496
1496
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
1497
1497
|
}
|
|
@@ -1527,10 +1527,10 @@
|
|
|
1527
1527
|
}
|
|
1528
1528
|
|
|
1529
1529
|
.p-input-filled .p-radiobutton .p-radiobutton-box {
|
|
1530
|
-
background-color: #
|
|
1530
|
+
background-color: #f3f4f6;
|
|
1531
1531
|
}
|
|
1532
1532
|
.p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover {
|
|
1533
|
-
background-color: #
|
|
1533
|
+
background-color: #f3f4f6;
|
|
1534
1534
|
}
|
|
1535
1535
|
.p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight {
|
|
1536
1536
|
background: #8B5CF6;
|
|
@@ -1543,7 +1543,7 @@
|
|
|
1543
1543
|
gap: 0.5rem;
|
|
1544
1544
|
}
|
|
1545
1545
|
.p-rating .p-rating-item .p-rating-icon {
|
|
1546
|
-
color: #
|
|
1546
|
+
color: #4b5563;
|
|
1547
1547
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
1548
1548
|
font-size: 1.143rem;
|
|
1549
1549
|
}
|
|
@@ -1571,22 +1571,22 @@
|
|
|
1571
1571
|
|
|
1572
1572
|
.p-selectbutton .p-button {
|
|
1573
1573
|
background: #ffffff;
|
|
1574
|
-
border: 1px solid #
|
|
1575
|
-
color: #
|
|
1574
|
+
border: 1px solid #d1d5db;
|
|
1575
|
+
color: #4b5563;
|
|
1576
1576
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
1577
1577
|
}
|
|
1578
1578
|
.p-selectbutton .p-button .p-button-icon-left,
|
|
1579
1579
|
.p-selectbutton .p-button .p-button-icon-right {
|
|
1580
|
-
color: #
|
|
1580
|
+
color: #6b7280;
|
|
1581
1581
|
}
|
|
1582
1582
|
.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover {
|
|
1583
|
-
background: #
|
|
1584
|
-
border-color: #
|
|
1585
|
-
color: #
|
|
1583
|
+
background: #f3f4f6;
|
|
1584
|
+
border-color: #d1d5db;
|
|
1585
|
+
color: #4b5563;
|
|
1586
1586
|
}
|
|
1587
1587
|
.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left,
|
|
1588
1588
|
.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right {
|
|
1589
|
-
color: #
|
|
1589
|
+
color: #374151;
|
|
1590
1590
|
}
|
|
1591
1591
|
.p-selectbutton .p-button.p-highlight {
|
|
1592
1592
|
background: #8B5CF6;
|
|
@@ -1611,7 +1611,7 @@
|
|
|
1611
1611
|
}
|
|
1612
1612
|
|
|
1613
1613
|
.p-slider {
|
|
1614
|
-
background: #
|
|
1614
|
+
background: #e5e7eb;
|
|
1615
1615
|
border: 0 none;
|
|
1616
1616
|
border-radius: 6px;
|
|
1617
1617
|
}
|
|
@@ -1652,7 +1652,7 @@
|
|
|
1652
1652
|
|
|
1653
1653
|
.p-treeselect {
|
|
1654
1654
|
background: #ffffff;
|
|
1655
|
-
border: 1px solid #
|
|
1655
|
+
border: 1px solid #d1d5db;
|
|
1656
1656
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
1657
1657
|
border-radius: 6px;
|
|
1658
1658
|
}
|
|
@@ -1665,27 +1665,34 @@
|
|
|
1665
1665
|
box-shadow: 0 0 0 0.2rem #DDD6FE;
|
|
1666
1666
|
border-color: #8B5CF6;
|
|
1667
1667
|
}
|
|
1668
|
+
.p-treeselect.p-treeselect-clearable .p-treeselect-label {
|
|
1669
|
+
padding-right: 1.75rem;
|
|
1670
|
+
}
|
|
1668
1671
|
.p-treeselect .p-treeselect-label {
|
|
1669
1672
|
padding: 0.75rem 0.75rem;
|
|
1670
1673
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
1671
1674
|
}
|
|
1672
1675
|
.p-treeselect .p-treeselect-label.p-placeholder {
|
|
1673
|
-
color: #
|
|
1676
|
+
color: #6b7280;
|
|
1674
1677
|
}
|
|
1675
1678
|
.p-treeselect.p-treeselect-chip .p-treeselect-token {
|
|
1676
1679
|
padding: 0.375rem 0.75rem;
|
|
1677
1680
|
margin-right: 0.5rem;
|
|
1678
|
-
background: #
|
|
1679
|
-
color: #
|
|
1681
|
+
background: #e5e7eb;
|
|
1682
|
+
color: #4b5563;
|
|
1680
1683
|
border-radius: 16px;
|
|
1681
1684
|
}
|
|
1682
1685
|
.p-treeselect .p-treeselect-trigger {
|
|
1683
1686
|
background: transparent;
|
|
1684
|
-
color: #
|
|
1687
|
+
color: #6b7280;
|
|
1685
1688
|
width: 3rem;
|
|
1686
1689
|
border-top-right-radius: 6px;
|
|
1687
1690
|
border-bottom-right-radius: 6px;
|
|
1688
1691
|
}
|
|
1692
|
+
.p-treeselect .p-treeselect-clear-icon {
|
|
1693
|
+
color: #6b7280;
|
|
1694
|
+
right: 3rem;
|
|
1695
|
+
}
|
|
1689
1696
|
.p-treeselect.p-invalid.p-component {
|
|
1690
1697
|
border-color: #e24c4c;
|
|
1691
1698
|
}
|
|
@@ -1696,16 +1703,16 @@
|
|
|
1696
1703
|
|
|
1697
1704
|
.p-treeselect-panel {
|
|
1698
1705
|
background: #ffffff;
|
|
1699
|
-
color: #
|
|
1706
|
+
color: #4b5563;
|
|
1700
1707
|
border: 0 none;
|
|
1701
1708
|
border-radius: 6px;
|
|
1702
1709
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
1703
1710
|
}
|
|
1704
1711
|
.p-treeselect-panel .p-treeselect-header {
|
|
1705
1712
|
padding: 0.75rem 1.25rem;
|
|
1706
|
-
border-bottom: 1px solid #
|
|
1707
|
-
color: #
|
|
1708
|
-
background: #
|
|
1713
|
+
border-bottom: 1px solid #e5e7eb;
|
|
1714
|
+
color: #374151;
|
|
1715
|
+
background: #f9fafb;
|
|
1709
1716
|
margin: 0;
|
|
1710
1717
|
border-top-right-radius: 6px;
|
|
1711
1718
|
border-top-left-radius: 6px;
|
|
@@ -1718,7 +1725,7 @@
|
|
|
1718
1725
|
}
|
|
1719
1726
|
.p-treeselect-panel .p-treeselect-header .p-treeselect-filter-container .p-treeselect-filter-icon {
|
|
1720
1727
|
right: 0.75rem;
|
|
1721
|
-
color: #
|
|
1728
|
+
color: #6b7280;
|
|
1722
1729
|
}
|
|
1723
1730
|
.p-treeselect-panel .p-treeselect-header .p-treeselect-filter-container.p-treeselect-clearable-filter .p-treeselect-filter {
|
|
1724
1731
|
padding-right: 3.5rem;
|
|
@@ -1729,16 +1736,16 @@
|
|
|
1729
1736
|
.p-treeselect-panel .p-treeselect-header .p-treeselect-close {
|
|
1730
1737
|
width: 2rem;
|
|
1731
1738
|
height: 2rem;
|
|
1732
|
-
color: #
|
|
1739
|
+
color: #6b7280;
|
|
1733
1740
|
border: 0 none;
|
|
1734
1741
|
background: transparent;
|
|
1735
1742
|
border-radius: 50%;
|
|
1736
1743
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
1737
1744
|
}
|
|
1738
1745
|
.p-treeselect-panel .p-treeselect-header .p-treeselect-close:enabled:hover {
|
|
1739
|
-
color: #
|
|
1746
|
+
color: #374151;
|
|
1740
1747
|
border-color: transparent;
|
|
1741
|
-
background: #
|
|
1748
|
+
background: #f3f4f6;
|
|
1742
1749
|
}
|
|
1743
1750
|
.p-treeselect-panel .p-treeselect-header .p-treeselect-close:focus-visible {
|
|
1744
1751
|
outline: 0 none;
|
|
@@ -1750,15 +1757,15 @@
|
|
|
1750
1757
|
}
|
|
1751
1758
|
.p-treeselect-panel .p-treeselect-items-wrapper .p-treeselect-empty-message {
|
|
1752
1759
|
padding: 0.75rem 1.25rem;
|
|
1753
|
-
color: #
|
|
1760
|
+
color: #4b5563;
|
|
1754
1761
|
background: transparent;
|
|
1755
1762
|
}
|
|
1756
1763
|
|
|
1757
1764
|
.p-input-filled .p-treeselect {
|
|
1758
|
-
background: #
|
|
1765
|
+
background: #f3f4f6;
|
|
1759
1766
|
}
|
|
1760
1767
|
.p-input-filled .p-treeselect:not(.p-disabled):hover {
|
|
1761
|
-
background-color: #
|
|
1768
|
+
background-color: #f3f4f6;
|
|
1762
1769
|
}
|
|
1763
1770
|
.p-input-filled .p-treeselect:not(.p-disabled).p-focus {
|
|
1764
1771
|
background-color: #ffffff;
|
|
@@ -1766,22 +1773,22 @@
|
|
|
1766
1773
|
|
|
1767
1774
|
.p-togglebutton.p-button {
|
|
1768
1775
|
background: #ffffff;
|
|
1769
|
-
border: 1px solid #
|
|
1770
|
-
color: #
|
|
1776
|
+
border: 1px solid #d1d5db;
|
|
1777
|
+
color: #4b5563;
|
|
1771
1778
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
1772
1779
|
}
|
|
1773
1780
|
.p-togglebutton.p-button .p-button-icon-left,
|
|
1774
1781
|
.p-togglebutton.p-button .p-button-icon-right {
|
|
1775
|
-
color: #
|
|
1782
|
+
color: #6b7280;
|
|
1776
1783
|
}
|
|
1777
1784
|
.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover {
|
|
1778
|
-
background: #
|
|
1779
|
-
border-color: #
|
|
1780
|
-
color: #
|
|
1785
|
+
background: #f3f4f6;
|
|
1786
|
+
border-color: #d1d5db;
|
|
1787
|
+
color: #4b5563;
|
|
1781
1788
|
}
|
|
1782
1789
|
.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left,
|
|
1783
1790
|
.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right {
|
|
1784
|
-
color: #
|
|
1791
|
+
color: #374151;
|
|
1785
1792
|
}
|
|
1786
1793
|
.p-togglebutton.p-button.p-highlight {
|
|
1787
1794
|
background: #8B5CF6;
|
|
@@ -1814,12 +1821,12 @@
|
|
|
1814
1821
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
1815
1822
|
border-radius: 6px;
|
|
1816
1823
|
}
|
|
1817
|
-
.p-button:
|
|
1824
|
+
.p-button:not(:disabled):hover {
|
|
1818
1825
|
background: #7C3AED;
|
|
1819
1826
|
color: #ffffff;
|
|
1820
1827
|
border-color: #7C3AED;
|
|
1821
1828
|
}
|
|
1822
|
-
.p-button:
|
|
1829
|
+
.p-button:not(:disabled):active {
|
|
1823
1830
|
background: #6D28D9;
|
|
1824
1831
|
color: #ffffff;
|
|
1825
1832
|
border-color: #6D28D9;
|
|
@@ -1829,53 +1836,53 @@
|
|
|
1829
1836
|
color: #8B5CF6;
|
|
1830
1837
|
border: 1px solid;
|
|
1831
1838
|
}
|
|
1832
|
-
.p-button.p-button-outlined:
|
|
1839
|
+
.p-button.p-button-outlined:not(:disabled):hover {
|
|
1833
1840
|
background: rgba(139, 92, 246, 0.04);
|
|
1834
1841
|
color: #8B5CF6;
|
|
1835
1842
|
border: 1px solid;
|
|
1836
1843
|
}
|
|
1837
|
-
.p-button.p-button-outlined:
|
|
1844
|
+
.p-button.p-button-outlined:not(:disabled):active {
|
|
1838
1845
|
background: rgba(139, 92, 246, 0.16);
|
|
1839
1846
|
color: #8B5CF6;
|
|
1840
1847
|
border: 1px solid;
|
|
1841
1848
|
}
|
|
1842
1849
|
.p-button.p-button-outlined.p-button-plain {
|
|
1843
|
-
color: #
|
|
1844
|
-
border-color: #
|
|
1850
|
+
color: #6b7280;
|
|
1851
|
+
border-color: #6b7280;
|
|
1845
1852
|
}
|
|
1846
|
-
.p-button.p-button-outlined.p-button-plain:
|
|
1847
|
-
background: #
|
|
1848
|
-
color: #
|
|
1853
|
+
.p-button.p-button-outlined.p-button-plain:not(:disabled):hover {
|
|
1854
|
+
background: #f3f4f6;
|
|
1855
|
+
color: #6b7280;
|
|
1849
1856
|
}
|
|
1850
|
-
.p-button.p-button-outlined.p-button-plain:
|
|
1851
|
-
background: #
|
|
1852
|
-
color: #
|
|
1857
|
+
.p-button.p-button-outlined.p-button-plain:not(:disabled):active {
|
|
1858
|
+
background: #e5e7eb;
|
|
1859
|
+
color: #6b7280;
|
|
1853
1860
|
}
|
|
1854
1861
|
.p-button.p-button-text {
|
|
1855
1862
|
background-color: transparent;
|
|
1856
1863
|
color: #8B5CF6;
|
|
1857
1864
|
border-color: transparent;
|
|
1858
1865
|
}
|
|
1859
|
-
.p-button.p-button-text:
|
|
1866
|
+
.p-button.p-button-text:not(:disabled):hover {
|
|
1860
1867
|
background: rgba(139, 92, 246, 0.04);
|
|
1861
1868
|
color: #8B5CF6;
|
|
1862
1869
|
border-color: transparent;
|
|
1863
1870
|
}
|
|
1864
|
-
.p-button.p-button-text:
|
|
1871
|
+
.p-button.p-button-text:not(:disabled):active {
|
|
1865
1872
|
background: rgba(139, 92, 246, 0.16);
|
|
1866
1873
|
color: #8B5CF6;
|
|
1867
1874
|
border-color: transparent;
|
|
1868
1875
|
}
|
|
1869
1876
|
.p-button.p-button-text.p-button-plain {
|
|
1870
|
-
color: #
|
|
1877
|
+
color: #6b7280;
|
|
1871
1878
|
}
|
|
1872
|
-
.p-button.p-button-text.p-button-plain:
|
|
1873
|
-
background: #
|
|
1874
|
-
color: #
|
|
1879
|
+
.p-button.p-button-text.p-button-plain:not(:disabled):hover {
|
|
1880
|
+
background: #f3f4f6;
|
|
1881
|
+
color: #6b7280;
|
|
1875
1882
|
}
|
|
1876
|
-
.p-button.p-button-text.p-button-plain:
|
|
1877
|
-
background: #
|
|
1878
|
-
color: #
|
|
1883
|
+
.p-button.p-button-text.p-button-plain:not(:disabled):active {
|
|
1884
|
+
background: #e5e7eb;
|
|
1885
|
+
color: #6b7280;
|
|
1879
1886
|
}
|
|
1880
1887
|
.p-button:focus {
|
|
1881
1888
|
outline: 0 none;
|
|
@@ -1971,15 +1978,15 @@
|
|
|
1971
1978
|
background: #64748B;
|
|
1972
1979
|
border: 1px solid #64748B;
|
|
1973
1980
|
}
|
|
1974
|
-
.p-button.p-button-secondary:
|
|
1981
|
+
.p-button.p-button-secondary:not(:disabled):hover, .p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover, .p-fileupload-choose.p-button-secondary:not(:disabled):hover {
|
|
1975
1982
|
background: #475569;
|
|
1976
1983
|
color: #ffffff;
|
|
1977
1984
|
border-color: #475569;
|
|
1978
1985
|
}
|
|
1979
|
-
.p-button.p-button-secondary:
|
|
1986
|
+
.p-button.p-button-secondary:not(:disabled):focus, .p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus, .p-fileupload-choose.p-button-secondary:not(:disabled):focus {
|
|
1980
1987
|
box-shadow: 0 0 0 0.2rem #E2E8F0;
|
|
1981
1988
|
}
|
|
1982
|
-
.p-button.p-button-secondary:
|
|
1989
|
+
.p-button.p-button-secondary:not(:disabled):active, .p-buttonset.p-button-secondary > .p-button:not(:disabled):active, .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active, .p-fileupload-choose.p-button-secondary:not(:disabled):active {
|
|
1983
1990
|
background: #334155;
|
|
1984
1991
|
color: #ffffff;
|
|
1985
1992
|
border-color: #334155;
|
|
@@ -1989,12 +1996,12 @@
|
|
|
1989
1996
|
color: #64748B;
|
|
1990
1997
|
border: 1px solid;
|
|
1991
1998
|
}
|
|
1992
|
-
.p-button.p-button-secondary.p-button-outlined:
|
|
1999
|
+
.p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, .p-fileupload-choose.p-button-secondary.p-button-outlined:not(:disabled):hover {
|
|
1993
2000
|
background: rgba(100, 116, 139, 0.04);
|
|
1994
2001
|
color: #64748B;
|
|
1995
2002
|
border: 1px solid;
|
|
1996
2003
|
}
|
|
1997
|
-
.p-button.p-button-secondary.p-button-outlined:
|
|
2004
|
+
.p-button.p-button-secondary.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, .p-fileupload-choose.p-button-secondary.p-button-outlined:not(:disabled):active {
|
|
1998
2005
|
background: rgba(100, 116, 139, 0.16);
|
|
1999
2006
|
color: #64748B;
|
|
2000
2007
|
border: 1px solid;
|
|
@@ -2004,12 +2011,12 @@
|
|
|
2004
2011
|
color: #64748B;
|
|
2005
2012
|
border-color: transparent;
|
|
2006
2013
|
}
|
|
2007
|
-
.p-button.p-button-secondary.p-button-text:
|
|
2014
|
+
.p-button.p-button-secondary.p-button-text:not(:disabled):hover, .p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, .p-fileupload-choose.p-button-secondary.p-button-text:not(:disabled):hover {
|
|
2008
2015
|
background: rgba(100, 116, 139, 0.04);
|
|
2009
2016
|
border-color: transparent;
|
|
2010
2017
|
color: #64748B;
|
|
2011
2018
|
}
|
|
2012
|
-
.p-button.p-button-secondary.p-button-text:
|
|
2019
|
+
.p-button.p-button-secondary.p-button-text:not(:disabled):active, .p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active, .p-fileupload-choose.p-button-secondary.p-button-text:not(:disabled):active {
|
|
2013
2020
|
background: rgba(100, 116, 139, 0.16);
|
|
2014
2021
|
border-color: transparent;
|
|
2015
2022
|
color: #64748B;
|
|
@@ -2017,51 +2024,51 @@
|
|
|
2017
2024
|
|
|
2018
2025
|
.p-button.p-button-info, .p-buttonset.p-button-info > .p-button, .p-splitbutton.p-button-info > .p-button, .p-fileupload-choose.p-button-info {
|
|
2019
2026
|
color: #ffffff;
|
|
2020
|
-
background: #
|
|
2021
|
-
border: 1px solid #
|
|
2027
|
+
background: #0ea5e9;
|
|
2028
|
+
border: 1px solid #0ea5e9;
|
|
2022
2029
|
}
|
|
2023
|
-
.p-button.p-button-info:
|
|
2024
|
-
background: #
|
|
2030
|
+
.p-button.p-button-info:not(:disabled):hover, .p-buttonset.p-button-info > .p-button:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button:not(:disabled):hover, .p-fileupload-choose.p-button-info:not(:disabled):hover {
|
|
2031
|
+
background: #0284c7;
|
|
2025
2032
|
color: #ffffff;
|
|
2026
|
-
border-color: #
|
|
2033
|
+
border-color: #0284c7;
|
|
2027
2034
|
}
|
|
2028
|
-
.p-button.p-button-info:
|
|
2035
|
+
.p-button.p-button-info:not(:disabled):focus, .p-buttonset.p-button-info > .p-button:not(:disabled):focus, .p-splitbutton.p-button-info > .p-button:not(:disabled):focus, .p-fileupload-choose.p-button-info:not(:disabled):focus {
|
|
2029
2036
|
box-shadow: 0 0 0 0.2rem #BFDBFE;
|
|
2030
2037
|
}
|
|
2031
|
-
.p-button.p-button-info:
|
|
2032
|
-
background: #
|
|
2038
|
+
.p-button.p-button-info:not(:disabled):active, .p-buttonset.p-button-info > .p-button:not(:disabled):active, .p-splitbutton.p-button-info > .p-button:not(:disabled):active, .p-fileupload-choose.p-button-info:not(:disabled):active {
|
|
2039
|
+
background: #0369a1;
|
|
2033
2040
|
color: #ffffff;
|
|
2034
|
-
border-color: #
|
|
2041
|
+
border-color: #0369a1;
|
|
2035
2042
|
}
|
|
2036
2043
|
.p-button.p-button-info.p-button-outlined, .p-buttonset.p-button-info > .p-button.p-button-outlined, .p-splitbutton.p-button-info > .p-button.p-button-outlined, .p-fileupload-choose.p-button-info.p-button-outlined {
|
|
2037
2044
|
background-color: transparent;
|
|
2038
|
-
color: #
|
|
2045
|
+
color: #0ea5e9;
|
|
2039
2046
|
border: 1px solid;
|
|
2040
2047
|
}
|
|
2041
|
-
.p-button.p-button-info.p-button-outlined:
|
|
2042
|
-
background: rgba(
|
|
2043
|
-
color: #
|
|
2048
|
+
.p-button.p-button-info.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, .p-fileupload-choose.p-button-info.p-button-outlined:not(:disabled):hover {
|
|
2049
|
+
background: rgba(14, 165, 233, 0.04);
|
|
2050
|
+
color: #0ea5e9;
|
|
2044
2051
|
border: 1px solid;
|
|
2045
2052
|
}
|
|
2046
|
-
.p-button.p-button-info.p-button-outlined:
|
|
2047
|
-
background: rgba(
|
|
2048
|
-
color: #
|
|
2053
|
+
.p-button.p-button-info.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active, .p-fileupload-choose.p-button-info.p-button-outlined:not(:disabled):active {
|
|
2054
|
+
background: rgba(14, 165, 233, 0.16);
|
|
2055
|
+
color: #0ea5e9;
|
|
2049
2056
|
border: 1px solid;
|
|
2050
2057
|
}
|
|
2051
2058
|
.p-button.p-button-info.p-button-text, .p-buttonset.p-button-info > .p-button.p-button-text, .p-splitbutton.p-button-info > .p-button.p-button-text, .p-fileupload-choose.p-button-info.p-button-text {
|
|
2052
2059
|
background-color: transparent;
|
|
2053
|
-
color: #
|
|
2060
|
+
color: #0ea5e9;
|
|
2054
2061
|
border-color: transparent;
|
|
2055
2062
|
}
|
|
2056
|
-
.p-button.p-button-info.p-button-text:
|
|
2057
|
-
background: rgba(
|
|
2063
|
+
.p-button.p-button-info.p-button-text:not(:disabled):hover, .p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover, .p-fileupload-choose.p-button-info.p-button-text:not(:disabled):hover {
|
|
2064
|
+
background: rgba(14, 165, 233, 0.04);
|
|
2058
2065
|
border-color: transparent;
|
|
2059
|
-
color: #
|
|
2066
|
+
color: #0ea5e9;
|
|
2060
2067
|
}
|
|
2061
|
-
.p-button.p-button-info.p-button-text:
|
|
2062
|
-
background: rgba(
|
|
2068
|
+
.p-button.p-button-info.p-button-text:not(:disabled):active, .p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active, .p-fileupload-choose.p-button-info.p-button-text:not(:disabled):active {
|
|
2069
|
+
background: rgba(14, 165, 233, 0.16);
|
|
2063
2070
|
border-color: transparent;
|
|
2064
|
-
color: #
|
|
2071
|
+
color: #0ea5e9;
|
|
2065
2072
|
}
|
|
2066
2073
|
|
|
2067
2074
|
.p-button.p-button-success, .p-buttonset.p-button-success > .p-button, .p-splitbutton.p-button-success > .p-button, .p-fileupload-choose.p-button-success {
|
|
@@ -2069,15 +2076,15 @@
|
|
|
2069
2076
|
background: #22C55E;
|
|
2070
2077
|
border: 1px solid #22C55E;
|
|
2071
2078
|
}
|
|
2072
|
-
.p-button.p-button-success:
|
|
2079
|
+
.p-button.p-button-success:not(:disabled):hover, .p-buttonset.p-button-success > .p-button:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button:not(:disabled):hover, .p-fileupload-choose.p-button-success:not(:disabled):hover {
|
|
2073
2080
|
background: #16A34A;
|
|
2074
2081
|
color: #ffffff;
|
|
2075
2082
|
border-color: #16A34A;
|
|
2076
2083
|
}
|
|
2077
|
-
.p-button.p-button-success:
|
|
2084
|
+
.p-button.p-button-success:not(:disabled):focus, .p-buttonset.p-button-success > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success > .p-button:not(:disabled):focus, .p-fileupload-choose.p-button-success:not(:disabled):focus {
|
|
2078
2085
|
box-shadow: 0 0 0 0.2rem #BBF7D0;
|
|
2079
2086
|
}
|
|
2080
|
-
.p-button.p-button-success:
|
|
2087
|
+
.p-button.p-button-success:not(:disabled):active, .p-buttonset.p-button-success > .p-button:not(:disabled):active, .p-splitbutton.p-button-success > .p-button:not(:disabled):active, .p-fileupload-choose.p-button-success:not(:disabled):active {
|
|
2081
2088
|
background: #15803D;
|
|
2082
2089
|
color: #ffffff;
|
|
2083
2090
|
border-color: #15803D;
|
|
@@ -2087,12 +2094,12 @@
|
|
|
2087
2094
|
color: #22C55E;
|
|
2088
2095
|
border: 1px solid;
|
|
2089
2096
|
}
|
|
2090
|
-
.p-button.p-button-success.p-button-outlined:
|
|
2097
|
+
.p-button.p-button-success.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .p-fileupload-choose.p-button-success.p-button-outlined:not(:disabled):hover {
|
|
2091
2098
|
background: rgba(34, 197, 94, 0.04);
|
|
2092
2099
|
color: #22C55E;
|
|
2093
2100
|
border: 1px solid;
|
|
2094
2101
|
}
|
|
2095
|
-
.p-button.p-button-success.p-button-outlined:
|
|
2102
|
+
.p-button.p-button-success.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .p-fileupload-choose.p-button-success.p-button-outlined:not(:disabled):active {
|
|
2096
2103
|
background: rgba(34, 197, 94, 0.16);
|
|
2097
2104
|
color: #22C55E;
|
|
2098
2105
|
border: 1px solid;
|
|
@@ -2102,12 +2109,12 @@
|
|
|
2102
2109
|
color: #22C55E;
|
|
2103
2110
|
border-color: transparent;
|
|
2104
2111
|
}
|
|
2105
|
-
.p-button.p-button-success.p-button-text:
|
|
2112
|
+
.p-button.p-button-success.p-button-text:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover, .p-fileupload-choose.p-button-success.p-button-text:not(:disabled):hover {
|
|
2106
2113
|
background: rgba(34, 197, 94, 0.04);
|
|
2107
2114
|
border-color: transparent;
|
|
2108
2115
|
color: #22C55E;
|
|
2109
2116
|
}
|
|
2110
|
-
.p-button.p-button-success.p-button-text:
|
|
2117
|
+
.p-button.p-button-success.p-button-text:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active, .p-fileupload-choose.p-button-success.p-button-text:not(:disabled):active {
|
|
2111
2118
|
background: rgba(34, 197, 94, 0.16);
|
|
2112
2119
|
border-color: transparent;
|
|
2113
2120
|
color: #22C55E;
|
|
@@ -2115,51 +2122,51 @@
|
|
|
2115
2122
|
|
|
2116
2123
|
.p-button.p-button-warning, .p-buttonset.p-button-warning > .p-button, .p-splitbutton.p-button-warning > .p-button, .p-fileupload-choose.p-button-warning {
|
|
2117
2124
|
color: #ffffff;
|
|
2118
|
-
background: #
|
|
2119
|
-
border: 1px solid #
|
|
2125
|
+
background: #f97316;
|
|
2126
|
+
border: 1px solid #f97316;
|
|
2120
2127
|
}
|
|
2121
|
-
.p-button.p-button-warning:
|
|
2122
|
-
background: #
|
|
2128
|
+
.p-button.p-button-warning:not(:disabled):hover, .p-buttonset.p-button-warning > .p-button:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover, .p-fileupload-choose.p-button-warning:not(:disabled):hover {
|
|
2129
|
+
background: #ea580c;
|
|
2123
2130
|
color: #ffffff;
|
|
2124
|
-
border-color: #
|
|
2131
|
+
border-color: #ea580c;
|
|
2125
2132
|
}
|
|
2126
|
-
.p-button.p-button-warning:
|
|
2133
|
+
.p-button.p-button-warning:not(:disabled):focus, .p-buttonset.p-button-warning > .p-button:not(:disabled):focus, .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus, .p-fileupload-choose.p-button-warning:not(:disabled):focus {
|
|
2127
2134
|
box-shadow: 0 0 0 0.2rem #FDE68A;
|
|
2128
2135
|
}
|
|
2129
|
-
.p-button.p-button-warning:
|
|
2130
|
-
background: #
|
|
2136
|
+
.p-button.p-button-warning:not(:disabled):active, .p-buttonset.p-button-warning > .p-button:not(:disabled):active, .p-splitbutton.p-button-warning > .p-button:not(:disabled):active, .p-fileupload-choose.p-button-warning:not(:disabled):active {
|
|
2137
|
+
background: #c2410c;
|
|
2131
2138
|
color: #ffffff;
|
|
2132
|
-
border-color: #
|
|
2139
|
+
border-color: #c2410c;
|
|
2133
2140
|
}
|
|
2134
2141
|
.p-button.p-button-warning.p-button-outlined, .p-buttonset.p-button-warning > .p-button.p-button-outlined, .p-splitbutton.p-button-warning > .p-button.p-button-outlined, .p-fileupload-choose.p-button-warning.p-button-outlined {
|
|
2135
2142
|
background-color: transparent;
|
|
2136
|
-
color: #
|
|
2143
|
+
color: #f97316;
|
|
2137
2144
|
border: 1px solid;
|
|
2138
2145
|
}
|
|
2139
|
-
.p-button.p-button-warning.p-button-outlined:
|
|
2140
|
-
background: rgba(
|
|
2141
|
-
color: #
|
|
2146
|
+
.p-button.p-button-warning.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, .p-fileupload-choose.p-button-warning.p-button-outlined:not(:disabled):hover {
|
|
2147
|
+
background: rgba(249, 115, 22, 0.04);
|
|
2148
|
+
color: #f97316;
|
|
2142
2149
|
border: 1px solid;
|
|
2143
2150
|
}
|
|
2144
|
-
.p-button.p-button-warning.p-button-outlined:
|
|
2145
|
-
background: rgba(
|
|
2146
|
-
color: #
|
|
2151
|
+
.p-button.p-button-warning.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, .p-fileupload-choose.p-button-warning.p-button-outlined:not(:disabled):active {
|
|
2152
|
+
background: rgba(249, 115, 22, 0.16);
|
|
2153
|
+
color: #f97316;
|
|
2147
2154
|
border: 1px solid;
|
|
2148
2155
|
}
|
|
2149
2156
|
.p-button.p-button-warning.p-button-text, .p-buttonset.p-button-warning > .p-button.p-button-text, .p-splitbutton.p-button-warning > .p-button.p-button-text, .p-fileupload-choose.p-button-warning.p-button-text {
|
|
2150
2157
|
background-color: transparent;
|
|
2151
|
-
color: #
|
|
2158
|
+
color: #f97316;
|
|
2152
2159
|
border-color: transparent;
|
|
2153
2160
|
}
|
|
2154
|
-
.p-button.p-button-warning.p-button-text:
|
|
2155
|
-
background: rgba(
|
|
2161
|
+
.p-button.p-button-warning.p-button-text:not(:disabled):hover, .p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover, .p-fileupload-choose.p-button-warning.p-button-text:not(:disabled):hover {
|
|
2162
|
+
background: rgba(249, 115, 22, 0.04);
|
|
2156
2163
|
border-color: transparent;
|
|
2157
|
-
color: #
|
|
2164
|
+
color: #f97316;
|
|
2158
2165
|
}
|
|
2159
|
-
.p-button.p-button-warning.p-button-text:
|
|
2160
|
-
background: rgba(
|
|
2166
|
+
.p-button.p-button-warning.p-button-text:not(:disabled):active, .p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active, .p-fileupload-choose.p-button-warning.p-button-text:not(:disabled):active {
|
|
2167
|
+
background: rgba(249, 115, 22, 0.16);
|
|
2161
2168
|
border-color: transparent;
|
|
2162
|
-
color: #
|
|
2169
|
+
color: #f97316;
|
|
2163
2170
|
}
|
|
2164
2171
|
|
|
2165
2172
|
.p-button.p-button-help, .p-buttonset.p-button-help > .p-button, .p-splitbutton.p-button-help > .p-button, .p-fileupload-choose.p-button-help {
|
|
@@ -2167,15 +2174,15 @@
|
|
|
2167
2174
|
background: #A855F7;
|
|
2168
2175
|
border: 1px solid #A855F7;
|
|
2169
2176
|
}
|
|
2170
|
-
.p-button.p-button-help:
|
|
2177
|
+
.p-button.p-button-help:not(:disabled):hover, .p-buttonset.p-button-help > .p-button:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button:not(:disabled):hover, .p-fileupload-choose.p-button-help:not(:disabled):hover {
|
|
2171
2178
|
background: #9333EA;
|
|
2172
2179
|
color: #ffffff;
|
|
2173
2180
|
border-color: #9333EA;
|
|
2174
2181
|
}
|
|
2175
|
-
.p-button.p-button-help:
|
|
2182
|
+
.p-button.p-button-help:not(:disabled):focus, .p-buttonset.p-button-help > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help > .p-button:not(:disabled):focus, .p-fileupload-choose.p-button-help:not(:disabled):focus {
|
|
2176
2183
|
box-shadow: 0 0 0 0.2rem #E9D5FF;
|
|
2177
2184
|
}
|
|
2178
|
-
.p-button.p-button-help:
|
|
2185
|
+
.p-button.p-button-help:not(:disabled):active, .p-buttonset.p-button-help > .p-button:not(:disabled):active, .p-splitbutton.p-button-help > .p-button:not(:disabled):active, .p-fileupload-choose.p-button-help:not(:disabled):active {
|
|
2179
2186
|
background: #7E22CE;
|
|
2180
2187
|
color: #ffffff;
|
|
2181
2188
|
border-color: #7E22CE;
|
|
@@ -2185,12 +2192,12 @@
|
|
|
2185
2192
|
color: #A855F7;
|
|
2186
2193
|
border: 1px solid;
|
|
2187
2194
|
}
|
|
2188
|
-
.p-button.p-button-help.p-button-outlined:
|
|
2195
|
+
.p-button.p-button-help.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .p-fileupload-choose.p-button-help.p-button-outlined:not(:disabled):hover {
|
|
2189
2196
|
background: rgba(168, 85, 247, 0.04);
|
|
2190
2197
|
color: #A855F7;
|
|
2191
2198
|
border: 1px solid;
|
|
2192
2199
|
}
|
|
2193
|
-
.p-button.p-button-help.p-button-outlined:
|
|
2200
|
+
.p-button.p-button-help.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .p-fileupload-choose.p-button-help.p-button-outlined:not(:disabled):active {
|
|
2194
2201
|
background: rgba(168, 85, 247, 0.16);
|
|
2195
2202
|
color: #A855F7;
|
|
2196
2203
|
border: 1px solid;
|
|
@@ -2200,12 +2207,12 @@
|
|
|
2200
2207
|
color: #A855F7;
|
|
2201
2208
|
border-color: transparent;
|
|
2202
2209
|
}
|
|
2203
|
-
.p-button.p-button-help.p-button-text:
|
|
2210
|
+
.p-button.p-button-help.p-button-text:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover, .p-fileupload-choose.p-button-help.p-button-text:not(:disabled):hover {
|
|
2204
2211
|
background: rgba(168, 85, 247, 0.04);
|
|
2205
2212
|
border-color: transparent;
|
|
2206
2213
|
color: #A855F7;
|
|
2207
2214
|
}
|
|
2208
|
-
.p-button.p-button-help.p-button-text:
|
|
2215
|
+
.p-button.p-button-help.p-button-text:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active, .p-fileupload-choose.p-button-help.p-button-text:not(:disabled):active {
|
|
2209
2216
|
background: rgba(168, 85, 247, 0.16);
|
|
2210
2217
|
border-color: transparent;
|
|
2211
2218
|
color: #A855F7;
|
|
@@ -2216,15 +2223,15 @@
|
|
|
2216
2223
|
background: #EF4444;
|
|
2217
2224
|
border: 1px solid #EF4444;
|
|
2218
2225
|
}
|
|
2219
|
-
.p-button.p-button-danger:
|
|
2226
|
+
.p-button.p-button-danger:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover, .p-fileupload-choose.p-button-danger:not(:disabled):hover {
|
|
2220
2227
|
background: #DC2626;
|
|
2221
2228
|
color: #ffffff;
|
|
2222
2229
|
border-color: #DC2626;
|
|
2223
2230
|
}
|
|
2224
|
-
.p-button.p-button-danger:
|
|
2231
|
+
.p-button.p-button-danger:not(:disabled):focus, .p-buttonset.p-button-danger > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus, .p-fileupload-choose.p-button-danger:not(:disabled):focus {
|
|
2225
2232
|
box-shadow: 0 0 0 0.2rem #FECACA;
|
|
2226
2233
|
}
|
|
2227
|
-
.p-button.p-button-danger:
|
|
2234
|
+
.p-button.p-button-danger:not(:disabled):active, .p-buttonset.p-button-danger > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button:not(:disabled):active, .p-fileupload-choose.p-button-danger:not(:disabled):active {
|
|
2228
2235
|
background: #B91C1C;
|
|
2229
2236
|
color: #ffffff;
|
|
2230
2237
|
border-color: #B91C1C;
|
|
@@ -2234,12 +2241,12 @@
|
|
|
2234
2241
|
color: #EF4444;
|
|
2235
2242
|
border: 1px solid;
|
|
2236
2243
|
}
|
|
2237
|
-
.p-button.p-button-danger.p-button-outlined:
|
|
2244
|
+
.p-button.p-button-danger.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .p-fileupload-choose.p-button-danger.p-button-outlined:not(:disabled):hover {
|
|
2238
2245
|
background: rgba(239, 68, 68, 0.04);
|
|
2239
2246
|
color: #EF4444;
|
|
2240
2247
|
border: 1px solid;
|
|
2241
2248
|
}
|
|
2242
|
-
.p-button.p-button-danger.p-button-outlined:
|
|
2249
|
+
.p-button.p-button-danger.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .p-fileupload-choose.p-button-danger.p-button-outlined:not(:disabled):active {
|
|
2243
2250
|
background: rgba(239, 68, 68, 0.16);
|
|
2244
2251
|
color: #EF4444;
|
|
2245
2252
|
border: 1px solid;
|
|
@@ -2249,12 +2256,12 @@
|
|
|
2249
2256
|
color: #EF4444;
|
|
2250
2257
|
border-color: transparent;
|
|
2251
2258
|
}
|
|
2252
|
-
.p-button.p-button-danger.p-button-text:
|
|
2259
|
+
.p-button.p-button-danger.p-button-text:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .p-fileupload-choose.p-button-danger.p-button-text:not(:disabled):hover {
|
|
2253
2260
|
background: rgba(239, 68, 68, 0.04);
|
|
2254
2261
|
border-color: transparent;
|
|
2255
2262
|
color: #EF4444;
|
|
2256
2263
|
}
|
|
2257
|
-
.p-button.p-button-danger.p-button-text:
|
|
2264
|
+
.p-button.p-button-danger.p-button-text:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active, .p-fileupload-choose.p-button-danger.p-button-text:not(:disabled):active {
|
|
2258
2265
|
background: rgba(239, 68, 68, 0.16);
|
|
2259
2266
|
border-color: transparent;
|
|
2260
2267
|
color: #EF4444;
|
|
@@ -2265,20 +2272,20 @@
|
|
|
2265
2272
|
background: transparent;
|
|
2266
2273
|
border: transparent;
|
|
2267
2274
|
}
|
|
2268
|
-
.p-button.p-button-link:
|
|
2275
|
+
.p-button.p-button-link:not(:disabled):hover {
|
|
2269
2276
|
background: transparent;
|
|
2270
2277
|
color: #6D28D9;
|
|
2271
2278
|
border-color: transparent;
|
|
2272
2279
|
}
|
|
2273
|
-
.p-button.p-button-link:
|
|
2280
|
+
.p-button.p-button-link:not(:disabled):hover .p-button-label {
|
|
2274
2281
|
text-decoration: underline;
|
|
2275
2282
|
}
|
|
2276
|
-
.p-button.p-button-link:
|
|
2283
|
+
.p-button.p-button-link:not(:disabled):focus {
|
|
2277
2284
|
background: transparent;
|
|
2278
2285
|
box-shadow: 0 0 0 0.2rem #DDD6FE;
|
|
2279
2286
|
border-color: transparent;
|
|
2280
2287
|
}
|
|
2281
|
-
.p-button.p-button-link:
|
|
2288
|
+
.p-button.p-button-link:not(:disabled):active {
|
|
2282
2289
|
background: transparent;
|
|
2283
2290
|
color: #6D28D9;
|
|
2284
2291
|
border-color: transparent;
|
|
@@ -2292,51 +2299,51 @@
|
|
|
2292
2299
|
color: #8B5CF6;
|
|
2293
2300
|
border: 1px solid;
|
|
2294
2301
|
}
|
|
2295
|
-
.p-splitbutton.p-button-outlined > .p-button:
|
|
2302
|
+
.p-splitbutton.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2296
2303
|
background: rgba(139, 92, 246, 0.04);
|
|
2297
2304
|
color: #8B5CF6;
|
|
2298
2305
|
}
|
|
2299
|
-
.p-splitbutton.p-button-outlined > .p-button:
|
|
2306
|
+
.p-splitbutton.p-button-outlined > .p-button:not(:disabled):active {
|
|
2300
2307
|
background: rgba(139, 92, 246, 0.16);
|
|
2301
2308
|
color: #8B5CF6;
|
|
2302
2309
|
}
|
|
2303
2310
|
.p-splitbutton.p-button-outlined.p-button-plain > .p-button {
|
|
2304
|
-
color: #
|
|
2305
|
-
border-color: #
|
|
2311
|
+
color: #6b7280;
|
|
2312
|
+
border-color: #6b7280;
|
|
2306
2313
|
}
|
|
2307
|
-
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:
|
|
2308
|
-
background: #
|
|
2309
|
-
color: #
|
|
2314
|
+
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:not(:disabled):hover {
|
|
2315
|
+
background: #f3f4f6;
|
|
2316
|
+
color: #6b7280;
|
|
2310
2317
|
}
|
|
2311
|
-
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:
|
|
2312
|
-
background: #
|
|
2313
|
-
color: #
|
|
2318
|
+
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:not(:disabled):active {
|
|
2319
|
+
background: #e5e7eb;
|
|
2320
|
+
color: #6b7280;
|
|
2314
2321
|
}
|
|
2315
2322
|
.p-splitbutton.p-button-text > .p-button {
|
|
2316
2323
|
background-color: transparent;
|
|
2317
2324
|
color: #8B5CF6;
|
|
2318
2325
|
border-color: transparent;
|
|
2319
2326
|
}
|
|
2320
|
-
.p-splitbutton.p-button-text > .p-button:
|
|
2327
|
+
.p-splitbutton.p-button-text > .p-button:not(:disabled):hover {
|
|
2321
2328
|
background: rgba(139, 92, 246, 0.04);
|
|
2322
2329
|
color: #8B5CF6;
|
|
2323
2330
|
border-color: transparent;
|
|
2324
2331
|
}
|
|
2325
|
-
.p-splitbutton.p-button-text > .p-button:
|
|
2332
|
+
.p-splitbutton.p-button-text > .p-button:not(:disabled):active {
|
|
2326
2333
|
background: rgba(139, 92, 246, 0.16);
|
|
2327
2334
|
color: #8B5CF6;
|
|
2328
2335
|
border-color: transparent;
|
|
2329
2336
|
}
|
|
2330
2337
|
.p-splitbutton.p-button-text.p-button-plain > .p-button {
|
|
2331
|
-
color: #
|
|
2338
|
+
color: #6b7280;
|
|
2332
2339
|
}
|
|
2333
|
-
.p-splitbutton.p-button-text.p-button-plain > .p-button:
|
|
2334
|
-
background: #
|
|
2335
|
-
color: #
|
|
2340
|
+
.p-splitbutton.p-button-text.p-button-plain > .p-button:not(:disabled):hover {
|
|
2341
|
+
background: #f3f4f6;
|
|
2342
|
+
color: #6b7280;
|
|
2336
2343
|
}
|
|
2337
|
-
.p-splitbutton.p-button-text.p-button-plain > .p-button:
|
|
2338
|
-
background: #
|
|
2339
|
-
color: #
|
|
2344
|
+
.p-splitbutton.p-button-text.p-button-plain > .p-button:not(:disabled):active {
|
|
2345
|
+
background: #e5e7eb;
|
|
2346
|
+
color: #6b7280;
|
|
2340
2347
|
}
|
|
2341
2348
|
.p-splitbutton.p-button-raised {
|
|
2342
2349
|
box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
@@ -2376,11 +2383,11 @@
|
|
|
2376
2383
|
color: #64748B;
|
|
2377
2384
|
border: 1px solid;
|
|
2378
2385
|
}
|
|
2379
|
-
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:
|
|
2386
|
+
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2380
2387
|
background: rgba(100, 116, 139, 0.04);
|
|
2381
2388
|
color: #64748B;
|
|
2382
2389
|
}
|
|
2383
|
-
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:
|
|
2390
|
+
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):active {
|
|
2384
2391
|
background: rgba(100, 116, 139, 0.16);
|
|
2385
2392
|
color: #64748B;
|
|
2386
2393
|
}
|
|
@@ -2389,12 +2396,12 @@
|
|
|
2389
2396
|
color: #64748B;
|
|
2390
2397
|
border-color: transparent;
|
|
2391
2398
|
}
|
|
2392
|
-
.p-splitbutton.p-button-secondary.p-button-text > .p-button:
|
|
2399
|
+
.p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):hover {
|
|
2393
2400
|
background: rgba(100, 116, 139, 0.04);
|
|
2394
2401
|
border-color: transparent;
|
|
2395
2402
|
color: #64748B;
|
|
2396
2403
|
}
|
|
2397
|
-
.p-splitbutton.p-button-secondary.p-button-text > .p-button:
|
|
2404
|
+
.p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):active {
|
|
2398
2405
|
background: rgba(100, 116, 139, 0.16);
|
|
2399
2406
|
border-color: transparent;
|
|
2400
2407
|
color: #64748B;
|
|
@@ -2402,31 +2409,31 @@
|
|
|
2402
2409
|
|
|
2403
2410
|
.p-splitbutton.p-button-info.p-button-outlined > .p-button {
|
|
2404
2411
|
background-color: transparent;
|
|
2405
|
-
color: #
|
|
2412
|
+
color: #0ea5e9;
|
|
2406
2413
|
border: 1px solid;
|
|
2407
2414
|
}
|
|
2408
|
-
.p-splitbutton.p-button-info.p-button-outlined > .p-button:
|
|
2409
|
-
background: rgba(
|
|
2410
|
-
color: #
|
|
2415
|
+
.p-splitbutton.p-button-info.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2416
|
+
background: rgba(14, 165, 233, 0.04);
|
|
2417
|
+
color: #0ea5e9;
|
|
2411
2418
|
}
|
|
2412
|
-
.p-splitbutton.p-button-info.p-button-outlined > .p-button:
|
|
2413
|
-
background: rgba(
|
|
2414
|
-
color: #
|
|
2419
|
+
.p-splitbutton.p-button-info.p-button-outlined > .p-button:not(:disabled):active {
|
|
2420
|
+
background: rgba(14, 165, 233, 0.16);
|
|
2421
|
+
color: #0ea5e9;
|
|
2415
2422
|
}
|
|
2416
2423
|
.p-splitbutton.p-button-info.p-button-text > .p-button {
|
|
2417
2424
|
background-color: transparent;
|
|
2418
|
-
color: #
|
|
2425
|
+
color: #0ea5e9;
|
|
2419
2426
|
border-color: transparent;
|
|
2420
2427
|
}
|
|
2421
|
-
.p-splitbutton.p-button-info.p-button-text > .p-button:
|
|
2422
|
-
background: rgba(
|
|
2428
|
+
.p-splitbutton.p-button-info.p-button-text > .p-button:not(:disabled):hover {
|
|
2429
|
+
background: rgba(14, 165, 233, 0.04);
|
|
2423
2430
|
border-color: transparent;
|
|
2424
|
-
color: #
|
|
2431
|
+
color: #0ea5e9;
|
|
2425
2432
|
}
|
|
2426
|
-
.p-splitbutton.p-button-info.p-button-text > .p-button:
|
|
2427
|
-
background: rgba(
|
|
2433
|
+
.p-splitbutton.p-button-info.p-button-text > .p-button:not(:disabled):active {
|
|
2434
|
+
background: rgba(14, 165, 233, 0.16);
|
|
2428
2435
|
border-color: transparent;
|
|
2429
|
-
color: #
|
|
2436
|
+
color: #0ea5e9;
|
|
2430
2437
|
}
|
|
2431
2438
|
|
|
2432
2439
|
.p-splitbutton.p-button-success.p-button-outlined > .p-button {
|
|
@@ -2434,11 +2441,11 @@
|
|
|
2434
2441
|
color: #22C55E;
|
|
2435
2442
|
border: 1px solid;
|
|
2436
2443
|
}
|
|
2437
|
-
.p-splitbutton.p-button-success.p-button-outlined > .p-button:
|
|
2444
|
+
.p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2438
2445
|
background: rgba(34, 197, 94, 0.04);
|
|
2439
2446
|
color: #22C55E;
|
|
2440
2447
|
}
|
|
2441
|
-
.p-splitbutton.p-button-success.p-button-outlined > .p-button:
|
|
2448
|
+
.p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):active {
|
|
2442
2449
|
background: rgba(34, 197, 94, 0.16);
|
|
2443
2450
|
color: #22C55E;
|
|
2444
2451
|
}
|
|
@@ -2447,12 +2454,12 @@
|
|
|
2447
2454
|
color: #22C55E;
|
|
2448
2455
|
border-color: transparent;
|
|
2449
2456
|
}
|
|
2450
|
-
.p-splitbutton.p-button-success.p-button-text > .p-button:
|
|
2457
|
+
.p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):hover {
|
|
2451
2458
|
background: rgba(34, 197, 94, 0.04);
|
|
2452
2459
|
border-color: transparent;
|
|
2453
2460
|
color: #22C55E;
|
|
2454
2461
|
}
|
|
2455
|
-
.p-splitbutton.p-button-success.p-button-text > .p-button:
|
|
2462
|
+
.p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):active {
|
|
2456
2463
|
background: rgba(34, 197, 94, 0.16);
|
|
2457
2464
|
border-color: transparent;
|
|
2458
2465
|
color: #22C55E;
|
|
@@ -2460,31 +2467,31 @@
|
|
|
2460
2467
|
|
|
2461
2468
|
.p-splitbutton.p-button-warning.p-button-outlined > .p-button {
|
|
2462
2469
|
background-color: transparent;
|
|
2463
|
-
color: #
|
|
2470
|
+
color: #f97316;
|
|
2464
2471
|
border: 1px solid;
|
|
2465
2472
|
}
|
|
2466
|
-
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:
|
|
2467
|
-
background: rgba(
|
|
2468
|
-
color: #
|
|
2473
|
+
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2474
|
+
background: rgba(249, 115, 22, 0.04);
|
|
2475
|
+
color: #f97316;
|
|
2469
2476
|
}
|
|
2470
|
-
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:
|
|
2471
|
-
background: rgba(
|
|
2472
|
-
color: #
|
|
2477
|
+
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):active {
|
|
2478
|
+
background: rgba(249, 115, 22, 0.16);
|
|
2479
|
+
color: #f97316;
|
|
2473
2480
|
}
|
|
2474
2481
|
.p-splitbutton.p-button-warning.p-button-text > .p-button {
|
|
2475
2482
|
background-color: transparent;
|
|
2476
|
-
color: #
|
|
2483
|
+
color: #f97316;
|
|
2477
2484
|
border-color: transparent;
|
|
2478
2485
|
}
|
|
2479
|
-
.p-splitbutton.p-button-warning.p-button-text > .p-button:
|
|
2480
|
-
background: rgba(
|
|
2486
|
+
.p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):hover {
|
|
2487
|
+
background: rgba(249, 115, 22, 0.04);
|
|
2481
2488
|
border-color: transparent;
|
|
2482
|
-
color: #
|
|
2489
|
+
color: #f97316;
|
|
2483
2490
|
}
|
|
2484
|
-
.p-splitbutton.p-button-warning.p-button-text > .p-button:
|
|
2485
|
-
background: rgba(
|
|
2491
|
+
.p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):active {
|
|
2492
|
+
background: rgba(249, 115, 22, 0.16);
|
|
2486
2493
|
border-color: transparent;
|
|
2487
|
-
color: #
|
|
2494
|
+
color: #f97316;
|
|
2488
2495
|
}
|
|
2489
2496
|
|
|
2490
2497
|
.p-splitbutton.p-button-help.p-button-outlined > .p-button {
|
|
@@ -2492,11 +2499,11 @@
|
|
|
2492
2499
|
color: #A855F7;
|
|
2493
2500
|
border: 1px solid;
|
|
2494
2501
|
}
|
|
2495
|
-
.p-splitbutton.p-button-help.p-button-outlined > .p-button:
|
|
2502
|
+
.p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2496
2503
|
background: rgba(168, 85, 247, 0.04);
|
|
2497
2504
|
color: #A855F7;
|
|
2498
2505
|
}
|
|
2499
|
-
.p-splitbutton.p-button-help.p-button-outlined > .p-button:
|
|
2506
|
+
.p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):active {
|
|
2500
2507
|
background: rgba(168, 85, 247, 0.16);
|
|
2501
2508
|
color: #A855F7;
|
|
2502
2509
|
}
|
|
@@ -2505,12 +2512,12 @@
|
|
|
2505
2512
|
color: #A855F7;
|
|
2506
2513
|
border-color: transparent;
|
|
2507
2514
|
}
|
|
2508
|
-
.p-splitbutton.p-button-help.p-button-text > .p-button:
|
|
2515
|
+
.p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):hover {
|
|
2509
2516
|
background: rgba(168, 85, 247, 0.04);
|
|
2510
2517
|
border-color: transparent;
|
|
2511
2518
|
color: #A855F7;
|
|
2512
2519
|
}
|
|
2513
|
-
.p-splitbutton.p-button-help.p-button-text > .p-button:
|
|
2520
|
+
.p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):active {
|
|
2514
2521
|
background: rgba(168, 85, 247, 0.16);
|
|
2515
2522
|
border-color: transparent;
|
|
2516
2523
|
color: #A855F7;
|
|
@@ -2521,11 +2528,11 @@
|
|
|
2521
2528
|
color: #EF4444;
|
|
2522
2529
|
border: 1px solid;
|
|
2523
2530
|
}
|
|
2524
|
-
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:
|
|
2531
|
+
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2525
2532
|
background: rgba(239, 68, 68, 0.04);
|
|
2526
2533
|
color: #EF4444;
|
|
2527
2534
|
}
|
|
2528
|
-
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:
|
|
2535
|
+
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):active {
|
|
2529
2536
|
background: rgba(239, 68, 68, 0.16);
|
|
2530
2537
|
color: #EF4444;
|
|
2531
2538
|
}
|
|
@@ -2534,12 +2541,12 @@
|
|
|
2534
2541
|
color: #EF4444;
|
|
2535
2542
|
border-color: transparent;
|
|
2536
2543
|
}
|
|
2537
|
-
.p-splitbutton.p-button-danger.p-button-text > .p-button:
|
|
2544
|
+
.p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):hover {
|
|
2538
2545
|
background: rgba(239, 68, 68, 0.04);
|
|
2539
2546
|
border-color: transparent;
|
|
2540
2547
|
color: #EF4444;
|
|
2541
2548
|
}
|
|
2542
|
-
.p-splitbutton.p-button-danger.p-button-text > .p-button:
|
|
2549
|
+
.p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):active {
|
|
2543
2550
|
background: rgba(239, 68, 68, 0.16);
|
|
2544
2551
|
border-color: transparent;
|
|
2545
2552
|
color: #EF4444;
|
|
@@ -2560,7 +2567,7 @@
|
|
|
2560
2567
|
.p-speeddial-action {
|
|
2561
2568
|
width: 3rem;
|
|
2562
2569
|
height: 3rem;
|
|
2563
|
-
background: #
|
|
2570
|
+
background: #4b5563;
|
|
2564
2571
|
color: #fff;
|
|
2565
2572
|
}
|
|
2566
2573
|
.p-speeddial-action:hover {
|
|
@@ -2611,13 +2618,14 @@
|
|
|
2611
2618
|
|
|
2612
2619
|
.p-speeddial-mask {
|
|
2613
2620
|
background-color: rgba(0, 0, 0, 0.4);
|
|
2621
|
+
border-radius: 6px;
|
|
2614
2622
|
}
|
|
2615
2623
|
|
|
2616
2624
|
.p-carousel .p-carousel-content .p-carousel-prev,
|
|
2617
2625
|
.p-carousel .p-carousel-content .p-carousel-next {
|
|
2618
2626
|
width: 2rem;
|
|
2619
2627
|
height: 2rem;
|
|
2620
|
-
color: #
|
|
2628
|
+
color: #6b7280;
|
|
2621
2629
|
border: 0 none;
|
|
2622
2630
|
background: transparent;
|
|
2623
2631
|
border-radius: 50%;
|
|
@@ -2626,9 +2634,9 @@
|
|
|
2626
2634
|
}
|
|
2627
2635
|
.p-carousel .p-carousel-content .p-carousel-prev:enabled:hover,
|
|
2628
2636
|
.p-carousel .p-carousel-content .p-carousel-next:enabled:hover {
|
|
2629
|
-
color: #
|
|
2637
|
+
color: #374151;
|
|
2630
2638
|
border-color: transparent;
|
|
2631
|
-
background: #
|
|
2639
|
+
background: #f3f4f6;
|
|
2632
2640
|
}
|
|
2633
2641
|
.p-carousel .p-carousel-content .p-carousel-prev:focus-visible,
|
|
2634
2642
|
.p-carousel .p-carousel-content .p-carousel-next:focus-visible {
|
|
@@ -2644,14 +2652,14 @@
|
|
|
2644
2652
|
margin-bottom: 0.5rem;
|
|
2645
2653
|
}
|
|
2646
2654
|
.p-carousel .p-carousel-indicators .p-carousel-indicator button {
|
|
2647
|
-
background-color: #
|
|
2655
|
+
background-color: #d1d5db;
|
|
2648
2656
|
width: 2rem;
|
|
2649
2657
|
height: 0.5rem;
|
|
2650
2658
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
2651
2659
|
border-radius: 0;
|
|
2652
2660
|
}
|
|
2653
2661
|
.p-carousel .p-carousel-indicators .p-carousel-indicator button:hover {
|
|
2654
|
-
background: #
|
|
2662
|
+
background: #9ca3af;
|
|
2655
2663
|
}
|
|
2656
2664
|
.p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button {
|
|
2657
2665
|
background: #F5F3FF;
|
|
@@ -2667,17 +2675,17 @@
|
|
|
2667
2675
|
border-radius: 0;
|
|
2668
2676
|
}
|
|
2669
2677
|
.p-datatable .p-datatable-header {
|
|
2670
|
-
background: #
|
|
2671
|
-
color: #
|
|
2672
|
-
border: 1px solid #
|
|
2678
|
+
background: #f9fafb;
|
|
2679
|
+
color: #374151;
|
|
2680
|
+
border: 1px solid #e5e7eb;
|
|
2673
2681
|
border-width: 1px 0 1px 0;
|
|
2674
2682
|
padding: 1rem 1rem;
|
|
2675
2683
|
font-weight: 700;
|
|
2676
2684
|
}
|
|
2677
2685
|
.p-datatable .p-datatable-footer {
|
|
2678
|
-
background: #
|
|
2679
|
-
color: #
|
|
2680
|
-
border: 1px solid #
|
|
2686
|
+
background: #f9fafb;
|
|
2687
|
+
color: #374151;
|
|
2688
|
+
border: 1px solid #e5e7eb;
|
|
2681
2689
|
border-width: 0 0 1px 0;
|
|
2682
2690
|
padding: 1rem 1rem;
|
|
2683
2691
|
font-weight: 700;
|
|
@@ -2685,24 +2693,24 @@
|
|
|
2685
2693
|
.p-datatable .p-datatable-thead > tr > th {
|
|
2686
2694
|
text-align: left;
|
|
2687
2695
|
padding: 1rem 1rem;
|
|
2688
|
-
border: 1px solid #
|
|
2696
|
+
border: 1px solid #e5e7eb;
|
|
2689
2697
|
border-width: 0 0 1px 0;
|
|
2690
2698
|
font-weight: 700;
|
|
2691
|
-
color: #
|
|
2692
|
-
background: #
|
|
2699
|
+
color: #374151;
|
|
2700
|
+
background: #f9fafb;
|
|
2693
2701
|
transition: box-shadow 0.2s;
|
|
2694
2702
|
}
|
|
2695
2703
|
.p-datatable .p-datatable-tfoot > tr > td {
|
|
2696
2704
|
text-align: left;
|
|
2697
2705
|
padding: 1rem 1rem;
|
|
2698
|
-
border: 1px solid #
|
|
2706
|
+
border: 1px solid #e5e7eb;
|
|
2699
2707
|
border-width: 0 0 1px 0;
|
|
2700
2708
|
font-weight: 700;
|
|
2701
|
-
color: #
|
|
2702
|
-
background: #
|
|
2709
|
+
color: #374151;
|
|
2710
|
+
background: #f9fafb;
|
|
2703
2711
|
}
|
|
2704
2712
|
.p-datatable .p-sortable-column .p-sortable-column-icon {
|
|
2705
|
-
color: #
|
|
2713
|
+
color: #374151;
|
|
2706
2714
|
margin-left: 0.5rem;
|
|
2707
2715
|
}
|
|
2708
2716
|
.p-datatable .p-sortable-column .p-sortable-column-badge {
|
|
@@ -2715,11 +2723,11 @@
|
|
|
2715
2723
|
margin-left: 0.5rem;
|
|
2716
2724
|
}
|
|
2717
2725
|
.p-datatable .p-sortable-column:not(.p-highlight):not(.p-sortable-disabled):hover {
|
|
2718
|
-
background: #
|
|
2719
|
-
color: #
|
|
2726
|
+
background: #f3f4f6;
|
|
2727
|
+
color: #374151;
|
|
2720
2728
|
}
|
|
2721
2729
|
.p-datatable .p-sortable-column:not(.p-highlight):not(.p-sortable-disabled):hover .p-sortable-column-icon {
|
|
2722
|
-
color: #
|
|
2730
|
+
color: #374151;
|
|
2723
2731
|
}
|
|
2724
2732
|
.p-datatable .p-sortable-column.p-highlight {
|
|
2725
2733
|
background: #F5F3FF;
|
|
@@ -2741,12 +2749,12 @@
|
|
|
2741
2749
|
}
|
|
2742
2750
|
.p-datatable .p-datatable-tbody > tr {
|
|
2743
2751
|
background: #ffffff;
|
|
2744
|
-
color: #
|
|
2752
|
+
color: #4b5563;
|
|
2745
2753
|
transition: box-shadow 0.2s;
|
|
2746
2754
|
}
|
|
2747
2755
|
.p-datatable .p-datatable-tbody > tr > td {
|
|
2748
2756
|
text-align: left;
|
|
2749
|
-
border: 1px solid #
|
|
2757
|
+
border: 1px solid #e5e7eb;
|
|
2750
2758
|
border-width: 0 0 1px 0;
|
|
2751
2759
|
padding: 1rem 1rem;
|
|
2752
2760
|
}
|
|
@@ -2756,7 +2764,7 @@
|
|
|
2756
2764
|
.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel {
|
|
2757
2765
|
width: 2rem;
|
|
2758
2766
|
height: 2rem;
|
|
2759
|
-
color: #
|
|
2767
|
+
color: #6b7280;
|
|
2760
2768
|
border: 0 none;
|
|
2761
2769
|
background: transparent;
|
|
2762
2770
|
border-radius: 50%;
|
|
@@ -2766,9 +2774,9 @@
|
|
|
2766
2774
|
.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover,
|
|
2767
2775
|
.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover,
|
|
2768
2776
|
.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover {
|
|
2769
|
-
color: #
|
|
2777
|
+
color: #374151;
|
|
2770
2778
|
border-color: transparent;
|
|
2771
|
-
background: #
|
|
2779
|
+
background: #f3f4f6;
|
|
2772
2780
|
}
|
|
2773
2781
|
.p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible,
|
|
2774
2782
|
.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible,
|
|
@@ -2792,6 +2800,10 @@
|
|
|
2792
2800
|
background: #F5F3FF;
|
|
2793
2801
|
color: #6D28D9;
|
|
2794
2802
|
}
|
|
2803
|
+
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
|
|
2804
|
+
outline: 0.15rem solid #DDD6FE;
|
|
2805
|
+
outline-offset: -0.15rem;
|
|
2806
|
+
}
|
|
2795
2807
|
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
|
|
2796
2808
|
box-shadow: inset 0 2px 0 0 #F5F3FF;
|
|
2797
2809
|
}
|
|
@@ -2799,36 +2811,36 @@
|
|
|
2799
2811
|
box-shadow: inset 0 -2px 0 0 #F5F3FF;
|
|
2800
2812
|
}
|
|
2801
2813
|
.p-datatable.p-datatable-selectable .p-datatable-tbody > tr.p-selectable-row:not(.p-highlight):not(.p-datatable-emptymessage):hover {
|
|
2802
|
-
background: #
|
|
2803
|
-
color: #
|
|
2814
|
+
background: #f3f4f6;
|
|
2815
|
+
color: #4b5563;
|
|
2804
2816
|
}
|
|
2805
2817
|
.p-datatable.p-datatable-selectable .p-datatable-tbody > tr.p-selectable-row:focus-visible {
|
|
2806
2818
|
outline: 0.15rem solid #DDD6FE;
|
|
2807
2819
|
outline-offset: -0.15rem;
|
|
2808
2820
|
}
|
|
2809
2821
|
.p-datatable.p-datatable-selectable-cell .p-datatable-tbody > tr.p-selectable-row > td.p-selectable-cell:not(.p-highlight):hover {
|
|
2810
|
-
background: #
|
|
2811
|
-
color: #
|
|
2822
|
+
background: #f3f4f6;
|
|
2823
|
+
color: #4b5563;
|
|
2812
2824
|
}
|
|
2813
2825
|
.p-datatable.p-datatable-selectable-cell .p-datatable-tbody > tr.p-selectable-row > td.p-selectable-cell:focus-visible {
|
|
2814
2826
|
outline: 0.15rem solid #DDD6FE;
|
|
2815
2827
|
outline-offset: -0.15rem;
|
|
2816
2828
|
}
|
|
2817
2829
|
.p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):not(.p-datatable-emptymessage):hover {
|
|
2818
|
-
background: #
|
|
2819
|
-
color: #
|
|
2830
|
+
background: #f3f4f6;
|
|
2831
|
+
color: #4b5563;
|
|
2820
2832
|
}
|
|
2821
2833
|
.p-datatable .p-column-resizer-helper {
|
|
2822
2834
|
background: #8B5CF6;
|
|
2823
2835
|
}
|
|
2824
2836
|
.p-datatable .p-datatable-scrollable-header,
|
|
2825
2837
|
.p-datatable .p-datatable-scrollable-footer {
|
|
2826
|
-
background: #
|
|
2838
|
+
background: #f9fafb;
|
|
2827
2839
|
}
|
|
2828
2840
|
.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead,
|
|
2829
2841
|
.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-virtualscroller > .p-datatable-table > .p-datatable-thead,
|
|
2830
2842
|
.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-virtualscroller > .p-datatable-table > .p-datatable-tfoot {
|
|
2831
|
-
background-color: #
|
|
2843
|
+
background-color: #f9fafb;
|
|
2832
2844
|
}
|
|
2833
2845
|
.p-datatable .p-datatable-loading-icon {
|
|
2834
2846
|
font-size: 2rem;
|
|
@@ -2892,7 +2904,7 @@
|
|
|
2892
2904
|
border-width: 0 1px 0 1px;
|
|
2893
2905
|
}
|
|
2894
2906
|
.p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd {
|
|
2895
|
-
background: #
|
|
2907
|
+
background: #f8f8fa;
|
|
2896
2908
|
}
|
|
2897
2909
|
.p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd.p-highlight {
|
|
2898
2910
|
background: #F5F3FF;
|
|
@@ -2905,7 +2917,7 @@
|
|
|
2905
2917
|
color: #6D28D9;
|
|
2906
2918
|
}
|
|
2907
2919
|
.p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd + .p-row-expanded {
|
|
2908
|
-
background: #
|
|
2920
|
+
background: #f8f8fa;
|
|
2909
2921
|
}
|
|
2910
2922
|
.p-datatable.p-datatable-sm .p-datatable-header {
|
|
2911
2923
|
padding: 0.5rem 0.5rem;
|
|
@@ -2951,27 +2963,27 @@
|
|
|
2951
2963
|
border-radius: 0;
|
|
2952
2964
|
}
|
|
2953
2965
|
.p-dataview .p-dataview-header {
|
|
2954
|
-
background: #
|
|
2955
|
-
color: #
|
|
2956
|
-
border: 1px solid #
|
|
2966
|
+
background: #f9fafb;
|
|
2967
|
+
color: #374151;
|
|
2968
|
+
border: 1px solid #e5e7eb;
|
|
2957
2969
|
border-width: 1px 0 1px 0;
|
|
2958
2970
|
padding: 1rem 1rem;
|
|
2959
2971
|
font-weight: 700;
|
|
2960
2972
|
}
|
|
2961
2973
|
.p-dataview .p-dataview-content {
|
|
2962
2974
|
background: #ffffff;
|
|
2963
|
-
color: #
|
|
2975
|
+
color: #4b5563;
|
|
2964
2976
|
border: 0 none;
|
|
2965
2977
|
padding: 0;
|
|
2966
2978
|
}
|
|
2967
2979
|
.p-dataview.p-dataview-list .p-dataview-content > .p-grid > div {
|
|
2968
|
-
border: solid #
|
|
2980
|
+
border: solid #e5e7eb;
|
|
2969
2981
|
border-width: 0 0 1px 0;
|
|
2970
2982
|
}
|
|
2971
2983
|
.p-dataview .p-dataview-footer {
|
|
2972
|
-
background: #
|
|
2973
|
-
color: #
|
|
2974
|
-
border: 1px solid #
|
|
2984
|
+
background: #f9fafb;
|
|
2985
|
+
color: #374151;
|
|
2986
|
+
border: 1px solid #e5e7eb;
|
|
2975
2987
|
border-width: 0 0 1px 0;
|
|
2976
2988
|
padding: 1rem 1rem;
|
|
2977
2989
|
font-weight: 700;
|
|
@@ -2995,27 +3007,27 @@
|
|
|
2995
3007
|
border-radius: 0;
|
|
2996
3008
|
}
|
|
2997
3009
|
.p-datascroller .p-datascroller-header {
|
|
2998
|
-
background: #
|
|
2999
|
-
color: #
|
|
3000
|
-
border: 1px solid #
|
|
3010
|
+
background: #f9fafb;
|
|
3011
|
+
color: #374151;
|
|
3012
|
+
border: 1px solid #e5e7eb;
|
|
3001
3013
|
border-width: 1px 0 1px 0;
|
|
3002
3014
|
padding: 1rem 1rem;
|
|
3003
3015
|
font-weight: 700;
|
|
3004
3016
|
}
|
|
3005
3017
|
.p-datascroller .p-datascroller-content {
|
|
3006
3018
|
background: #ffffff;
|
|
3007
|
-
color: #
|
|
3019
|
+
color: #4b5563;
|
|
3008
3020
|
border: 0 none;
|
|
3009
3021
|
padding: 0;
|
|
3010
3022
|
}
|
|
3011
3023
|
.p-datascroller.p-datascroller-inline .p-datascroller-list > li {
|
|
3012
|
-
border: solid #
|
|
3024
|
+
border: solid #e5e7eb;
|
|
3013
3025
|
border-width: 0 0 1px 0;
|
|
3014
3026
|
}
|
|
3015
3027
|
.p-datascroller .p-datascroller-footer {
|
|
3016
|
-
background: #
|
|
3017
|
-
color: #
|
|
3018
|
-
border: 1px solid #
|
|
3028
|
+
background: #f9fafb;
|
|
3029
|
+
color: #374151;
|
|
3030
|
+
border: 1px solid #e5e7eb;
|
|
3019
3031
|
border-width: 0 0 1px 0;
|
|
3020
3032
|
padding: 1rem 1rem;
|
|
3021
3033
|
font-weight: 700;
|
|
@@ -3031,20 +3043,20 @@
|
|
|
3031
3043
|
.p-column-filter-menu-button {
|
|
3032
3044
|
width: 2rem;
|
|
3033
3045
|
height: 2rem;
|
|
3034
|
-
color: #
|
|
3046
|
+
color: #6b7280;
|
|
3035
3047
|
border: 0 none;
|
|
3036
3048
|
background: transparent;
|
|
3037
3049
|
border-radius: 50%;
|
|
3038
3050
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
3039
3051
|
}
|
|
3040
3052
|
.p-column-filter-menu-button:hover {
|
|
3041
|
-
color: #
|
|
3053
|
+
color: #374151;
|
|
3042
3054
|
border-color: transparent;
|
|
3043
|
-
background: #
|
|
3055
|
+
background: #f3f4f6;
|
|
3044
3056
|
}
|
|
3045
3057
|
.p-column-filter-menu-button.p-column-filter-menu-button-open, .p-column-filter-menu-button.p-column-filter-menu-button-open:hover {
|
|
3046
|
-
background: #
|
|
3047
|
-
color: #
|
|
3058
|
+
background: #f3f4f6;
|
|
3059
|
+
color: #374151;
|
|
3048
3060
|
}
|
|
3049
3061
|
.p-column-filter-menu-button.p-column-filter-menu-button-active, .p-column-filter-menu-button.p-column-filter-menu-button-active:hover {
|
|
3050
3062
|
background: #F5F3FF;
|
|
@@ -3059,16 +3071,16 @@
|
|
|
3059
3071
|
.p-column-filter-clear-button {
|
|
3060
3072
|
width: 2rem;
|
|
3061
3073
|
height: 2rem;
|
|
3062
|
-
color: #
|
|
3074
|
+
color: #6b7280;
|
|
3063
3075
|
border: 0 none;
|
|
3064
3076
|
background: transparent;
|
|
3065
3077
|
border-radius: 50%;
|
|
3066
3078
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
3067
3079
|
}
|
|
3068
3080
|
.p-column-filter-clear-button:hover {
|
|
3069
|
-
color: #
|
|
3081
|
+
color: #374151;
|
|
3070
3082
|
border-color: transparent;
|
|
3071
|
-
background: #
|
|
3083
|
+
background: #f3f4f6;
|
|
3072
3084
|
}
|
|
3073
3085
|
.p-column-filter-clear-button:focus-visible {
|
|
3074
3086
|
outline: 0 none;
|
|
@@ -3078,7 +3090,7 @@
|
|
|
3078
3090
|
|
|
3079
3091
|
.p-column-filter-overlay {
|
|
3080
3092
|
background: #ffffff;
|
|
3081
|
-
color: #
|
|
3093
|
+
color: #4b5563;
|
|
3082
3094
|
border: 0 none;
|
|
3083
3095
|
border-radius: 6px;
|
|
3084
3096
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
@@ -3091,7 +3103,7 @@
|
|
|
3091
3103
|
margin: 0;
|
|
3092
3104
|
padding: 0.75rem 1.25rem;
|
|
3093
3105
|
border: 0 none;
|
|
3094
|
-
color: #
|
|
3106
|
+
color: #4b5563;
|
|
3095
3107
|
background: transparent;
|
|
3096
3108
|
transition: box-shadow 0.2s;
|
|
3097
3109
|
border-radius: 0;
|
|
@@ -3101,8 +3113,8 @@
|
|
|
3101
3113
|
background: #F5F3FF;
|
|
3102
3114
|
}
|
|
3103
3115
|
.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:not(.p-highlight):not(.p-disabled):hover {
|
|
3104
|
-
color: #
|
|
3105
|
-
background: #
|
|
3116
|
+
color: #4b5563;
|
|
3117
|
+
background: #f3f4f6;
|
|
3106
3118
|
}
|
|
3107
3119
|
.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:focus-visible {
|
|
3108
3120
|
outline: 0 none;
|
|
@@ -3110,22 +3122,22 @@
|
|
|
3110
3122
|
box-shadow: inset 0 0 0 0.15rem #DDD6FE;
|
|
3111
3123
|
}
|
|
3112
3124
|
.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-separator {
|
|
3113
|
-
border-top: 1px solid #
|
|
3125
|
+
border-top: 1px solid #e5e7eb;
|
|
3114
3126
|
margin: 0.25rem 0;
|
|
3115
3127
|
}
|
|
3116
3128
|
|
|
3117
3129
|
.p-column-filter-overlay-menu .p-column-filter-operator {
|
|
3118
3130
|
padding: 0.75rem 1.25rem;
|
|
3119
|
-
border-bottom: 1px solid #
|
|
3120
|
-
color: #
|
|
3121
|
-
background: #
|
|
3131
|
+
border-bottom: 1px solid #e5e7eb;
|
|
3132
|
+
color: #374151;
|
|
3133
|
+
background: #f9fafb;
|
|
3122
3134
|
margin: 0;
|
|
3123
3135
|
border-top-right-radius: 6px;
|
|
3124
3136
|
border-top-left-radius: 6px;
|
|
3125
3137
|
}
|
|
3126
3138
|
.p-column-filter-overlay-menu .p-column-filter-constraint {
|
|
3127
3139
|
padding: 1.25rem;
|
|
3128
|
-
border-bottom: 1px solid #
|
|
3140
|
+
border-bottom: 1px solid #e5e7eb;
|
|
3129
3141
|
}
|
|
3130
3142
|
.p-column-filter-overlay-menu .p-column-filter-constraint .p-column-filter-matchmode-dropdown {
|
|
3131
3143
|
margin-bottom: 0.5rem;
|
|
@@ -3150,9 +3162,9 @@
|
|
|
3150
3162
|
margin-bottom: 0.5rem;
|
|
3151
3163
|
}
|
|
3152
3164
|
.p-orderlist .p-orderlist-header {
|
|
3153
|
-
background: #
|
|
3154
|
-
color: #
|
|
3155
|
-
border: 1px solid #
|
|
3165
|
+
background: #f9fafb;
|
|
3166
|
+
color: #374151;
|
|
3167
|
+
border: 1px solid #e5e7eb;
|
|
3156
3168
|
padding: 1.25rem;
|
|
3157
3169
|
font-weight: 700;
|
|
3158
3170
|
border-bottom: 0 none;
|
|
@@ -3162,7 +3174,7 @@
|
|
|
3162
3174
|
.p-orderlist .p-orderlist-filter-container {
|
|
3163
3175
|
padding: 1.25rem;
|
|
3164
3176
|
background: #ffffff;
|
|
3165
|
-
border: 1px solid #
|
|
3177
|
+
border: 1px solid #e5e7eb;
|
|
3166
3178
|
border-bottom: 0 none;
|
|
3167
3179
|
}
|
|
3168
3180
|
.p-orderlist .p-orderlist-filter-container .p-orderlist-filter-input {
|
|
@@ -3170,12 +3182,12 @@
|
|
|
3170
3182
|
}
|
|
3171
3183
|
.p-orderlist .p-orderlist-filter-container .p-orderlist-filter-icon {
|
|
3172
3184
|
right: 0.75rem;
|
|
3173
|
-
color: #
|
|
3185
|
+
color: #6b7280;
|
|
3174
3186
|
}
|
|
3175
3187
|
.p-orderlist .p-orderlist-list {
|
|
3176
|
-
border: 1px solid #
|
|
3188
|
+
border: 1px solid #e5e7eb;
|
|
3177
3189
|
background: #ffffff;
|
|
3178
|
-
color: #
|
|
3190
|
+
color: #4b5563;
|
|
3179
3191
|
padding: 0.75rem 0;
|
|
3180
3192
|
border-bottom-right-radius: 6px;
|
|
3181
3193
|
border-bottom-left-radius: 6px;
|
|
@@ -3184,13 +3196,13 @@
|
|
|
3184
3196
|
padding: 0.75rem 1.25rem;
|
|
3185
3197
|
margin: 0;
|
|
3186
3198
|
border: 0 none;
|
|
3187
|
-
color: #
|
|
3199
|
+
color: #4b5563;
|
|
3188
3200
|
background: transparent;
|
|
3189
3201
|
transition: transform 0.2s, box-shadow 0.2s;
|
|
3190
3202
|
}
|
|
3191
3203
|
.p-orderlist .p-orderlist-list .p-orderlist-item:not(.p-highlight):hover {
|
|
3192
|
-
background: #
|
|
3193
|
-
color: #
|
|
3204
|
+
background: #f3f4f6;
|
|
3205
|
+
color: #4b5563;
|
|
3194
3206
|
}
|
|
3195
3207
|
.p-orderlist .p-orderlist-list .p-orderlist-item:focus {
|
|
3196
3208
|
outline: 0 none;
|
|
@@ -3202,15 +3214,15 @@
|
|
|
3202
3214
|
background: #F5F3FF;
|
|
3203
3215
|
}
|
|
3204
3216
|
.p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even) {
|
|
3205
|
-
background: #
|
|
3217
|
+
background: #f8f8fa;
|
|
3206
3218
|
}
|
|
3207
3219
|
.p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover {
|
|
3208
|
-
background: #
|
|
3220
|
+
background: #f3f4f6;
|
|
3209
3221
|
}
|
|
3210
3222
|
|
|
3211
3223
|
.p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover {
|
|
3212
|
-
background: #
|
|
3213
|
-
color: #
|
|
3224
|
+
background: #f3f4f6;
|
|
3225
|
+
color: #4b5563;
|
|
3214
3226
|
}
|
|
3215
3227
|
.p-organizationchart .p-organizationchart-node-content.p-highlight {
|
|
3216
3228
|
background: #F5F3FF;
|
|
@@ -3220,20 +3232,20 @@
|
|
|
3220
3232
|
color: #8b74ff;
|
|
3221
3233
|
}
|
|
3222
3234
|
.p-organizationchart .p-organizationchart-line-down {
|
|
3223
|
-
background: #
|
|
3235
|
+
background: #e5e7eb;
|
|
3224
3236
|
}
|
|
3225
3237
|
.p-organizationchart .p-organizationchart-line-left {
|
|
3226
|
-
border-right: 1px solid #
|
|
3227
|
-
border-color: #
|
|
3238
|
+
border-right: 1px solid #e5e7eb;
|
|
3239
|
+
border-color: #e5e7eb;
|
|
3228
3240
|
}
|
|
3229
3241
|
.p-organizationchart .p-organizationchart-line-top {
|
|
3230
|
-
border-top: 1px solid #
|
|
3231
|
-
border-color: #
|
|
3242
|
+
border-top: 1px solid #e5e7eb;
|
|
3243
|
+
border-color: #e5e7eb;
|
|
3232
3244
|
}
|
|
3233
3245
|
.p-organizationchart .p-organizationchart-node-content {
|
|
3234
|
-
border: 1px solid #
|
|
3246
|
+
border: 1px solid #e5e7eb;
|
|
3235
3247
|
background: #ffffff;
|
|
3236
|
-
color: #
|
|
3248
|
+
color: #4b5563;
|
|
3237
3249
|
padding: 1.25rem;
|
|
3238
3250
|
}
|
|
3239
3251
|
.p-organizationchart .p-organizationchart-node-content .p-node-toggler {
|
|
@@ -3249,8 +3261,8 @@
|
|
|
3249
3261
|
|
|
3250
3262
|
.p-paginator {
|
|
3251
3263
|
background: #ffffff;
|
|
3252
|
-
color: #
|
|
3253
|
-
border: solid #
|
|
3264
|
+
color: #6b7280;
|
|
3265
|
+
border: solid #f3f4f6;
|
|
3254
3266
|
border-width: 0;
|
|
3255
3267
|
padding: 0.5rem 1rem;
|
|
3256
3268
|
border-radius: 6px;
|
|
@@ -3261,7 +3273,7 @@
|
|
|
3261
3273
|
.p-paginator .p-paginator-last {
|
|
3262
3274
|
background-color: transparent;
|
|
3263
3275
|
border: 0 none;
|
|
3264
|
-
color: #
|
|
3276
|
+
color: #6b7280;
|
|
3265
3277
|
min-width: 3rem;
|
|
3266
3278
|
height: 3rem;
|
|
3267
3279
|
margin: 0.143rem;
|
|
@@ -3272,9 +3284,9 @@
|
|
|
3272
3284
|
.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover,
|
|
3273
3285
|
.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover,
|
|
3274
3286
|
.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover {
|
|
3275
|
-
background: #
|
|
3287
|
+
background: #f3f4f6;
|
|
3276
3288
|
border-color: transparent;
|
|
3277
|
-
color: #
|
|
3289
|
+
color: #374151;
|
|
3278
3290
|
}
|
|
3279
3291
|
.p-paginator .p-paginator-first {
|
|
3280
3292
|
border-top-left-radius: 50%;
|
|
@@ -3301,7 +3313,7 @@
|
|
|
3301
3313
|
.p-paginator .p-paginator-current {
|
|
3302
3314
|
background-color: transparent;
|
|
3303
3315
|
border: 0 none;
|
|
3304
|
-
color: #
|
|
3316
|
+
color: #6b7280;
|
|
3305
3317
|
min-width: 3rem;
|
|
3306
3318
|
height: 3rem;
|
|
3307
3319
|
margin: 0.143rem;
|
|
@@ -3310,7 +3322,7 @@
|
|
|
3310
3322
|
.p-paginator .p-paginator-pages .p-paginator-page {
|
|
3311
3323
|
background-color: transparent;
|
|
3312
3324
|
border: 0 none;
|
|
3313
|
-
color: #
|
|
3325
|
+
color: #6b7280;
|
|
3314
3326
|
min-width: 3rem;
|
|
3315
3327
|
height: 3rem;
|
|
3316
3328
|
margin: 0.143rem;
|
|
@@ -3323,9 +3335,9 @@
|
|
|
3323
3335
|
color: #6D28D9;
|
|
3324
3336
|
}
|
|
3325
3337
|
.p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover {
|
|
3326
|
-
background: #
|
|
3338
|
+
background: #f3f4f6;
|
|
3327
3339
|
border-color: transparent;
|
|
3328
|
-
color: #
|
|
3340
|
+
color: #374151;
|
|
3329
3341
|
}
|
|
3330
3342
|
|
|
3331
3343
|
.p-picklist .p-picklist-buttons {
|
|
@@ -3335,9 +3347,9 @@
|
|
|
3335
3347
|
margin-bottom: 0.5rem;
|
|
3336
3348
|
}
|
|
3337
3349
|
.p-picklist .p-picklist-header {
|
|
3338
|
-
background: #
|
|
3339
|
-
color: #
|
|
3340
|
-
border: 1px solid #
|
|
3350
|
+
background: #f9fafb;
|
|
3351
|
+
color: #374151;
|
|
3352
|
+
border: 1px solid #e5e7eb;
|
|
3341
3353
|
padding: 1.25rem;
|
|
3342
3354
|
font-weight: 700;
|
|
3343
3355
|
border-bottom: 0 none;
|
|
@@ -3347,7 +3359,7 @@
|
|
|
3347
3359
|
.p-picklist .p-picklist-filter-container {
|
|
3348
3360
|
padding: 1.25rem;
|
|
3349
3361
|
background: #ffffff;
|
|
3350
|
-
border: 1px solid #
|
|
3362
|
+
border: 1px solid #e5e7eb;
|
|
3351
3363
|
border-bottom: 0 none;
|
|
3352
3364
|
}
|
|
3353
3365
|
.p-picklist .p-picklist-filter-container .p-picklist-filter-input {
|
|
@@ -3355,12 +3367,12 @@
|
|
|
3355
3367
|
}
|
|
3356
3368
|
.p-picklist .p-picklist-filter-container .p-picklist-filter-icon {
|
|
3357
3369
|
right: 0.75rem;
|
|
3358
|
-
color: #
|
|
3370
|
+
color: #6b7280;
|
|
3359
3371
|
}
|
|
3360
3372
|
.p-picklist .p-picklist-list {
|
|
3361
|
-
border: 1px solid #
|
|
3373
|
+
border: 1px solid #e5e7eb;
|
|
3362
3374
|
background: #ffffff;
|
|
3363
|
-
color: #
|
|
3375
|
+
color: #4b5563;
|
|
3364
3376
|
padding: 0.75rem 0;
|
|
3365
3377
|
border-bottom-right-radius: 6px;
|
|
3366
3378
|
border-bottom-left-radius: 6px;
|
|
@@ -3369,13 +3381,13 @@
|
|
|
3369
3381
|
padding: 0.75rem 1.25rem;
|
|
3370
3382
|
margin: 0;
|
|
3371
3383
|
border: 0 none;
|
|
3372
|
-
color: #
|
|
3384
|
+
color: #4b5563;
|
|
3373
3385
|
background: transparent;
|
|
3374
3386
|
transition: transform 0.2s, box-shadow 0.2s;
|
|
3375
3387
|
}
|
|
3376
3388
|
.p-picklist .p-picklist-list .p-picklist-item:not(.p-highlight):hover {
|
|
3377
|
-
background: #
|
|
3378
|
-
color: #
|
|
3389
|
+
background: #f3f4f6;
|
|
3390
|
+
color: #4b5563;
|
|
3379
3391
|
}
|
|
3380
3392
|
.p-picklist .p-picklist-list .p-picklist-item:focus {
|
|
3381
3393
|
outline: 0 none;
|
|
@@ -3388,9 +3400,9 @@
|
|
|
3388
3400
|
}
|
|
3389
3401
|
|
|
3390
3402
|
.p-tree {
|
|
3391
|
-
border: 1px solid #
|
|
3403
|
+
border: 1px solid #e5e7eb;
|
|
3392
3404
|
background: #ffffff;
|
|
3393
|
-
color: #
|
|
3405
|
+
color: #4b5563;
|
|
3394
3406
|
padding: 1.25rem;
|
|
3395
3407
|
border-radius: 6px;
|
|
3396
3408
|
}
|
|
@@ -3406,16 +3418,16 @@
|
|
|
3406
3418
|
margin-right: 0.5rem;
|
|
3407
3419
|
width: 2rem;
|
|
3408
3420
|
height: 2rem;
|
|
3409
|
-
color: #
|
|
3421
|
+
color: #6b7280;
|
|
3410
3422
|
border: 0 none;
|
|
3411
3423
|
background: transparent;
|
|
3412
3424
|
border-radius: 50%;
|
|
3413
3425
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
3414
3426
|
}
|
|
3415
3427
|
.p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler:enabled:hover {
|
|
3416
|
-
color: #
|
|
3428
|
+
color: #374151;
|
|
3417
3429
|
border-color: transparent;
|
|
3418
|
-
background: #
|
|
3430
|
+
background: #f3f4f6;
|
|
3419
3431
|
}
|
|
3420
3432
|
.p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler:focus-visible {
|
|
3421
3433
|
outline: 0 none;
|
|
@@ -3424,13 +3436,13 @@
|
|
|
3424
3436
|
}
|
|
3425
3437
|
.p-tree .p-tree-container .p-treenode .p-treenode-content .p-treenode-icon {
|
|
3426
3438
|
margin-right: 0.5rem;
|
|
3427
|
-
color: #
|
|
3439
|
+
color: #6b7280;
|
|
3428
3440
|
}
|
|
3429
3441
|
.p-tree .p-tree-container .p-treenode .p-treenode-content .p-checkbox {
|
|
3430
3442
|
margin-right: 0.5rem;
|
|
3431
3443
|
}
|
|
3432
3444
|
.p-tree .p-tree-container .p-treenode .p-treenode-content .p-checkbox .p-indeterminate .p-checkbox-icon {
|
|
3433
|
-
color: #
|
|
3445
|
+
color: #4b5563;
|
|
3434
3446
|
}
|
|
3435
3447
|
.p-tree .p-tree-container .p-treenode .p-treenode-content:focus {
|
|
3436
3448
|
outline: 0 none;
|
|
@@ -3450,12 +3462,12 @@
|
|
|
3450
3462
|
color: #6D28D9;
|
|
3451
3463
|
}
|
|
3452
3464
|
.p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover {
|
|
3453
|
-
background: #
|
|
3454
|
-
color: #
|
|
3465
|
+
background: #f3f4f6;
|
|
3466
|
+
color: #4b5563;
|
|
3455
3467
|
}
|
|
3456
3468
|
.p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-dragover {
|
|
3457
|
-
background: #
|
|
3458
|
-
color: #
|
|
3469
|
+
background: #f3f4f6;
|
|
3470
|
+
color: #4b5563;
|
|
3459
3471
|
}
|
|
3460
3472
|
.p-tree .p-tree-filter-container {
|
|
3461
3473
|
margin-bottom: 0.5rem;
|
|
@@ -3466,7 +3478,7 @@
|
|
|
3466
3478
|
}
|
|
3467
3479
|
.p-tree .p-tree-filter-container .p-tree-filter-icon {
|
|
3468
3480
|
right: 0.75rem;
|
|
3469
|
-
color: #
|
|
3481
|
+
color: #6b7280;
|
|
3470
3482
|
}
|
|
3471
3483
|
.p-tree .p-treenode-children {
|
|
3472
3484
|
padding: 0 0 0 1rem;
|
|
@@ -3494,17 +3506,17 @@
|
|
|
3494
3506
|
border-radius: 0;
|
|
3495
3507
|
}
|
|
3496
3508
|
.p-treetable .p-treetable-header {
|
|
3497
|
-
background: #
|
|
3498
|
-
color: #
|
|
3499
|
-
border: 1px solid #
|
|
3509
|
+
background: #f9fafb;
|
|
3510
|
+
color: #374151;
|
|
3511
|
+
border: 1px solid #e5e7eb;
|
|
3500
3512
|
border-width: 1px 0 1px 0;
|
|
3501
3513
|
padding: 1rem 1rem;
|
|
3502
3514
|
font-weight: 700;
|
|
3503
3515
|
}
|
|
3504
3516
|
.p-treetable .p-treetable-footer {
|
|
3505
|
-
background: #
|
|
3506
|
-
color: #
|
|
3507
|
-
border: 1px solid #
|
|
3517
|
+
background: #f9fafb;
|
|
3518
|
+
color: #374151;
|
|
3519
|
+
border: 1px solid #e5e7eb;
|
|
3508
3520
|
border-width: 0 0 1px 0;
|
|
3509
3521
|
padding: 1rem 1rem;
|
|
3510
3522
|
font-weight: 700;
|
|
@@ -3512,27 +3524,27 @@
|
|
|
3512
3524
|
.p-treetable .p-treetable-thead > tr > th {
|
|
3513
3525
|
text-align: left;
|
|
3514
3526
|
padding: 1rem 1rem;
|
|
3515
|
-
border: 1px solid #
|
|
3527
|
+
border: 1px solid #e5e7eb;
|
|
3516
3528
|
border-width: 0 0 1px 0;
|
|
3517
3529
|
font-weight: 700;
|
|
3518
|
-
color: #
|
|
3519
|
-
background: #
|
|
3530
|
+
color: #374151;
|
|
3531
|
+
background: #f9fafb;
|
|
3520
3532
|
transition: box-shadow 0.2s;
|
|
3521
3533
|
}
|
|
3522
3534
|
.p-treetable .p-treetable-tfoot > tr > td {
|
|
3523
3535
|
text-align: left;
|
|
3524
3536
|
padding: 1rem 1rem;
|
|
3525
|
-
border: 1px solid #
|
|
3537
|
+
border: 1px solid #e5e7eb;
|
|
3526
3538
|
border-width: 0 0 1px 0;
|
|
3527
3539
|
font-weight: 700;
|
|
3528
|
-
color: #
|
|
3529
|
-
background: #
|
|
3540
|
+
color: #374151;
|
|
3541
|
+
background: #f9fafb;
|
|
3530
3542
|
}
|
|
3531
3543
|
.p-treetable .p-sortable-column {
|
|
3532
3544
|
outline-color: #DDD6FE;
|
|
3533
3545
|
}
|
|
3534
3546
|
.p-treetable .p-sortable-column .p-sortable-column-icon {
|
|
3535
|
-
color: #
|
|
3547
|
+
color: #374151;
|
|
3536
3548
|
margin-left: 0.5rem;
|
|
3537
3549
|
}
|
|
3538
3550
|
.p-treetable .p-sortable-column .p-sortable-column-badge {
|
|
@@ -3545,11 +3557,11 @@
|
|
|
3545
3557
|
margin-left: 0.5rem;
|
|
3546
3558
|
}
|
|
3547
3559
|
.p-treetable .p-sortable-column:not(.p-highlight):hover {
|
|
3548
|
-
background: #
|
|
3549
|
-
color: #
|
|
3560
|
+
background: #f3f4f6;
|
|
3561
|
+
color: #374151;
|
|
3550
3562
|
}
|
|
3551
3563
|
.p-treetable .p-sortable-column:not(.p-highlight):hover .p-sortable-column-icon {
|
|
3552
|
-
color: #
|
|
3564
|
+
color: #374151;
|
|
3553
3565
|
}
|
|
3554
3566
|
.p-treetable .p-sortable-column.p-highlight {
|
|
3555
3567
|
background: #F5F3FF;
|
|
@@ -3560,19 +3572,19 @@
|
|
|
3560
3572
|
}
|
|
3561
3573
|
.p-treetable .p-treetable-tbody > tr {
|
|
3562
3574
|
background: #ffffff;
|
|
3563
|
-
color: #
|
|
3575
|
+
color: #4b5563;
|
|
3564
3576
|
transition: box-shadow 0.2s;
|
|
3565
3577
|
}
|
|
3566
3578
|
.p-treetable .p-treetable-tbody > tr > td {
|
|
3567
3579
|
text-align: left;
|
|
3568
|
-
border: 1px solid #
|
|
3580
|
+
border: 1px solid #e5e7eb;
|
|
3569
3581
|
border-width: 0 0 1px 0;
|
|
3570
3582
|
padding: 1rem 1rem;
|
|
3571
3583
|
}
|
|
3572
3584
|
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler {
|
|
3573
3585
|
width: 2rem;
|
|
3574
3586
|
height: 2rem;
|
|
3575
|
-
color: #
|
|
3587
|
+
color: #6b7280;
|
|
3576
3588
|
border: 0 none;
|
|
3577
3589
|
background: transparent;
|
|
3578
3590
|
border-radius: 50%;
|
|
@@ -3580,9 +3592,9 @@
|
|
|
3580
3592
|
margin-right: 0.5rem;
|
|
3581
3593
|
}
|
|
3582
3594
|
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler:enabled:hover {
|
|
3583
|
-
color: #
|
|
3595
|
+
color: #374151;
|
|
3584
3596
|
border-color: transparent;
|
|
3585
|
-
background: #
|
|
3597
|
+
background: #f3f4f6;
|
|
3586
3598
|
}
|
|
3587
3599
|
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler:focus-visible {
|
|
3588
3600
|
outline: 0 none;
|
|
@@ -3593,7 +3605,7 @@
|
|
|
3593
3605
|
margin-right: 0.5rem;
|
|
3594
3606
|
}
|
|
3595
3607
|
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
|
|
3596
|
-
color: #
|
|
3608
|
+
color: #4b5563;
|
|
3597
3609
|
}
|
|
3598
3610
|
.p-treetable .p-treetable-tbody > tr:focus-visible {
|
|
3599
3611
|
outline: 0.15rem solid #DDD6FE;
|
|
@@ -3610,18 +3622,18 @@
|
|
|
3610
3622
|
color: #6D28D9;
|
|
3611
3623
|
}
|
|
3612
3624
|
.p-treetable.p-treetable-selectable .p-treetable-tbody > tr:not(.p-highlight):hover, .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover {
|
|
3613
|
-
background: #
|
|
3614
|
-
color: #
|
|
3625
|
+
background: #f3f4f6;
|
|
3626
|
+
color: #4b5563;
|
|
3615
3627
|
}
|
|
3616
3628
|
.p-treetable.p-treetable-selectable .p-treetable-tbody > tr:not(.p-highlight):hover .p-treetable-toggler, .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover .p-treetable-toggler {
|
|
3617
|
-
color: #
|
|
3629
|
+
color: #4b5563;
|
|
3618
3630
|
}
|
|
3619
3631
|
.p-treetable .p-column-resizer-helper {
|
|
3620
3632
|
background: #8B5CF6;
|
|
3621
3633
|
}
|
|
3622
3634
|
.p-treetable .p-treetable-scrollable-header,
|
|
3623
3635
|
.p-treetable .p-treetable-scrollable-footer {
|
|
3624
|
-
background: #
|
|
3636
|
+
background: #f9fafb;
|
|
3625
3637
|
}
|
|
3626
3638
|
.p-treetable .p-treetable-loading-icon {
|
|
3627
3639
|
font-size: 2rem;
|
|
@@ -3652,7 +3664,7 @@
|
|
|
3652
3664
|
border-width: 1px;
|
|
3653
3665
|
}
|
|
3654
3666
|
.p-treetable.p-treetable-striped .p-treetable-tbody > tr.p-row-odd {
|
|
3655
|
-
background: #
|
|
3667
|
+
background: #f8f8fa;
|
|
3656
3668
|
}
|
|
3657
3669
|
.p-treetable.p-treetable-striped .p-treetable-tbody > tr.p-row-odd.p-highlight {
|
|
3658
3670
|
background: #F5F3FF;
|
|
@@ -3665,7 +3677,7 @@
|
|
|
3665
3677
|
color: #6D28D9;
|
|
3666
3678
|
}
|
|
3667
3679
|
.p-treetable.p-treetable-striped .p-treetable-tbody > tr.p-row-odd + .p-row-expanded {
|
|
3668
|
-
background: #
|
|
3680
|
+
background: #f8f8fa;
|
|
3669
3681
|
}
|
|
3670
3682
|
.p-treetable.p-treetable-sm .p-treetable-header {
|
|
3671
3683
|
padding: 0.875rem 0.875rem;
|
|
@@ -3706,7 +3718,7 @@
|
|
|
3706
3718
|
background-color: #ffffff;
|
|
3707
3719
|
}
|
|
3708
3720
|
.p-timeline .p-timeline-event-connector {
|
|
3709
|
-
background-color: #
|
|
3721
|
+
background-color: #e5e7eb;
|
|
3710
3722
|
}
|
|
3711
3723
|
.p-timeline.p-timeline-vertical .p-timeline-event-opposite,
|
|
3712
3724
|
.p-timeline.p-timeline-vertical .p-timeline-event-content {
|
|
@@ -3725,9 +3737,9 @@
|
|
|
3725
3737
|
|
|
3726
3738
|
.p-accordion .p-accordion-header .p-accordion-header-link {
|
|
3727
3739
|
padding: 1.25rem;
|
|
3728
|
-
border: 1px solid #
|
|
3729
|
-
color: #
|
|
3730
|
-
background: #
|
|
3740
|
+
border: 1px solid #e5e7eb;
|
|
3741
|
+
color: #6b7280;
|
|
3742
|
+
background: #f9fafb;
|
|
3731
3743
|
font-weight: 700;
|
|
3732
3744
|
border-radius: 6px;
|
|
3733
3745
|
transition: box-shadow 0.2s;
|
|
@@ -3741,27 +3753,27 @@
|
|
|
3741
3753
|
box-shadow: 0 0 0 0.2rem #DDD6FE;
|
|
3742
3754
|
}
|
|
3743
3755
|
.p-accordion .p-accordion-header:not(.p-highlight):not(.p-disabled):hover .p-accordion-header-link {
|
|
3744
|
-
background: #
|
|
3745
|
-
border-color: #
|
|
3746
|
-
color: #
|
|
3756
|
+
background: #f3f4f6;
|
|
3757
|
+
border-color: #e5e7eb;
|
|
3758
|
+
color: #374151;
|
|
3747
3759
|
}
|
|
3748
3760
|
.p-accordion .p-accordion-header:not(.p-disabled).p-highlight .p-accordion-header-link {
|
|
3749
|
-
background: #
|
|
3750
|
-
border-color: #
|
|
3751
|
-
color: #
|
|
3761
|
+
background: #f9fafb;
|
|
3762
|
+
border-color: #e5e7eb;
|
|
3763
|
+
color: #374151;
|
|
3752
3764
|
border-bottom-right-radius: 0;
|
|
3753
3765
|
border-bottom-left-radius: 0;
|
|
3754
3766
|
}
|
|
3755
3767
|
.p-accordion .p-accordion-header:not(.p-disabled).p-highlight:hover .p-accordion-header-link {
|
|
3756
|
-
border-color: #
|
|
3757
|
-
background: #
|
|
3758
|
-
color: #
|
|
3768
|
+
border-color: #e5e7eb;
|
|
3769
|
+
background: #f3f4f6;
|
|
3770
|
+
color: #374151;
|
|
3759
3771
|
}
|
|
3760
3772
|
.p-accordion .p-accordion-content {
|
|
3761
3773
|
padding: 1.25rem;
|
|
3762
|
-
border: 1px solid #
|
|
3774
|
+
border: 1px solid #e5e7eb;
|
|
3763
3775
|
background: #ffffff;
|
|
3764
|
-
color: #
|
|
3776
|
+
color: #4b5563;
|
|
3765
3777
|
border-top: 0;
|
|
3766
3778
|
border-top-right-radius: 0;
|
|
3767
3779
|
border-top-left-radius: 0;
|
|
@@ -3774,7 +3786,7 @@
|
|
|
3774
3786
|
|
|
3775
3787
|
.p-card {
|
|
3776
3788
|
background: #ffffff;
|
|
3777
|
-
color: #
|
|
3789
|
+
color: #4b5563;
|
|
3778
3790
|
box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
|
|
3779
3791
|
border-radius: 6px;
|
|
3780
3792
|
}
|
|
@@ -3789,7 +3801,7 @@
|
|
|
3789
3801
|
.p-card .p-card-subtitle {
|
|
3790
3802
|
font-weight: 400;
|
|
3791
3803
|
margin-bottom: 0.5rem;
|
|
3792
|
-
color: #
|
|
3804
|
+
color: #6b7280;
|
|
3793
3805
|
}
|
|
3794
3806
|
.p-card .p-card-content {
|
|
3795
3807
|
padding: 1.25rem 0;
|
|
@@ -3799,16 +3811,16 @@
|
|
|
3799
3811
|
}
|
|
3800
3812
|
|
|
3801
3813
|
.p-fieldset {
|
|
3802
|
-
border: 1px solid #
|
|
3814
|
+
border: 1px solid #e5e7eb;
|
|
3803
3815
|
background: #ffffff;
|
|
3804
|
-
color: #
|
|
3816
|
+
color: #4b5563;
|
|
3805
3817
|
border-radius: 6px;
|
|
3806
3818
|
}
|
|
3807
3819
|
.p-fieldset .p-fieldset-legend {
|
|
3808
3820
|
padding: 1.25rem;
|
|
3809
|
-
border: 1px solid #
|
|
3810
|
-
color: #
|
|
3811
|
-
background: #
|
|
3821
|
+
border: 1px solid #e5e7eb;
|
|
3822
|
+
color: #374151;
|
|
3823
|
+
background: #f9fafb;
|
|
3812
3824
|
font-weight: 700;
|
|
3813
3825
|
border-radius: 6px;
|
|
3814
3826
|
}
|
|
@@ -3818,7 +3830,7 @@
|
|
|
3818
3830
|
}
|
|
3819
3831
|
.p-fieldset.p-fieldset-toggleable .p-fieldset-legend a {
|
|
3820
3832
|
padding: 1.25rem;
|
|
3821
|
-
color: #
|
|
3833
|
+
color: #374151;
|
|
3822
3834
|
border-radius: 6px;
|
|
3823
3835
|
transition: box-shadow 0.2s;
|
|
3824
3836
|
}
|
|
@@ -3831,9 +3843,9 @@
|
|
|
3831
3843
|
box-shadow: 0 0 0 0.2rem #DDD6FE;
|
|
3832
3844
|
}
|
|
3833
3845
|
.p-fieldset.p-fieldset-toggleable .p-fieldset-legend:hover {
|
|
3834
|
-
background: #
|
|
3835
|
-
border-color: #
|
|
3836
|
-
color: #
|
|
3846
|
+
background: #f3f4f6;
|
|
3847
|
+
border-color: #e5e7eb;
|
|
3848
|
+
color: #374151;
|
|
3837
3849
|
}
|
|
3838
3850
|
.p-fieldset .p-fieldset-content {
|
|
3839
3851
|
padding: 1.25rem;
|
|
@@ -3847,7 +3859,7 @@
|
|
|
3847
3859
|
padding: 0 1.25rem;
|
|
3848
3860
|
}
|
|
3849
3861
|
.p-divider.p-divider-horizontal:before {
|
|
3850
|
-
border-top: 1px #
|
|
3862
|
+
border-top: 1px #e5e7eb;
|
|
3851
3863
|
}
|
|
3852
3864
|
.p-divider.p-divider-horizontal .p-divider-content {
|
|
3853
3865
|
padding: 0 0.5rem;
|
|
@@ -3857,17 +3869,17 @@
|
|
|
3857
3869
|
padding: 1.25rem 0;
|
|
3858
3870
|
}
|
|
3859
3871
|
.p-divider.p-divider-vertical:before {
|
|
3860
|
-
border-left: 1px #
|
|
3872
|
+
border-left: 1px #e5e7eb;
|
|
3861
3873
|
}
|
|
3862
3874
|
.p-divider.p-divider-vertical .p-divider-content {
|
|
3863
3875
|
padding: 0.5rem 0;
|
|
3864
3876
|
}
|
|
3865
3877
|
|
|
3866
3878
|
.p-panel .p-panel-header {
|
|
3867
|
-
border: 1px solid #
|
|
3879
|
+
border: 1px solid #e5e7eb;
|
|
3868
3880
|
padding: 1.25rem;
|
|
3869
|
-
background: #
|
|
3870
|
-
color: #
|
|
3881
|
+
background: #f9fafb;
|
|
3882
|
+
color: #374151;
|
|
3871
3883
|
border-top-right-radius: 6px;
|
|
3872
3884
|
border-top-left-radius: 6px;
|
|
3873
3885
|
}
|
|
@@ -3877,16 +3889,16 @@
|
|
|
3877
3889
|
.p-panel .p-panel-header .p-panel-header-icon {
|
|
3878
3890
|
width: 2rem;
|
|
3879
3891
|
height: 2rem;
|
|
3880
|
-
color: #
|
|
3892
|
+
color: #6b7280;
|
|
3881
3893
|
border: 0 none;
|
|
3882
3894
|
background: transparent;
|
|
3883
3895
|
border-radius: 50%;
|
|
3884
3896
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
3885
3897
|
}
|
|
3886
3898
|
.p-panel .p-panel-header .p-panel-header-icon:enabled:hover {
|
|
3887
|
-
color: #
|
|
3899
|
+
color: #374151;
|
|
3888
3900
|
border-color: transparent;
|
|
3889
|
-
background: #
|
|
3901
|
+
background: #f3f4f6;
|
|
3890
3902
|
}
|
|
3891
3903
|
.p-panel .p-panel-header .p-panel-header-icon:focus-visible {
|
|
3892
3904
|
outline: 0 none;
|
|
@@ -3898,57 +3910,57 @@
|
|
|
3898
3910
|
}
|
|
3899
3911
|
.p-panel .p-panel-content {
|
|
3900
3912
|
padding: 1.25rem;
|
|
3901
|
-
border: 1px solid #
|
|
3913
|
+
border: 1px solid #e5e7eb;
|
|
3902
3914
|
background: #ffffff;
|
|
3903
|
-
color: #
|
|
3915
|
+
color: #4b5563;
|
|
3904
3916
|
border-bottom-right-radius: 6px;
|
|
3905
3917
|
border-bottom-left-radius: 6px;
|
|
3906
3918
|
border-top: 0 none;
|
|
3907
3919
|
}
|
|
3908
3920
|
.p-panel .p-panel-footer {
|
|
3909
3921
|
padding: 0.75rem 1.25rem;
|
|
3910
|
-
border: 1px solid #
|
|
3922
|
+
border: 1px solid #e5e7eb;
|
|
3911
3923
|
background: #ffffff;
|
|
3912
|
-
color: #
|
|
3924
|
+
color: #4b5563;
|
|
3913
3925
|
border-top: 0 none;
|
|
3914
3926
|
}
|
|
3915
3927
|
|
|
3916
3928
|
.p-splitter {
|
|
3917
|
-
border: 1px solid #
|
|
3929
|
+
border: 1px solid #e5e7eb;
|
|
3918
3930
|
background: #ffffff;
|
|
3919
3931
|
border-radius: 6px;
|
|
3920
|
-
color: #
|
|
3932
|
+
color: #4b5563;
|
|
3921
3933
|
}
|
|
3922
3934
|
.p-splitter .p-splitter-gutter {
|
|
3923
3935
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
3924
|
-
background: #
|
|
3936
|
+
background: #f9fafb;
|
|
3925
3937
|
}
|
|
3926
3938
|
.p-splitter .p-splitter-gutter .p-splitter-gutter-handle {
|
|
3927
|
-
background: #
|
|
3939
|
+
background: #e5e7eb;
|
|
3928
3940
|
}
|
|
3929
3941
|
.p-splitter .p-splitter-gutter-resizing {
|
|
3930
|
-
background: #
|
|
3942
|
+
background: #e5e7eb;
|
|
3931
3943
|
}
|
|
3932
3944
|
|
|
3933
3945
|
.p-scrollpanel .p-scrollpanel-bar {
|
|
3934
|
-
background: #
|
|
3946
|
+
background: #f9fafb;
|
|
3935
3947
|
border: 0 none;
|
|
3936
3948
|
}
|
|
3937
3949
|
|
|
3938
3950
|
.p-tabview .p-tabview-nav {
|
|
3939
3951
|
background: #ffffff;
|
|
3940
|
-
border: 1px solid #
|
|
3952
|
+
border: 1px solid #e5e7eb;
|
|
3941
3953
|
border-width: 0 0 2px 0;
|
|
3942
3954
|
}
|
|
3943
3955
|
.p-tabview .p-tabview-nav li {
|
|
3944
3956
|
margin-right: 0;
|
|
3945
3957
|
}
|
|
3946
3958
|
.p-tabview .p-tabview-nav li .p-tabview-nav-link {
|
|
3947
|
-
border: solid #
|
|
3959
|
+
border: solid #e5e7eb;
|
|
3948
3960
|
border-width: 0 0 2px 0;
|
|
3949
|
-
border-color: transparent transparent #
|
|
3961
|
+
border-color: transparent transparent #e5e7eb transparent;
|
|
3950
3962
|
background: #ffffff;
|
|
3951
|
-
color: #
|
|
3963
|
+
color: #6b7280;
|
|
3952
3964
|
padding: 1.25rem;
|
|
3953
3965
|
font-weight: 700;
|
|
3954
3966
|
border-top-right-radius: 6px;
|
|
@@ -3963,8 +3975,8 @@
|
|
|
3963
3975
|
}
|
|
3964
3976
|
.p-tabview .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-nav-link {
|
|
3965
3977
|
background: #ffffff;
|
|
3966
|
-
border-color: #
|
|
3967
|
-
color: #
|
|
3978
|
+
border-color: #9ca3af;
|
|
3979
|
+
color: #6b7280;
|
|
3968
3980
|
}
|
|
3969
3981
|
.p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link {
|
|
3970
3982
|
background: #ffffff;
|
|
@@ -3990,14 +4002,14 @@
|
|
|
3990
4002
|
background: #ffffff;
|
|
3991
4003
|
padding: 1.25rem;
|
|
3992
4004
|
border: 0 none;
|
|
3993
|
-
color: #
|
|
4005
|
+
color: #4b5563;
|
|
3994
4006
|
border-bottom-right-radius: 6px;
|
|
3995
4007
|
border-bottom-left-radius: 6px;
|
|
3996
4008
|
}
|
|
3997
4009
|
|
|
3998
4010
|
.p-toolbar {
|
|
3999
|
-
background: #
|
|
4000
|
-
border: 1px solid #
|
|
4011
|
+
background: #f9fafb;
|
|
4012
|
+
border: 1px solid #e5e7eb;
|
|
4001
4013
|
padding: 1.25rem;
|
|
4002
4014
|
border-radius: 6px;
|
|
4003
4015
|
gap: 0.5rem;
|
|
@@ -4008,7 +4020,7 @@
|
|
|
4008
4020
|
|
|
4009
4021
|
.p-confirm-popup {
|
|
4010
4022
|
background: #ffffff;
|
|
4011
|
-
color: #
|
|
4023
|
+
color: #4b5563;
|
|
4012
4024
|
border: 0 none;
|
|
4013
4025
|
border-radius: 6px;
|
|
4014
4026
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
|
|
@@ -4035,7 +4047,7 @@
|
|
|
4035
4047
|
.p-confirm-popup:before {
|
|
4036
4048
|
border: solid transparent;
|
|
4037
4049
|
border-color: rgba(255, 255, 255, 0);
|
|
4038
|
-
border-bottom-color: #
|
|
4050
|
+
border-bottom-color: #f2f2f2;
|
|
4039
4051
|
}
|
|
4040
4052
|
.p-confirm-popup.p-confirm-popup-flipped:after {
|
|
4041
4053
|
border-top-color: #ffffff;
|
|
@@ -4062,7 +4074,7 @@
|
|
|
4062
4074
|
.p-dialog .p-dialog-header {
|
|
4063
4075
|
border-bottom: 0 none;
|
|
4064
4076
|
background: #ffffff;
|
|
4065
|
-
color: #
|
|
4077
|
+
color: #374151;
|
|
4066
4078
|
padding: 1.5rem;
|
|
4067
4079
|
border-top-right-radius: 6px;
|
|
4068
4080
|
border-top-left-radius: 6px;
|
|
@@ -4074,7 +4086,7 @@
|
|
|
4074
4086
|
.p-dialog .p-dialog-header .p-dialog-header-icon {
|
|
4075
4087
|
width: 2rem;
|
|
4076
4088
|
height: 2rem;
|
|
4077
|
-
color: #
|
|
4089
|
+
color: #6b7280;
|
|
4078
4090
|
border: 0 none;
|
|
4079
4091
|
background: transparent;
|
|
4080
4092
|
border-radius: 50%;
|
|
@@ -4082,9 +4094,9 @@
|
|
|
4082
4094
|
margin-right: 0.5rem;
|
|
4083
4095
|
}
|
|
4084
4096
|
.p-dialog .p-dialog-header .p-dialog-header-icon:enabled:hover {
|
|
4085
|
-
color: #
|
|
4097
|
+
color: #374151;
|
|
4086
4098
|
border-color: transparent;
|
|
4087
|
-
background: #
|
|
4099
|
+
background: #f3f4f6;
|
|
4088
4100
|
}
|
|
4089
4101
|
.p-dialog .p-dialog-header .p-dialog-header-icon:focus-visible {
|
|
4090
4102
|
outline: 0 none;
|
|
@@ -4096,7 +4108,7 @@
|
|
|
4096
4108
|
}
|
|
4097
4109
|
.p-dialog .p-dialog-content {
|
|
4098
4110
|
background: #ffffff;
|
|
4099
|
-
color: #
|
|
4111
|
+
color: #4b5563;
|
|
4100
4112
|
padding: 0 1.5rem 2rem 1.5rem;
|
|
4101
4113
|
}
|
|
4102
4114
|
.p-dialog .p-dialog-content:last-of-type {
|
|
@@ -4106,7 +4118,7 @@
|
|
|
4106
4118
|
.p-dialog .p-dialog-footer {
|
|
4107
4119
|
border-top: 0 none;
|
|
4108
4120
|
background: #ffffff;
|
|
4109
|
-
color: #
|
|
4121
|
+
color: #4b5563;
|
|
4110
4122
|
padding: 0 1.5rem 1.5rem 1.5rem;
|
|
4111
4123
|
text-align: right;
|
|
4112
4124
|
border-bottom-right-radius: 6px;
|
|
@@ -4132,7 +4144,7 @@
|
|
|
4132
4144
|
|
|
4133
4145
|
.p-overlaypanel {
|
|
4134
4146
|
background: #ffffff;
|
|
4135
|
-
color: #
|
|
4147
|
+
color: #4b5563;
|
|
4136
4148
|
border: 0 none;
|
|
4137
4149
|
border-radius: 6px;
|
|
4138
4150
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
|
|
@@ -4174,7 +4186,7 @@
|
|
|
4174
4186
|
|
|
4175
4187
|
.p-sidebar {
|
|
4176
4188
|
background: #ffffff;
|
|
4177
|
-
color: #
|
|
4189
|
+
color: #4b5563;
|
|
4178
4190
|
border: 0 none;
|
|
4179
4191
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
|
|
4180
4192
|
}
|
|
@@ -4185,7 +4197,7 @@
|
|
|
4185
4197
|
.p-sidebar .p-sidebar-header .p-sidebar-icon {
|
|
4186
4198
|
width: 2rem;
|
|
4187
4199
|
height: 2rem;
|
|
4188
|
-
color: #
|
|
4200
|
+
color: #6b7280;
|
|
4189
4201
|
border: 0 none;
|
|
4190
4202
|
background: transparent;
|
|
4191
4203
|
border-radius: 50%;
|
|
@@ -4193,9 +4205,9 @@
|
|
|
4193
4205
|
}
|
|
4194
4206
|
.p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover,
|
|
4195
4207
|
.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover {
|
|
4196
|
-
color: #
|
|
4208
|
+
color: #374151;
|
|
4197
4209
|
border-color: transparent;
|
|
4198
|
-
background: #
|
|
4210
|
+
background: #f3f4f6;
|
|
4199
4211
|
}
|
|
4200
4212
|
.p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible,
|
|
4201
4213
|
.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible {
|
|
@@ -4211,30 +4223,30 @@
|
|
|
4211
4223
|
}
|
|
4212
4224
|
|
|
4213
4225
|
.p-tooltip .p-tooltip-text {
|
|
4214
|
-
background: #
|
|
4226
|
+
background: #4b5563;
|
|
4215
4227
|
color: #ffffff;
|
|
4216
4228
|
padding: 0.75rem 0.75rem;
|
|
4217
4229
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
4218
4230
|
border-radius: 6px;
|
|
4219
4231
|
}
|
|
4220
4232
|
.p-tooltip.p-tooltip-right .p-tooltip-arrow {
|
|
4221
|
-
border-right-color: #
|
|
4233
|
+
border-right-color: #4b5563;
|
|
4222
4234
|
}
|
|
4223
4235
|
.p-tooltip.p-tooltip-left .p-tooltip-arrow {
|
|
4224
|
-
border-left-color: #
|
|
4236
|
+
border-left-color: #4b5563;
|
|
4225
4237
|
}
|
|
4226
4238
|
.p-tooltip.p-tooltip-top .p-tooltip-arrow {
|
|
4227
|
-
border-top-color: #
|
|
4239
|
+
border-top-color: #4b5563;
|
|
4228
4240
|
}
|
|
4229
4241
|
.p-tooltip.p-tooltip-bottom .p-tooltip-arrow {
|
|
4230
|
-
border-bottom-color: #
|
|
4242
|
+
border-bottom-color: #4b5563;
|
|
4231
4243
|
}
|
|
4232
4244
|
|
|
4233
4245
|
.p-fileupload .p-fileupload-buttonbar {
|
|
4234
|
-
background: #
|
|
4246
|
+
background: #f9fafb;
|
|
4235
4247
|
padding: 1.25rem;
|
|
4236
|
-
border: 1px solid #
|
|
4237
|
-
color: #
|
|
4248
|
+
border: 1px solid #e5e7eb;
|
|
4249
|
+
color: #374151;
|
|
4238
4250
|
border-bottom: 0 none;
|
|
4239
4251
|
border-top-right-radius: 6px;
|
|
4240
4252
|
border-top-left-radius: 6px;
|
|
@@ -4246,8 +4258,8 @@
|
|
|
4246
4258
|
.p-fileupload .p-fileupload-content {
|
|
4247
4259
|
background: #ffffff;
|
|
4248
4260
|
padding: 2rem 1rem;
|
|
4249
|
-
border: 1px solid #
|
|
4250
|
-
color: #
|
|
4261
|
+
border: 1px solid #e5e7eb;
|
|
4262
|
+
color: #4b5563;
|
|
4251
4263
|
border-bottom-right-radius: 6px;
|
|
4252
4264
|
border-bottom-left-radius: 6px;
|
|
4253
4265
|
}
|
|
@@ -4263,7 +4275,7 @@
|
|
|
4263
4275
|
|
|
4264
4276
|
.p-breadcrumb {
|
|
4265
4277
|
background: #ffffff;
|
|
4266
|
-
border: 1px solid #
|
|
4278
|
+
border: 1px solid #e5e7eb;
|
|
4267
4279
|
border-radius: 6px;
|
|
4268
4280
|
padding: 1rem;
|
|
4269
4281
|
}
|
|
@@ -4277,26 +4289,26 @@
|
|
|
4277
4289
|
box-shadow: 0 0 0 0.2rem #DDD6FE;
|
|
4278
4290
|
}
|
|
4279
4291
|
.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link .p-menuitem-text {
|
|
4280
|
-
color: #
|
|
4292
|
+
color: #4b5563;
|
|
4281
4293
|
}
|
|
4282
4294
|
.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link .p-menuitem-icon {
|
|
4283
|
-
color: #
|
|
4295
|
+
color: #6b7280;
|
|
4284
4296
|
}
|
|
4285
4297
|
.p-breadcrumb .p-breadcrumb-list li.p-menuitem-separator {
|
|
4286
4298
|
margin: 0 0.5rem 0 0.5rem;
|
|
4287
|
-
color: #
|
|
4299
|
+
color: #4b5563;
|
|
4288
4300
|
}
|
|
4289
4301
|
.p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-text {
|
|
4290
|
-
color: #
|
|
4302
|
+
color: #4b5563;
|
|
4291
4303
|
}
|
|
4292
4304
|
.p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon {
|
|
4293
|
-
color: #
|
|
4305
|
+
color: #6b7280;
|
|
4294
4306
|
}
|
|
4295
4307
|
|
|
4296
4308
|
.p-contextmenu {
|
|
4297
|
-
padding: 0.
|
|
4309
|
+
padding: 0.5rem 0;
|
|
4298
4310
|
background: #ffffff;
|
|
4299
|
-
color: #
|
|
4311
|
+
color: #4b5563;
|
|
4300
4312
|
border: 0 none;
|
|
4301
4313
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
4302
4314
|
border-radius: 6px;
|
|
@@ -4304,32 +4316,32 @@
|
|
|
4304
4316
|
}
|
|
4305
4317
|
.p-contextmenu .p-menuitem-link {
|
|
4306
4318
|
padding: 0.75rem 1.25rem;
|
|
4307
|
-
color: #
|
|
4319
|
+
color: #4b5563;
|
|
4308
4320
|
border-radius: 0;
|
|
4309
4321
|
transition: box-shadow 0.2s;
|
|
4310
4322
|
user-select: none;
|
|
4311
4323
|
}
|
|
4312
4324
|
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
|
4313
|
-
color: #
|
|
4325
|
+
color: #4b5563;
|
|
4314
4326
|
}
|
|
4315
4327
|
.p-contextmenu .p-menuitem-link .p-menuitem-icon {
|
|
4316
|
-
color: #
|
|
4328
|
+
color: #6b7280;
|
|
4317
4329
|
margin-right: 0.5rem;
|
|
4318
4330
|
}
|
|
4319
4331
|
.p-contextmenu .p-menuitem-link .p-submenu-icon {
|
|
4320
|
-
color: #
|
|
4332
|
+
color: #6b7280;
|
|
4321
4333
|
}
|
|
4322
4334
|
.p-contextmenu .p-menuitem-link:not(.p-disabled):hover {
|
|
4323
|
-
background: #
|
|
4335
|
+
background: #f3f4f6;
|
|
4324
4336
|
}
|
|
4325
4337
|
.p-contextmenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
|
4326
|
-
color: #
|
|
4338
|
+
color: #4b5563;
|
|
4327
4339
|
}
|
|
4328
4340
|
.p-contextmenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
|
4329
|
-
color: #
|
|
4341
|
+
color: #6b7280;
|
|
4330
4342
|
}
|
|
4331
4343
|
.p-contextmenu .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
|
4332
|
-
color: #
|
|
4344
|
+
color: #6b7280;
|
|
4333
4345
|
}
|
|
4334
4346
|
.p-contextmenu .p-menuitem-link:focus {
|
|
4335
4347
|
outline: 0 none;
|
|
@@ -4337,7 +4349,7 @@
|
|
|
4337
4349
|
box-shadow: inset 0 0 0 0.15rem #DDD6FE;
|
|
4338
4350
|
}
|
|
4339
4351
|
.p-contextmenu .p-submenu-list {
|
|
4340
|
-
padding: 0.
|
|
4352
|
+
padding: 0.5rem 0;
|
|
4341
4353
|
background: #ffffff;
|
|
4342
4354
|
border: 0 none;
|
|
4343
4355
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
@@ -4353,7 +4365,7 @@
|
|
|
4353
4365
|
color: #6D28D9;
|
|
4354
4366
|
}
|
|
4355
4367
|
.p-contextmenu .p-menu-separator {
|
|
4356
|
-
border-top: 1px solid #
|
|
4368
|
+
border-top: 1px solid #e5e7eb;
|
|
4357
4369
|
margin: 0.25rem 0;
|
|
4358
4370
|
}
|
|
4359
4371
|
.p-contextmenu .p-submenu-icon {
|
|
@@ -4443,40 +4455,40 @@
|
|
|
4443
4455
|
}
|
|
4444
4456
|
.p-megamenu {
|
|
4445
4457
|
padding: 0.5rem;
|
|
4446
|
-
background: #
|
|
4447
|
-
color: #
|
|
4448
|
-
border: 1px solid #
|
|
4458
|
+
background: #f9fafb;
|
|
4459
|
+
color: #4b5563;
|
|
4460
|
+
border: 1px solid #e5e7eb;
|
|
4449
4461
|
border-radius: 6px;
|
|
4450
4462
|
}
|
|
4451
4463
|
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link {
|
|
4452
4464
|
padding: 0.75rem 1.25rem;
|
|
4453
|
-
color: #
|
|
4465
|
+
color: #4b5563;
|
|
4454
4466
|
border-radius: 6px;
|
|
4455
4467
|
transition: box-shadow 0.2s;
|
|
4456
4468
|
user-select: none;
|
|
4457
4469
|
}
|
|
4458
4470
|
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
|
4459
|
-
color: #
|
|
4471
|
+
color: #4b5563;
|
|
4460
4472
|
}
|
|
4461
4473
|
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
|
4462
|
-
color: #
|
|
4474
|
+
color: #6b7280;
|
|
4463
4475
|
margin-right: 0.5rem;
|
|
4464
4476
|
}
|
|
4465
4477
|
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
|
4466
|
-
color: #
|
|
4478
|
+
color: #6b7280;
|
|
4467
4479
|
margin-left: 0.5rem;
|
|
4468
4480
|
}
|
|
4469
4481
|
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
|
4470
|
-
background: #
|
|
4482
|
+
background: #f3f4f6;
|
|
4471
4483
|
}
|
|
4472
4484
|
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
|
4473
|
-
color: #
|
|
4485
|
+
color: #4b5563;
|
|
4474
4486
|
}
|
|
4475
4487
|
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
|
4476
|
-
color: #
|
|
4488
|
+
color: #6b7280;
|
|
4477
4489
|
}
|
|
4478
4490
|
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
|
4479
|
-
color: #
|
|
4491
|
+
color: #6b7280;
|
|
4480
4492
|
}
|
|
4481
4493
|
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:focus {
|
|
4482
4494
|
outline: 0 none;
|
|
@@ -4504,32 +4516,32 @@
|
|
|
4504
4516
|
}
|
|
4505
4517
|
.p-megamenu .p-menuitem-link {
|
|
4506
4518
|
padding: 0.75rem 1.25rem;
|
|
4507
|
-
color: #
|
|
4519
|
+
color: #4b5563;
|
|
4508
4520
|
border-radius: 0;
|
|
4509
4521
|
transition: box-shadow 0.2s;
|
|
4510
4522
|
user-select: none;
|
|
4511
4523
|
}
|
|
4512
4524
|
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
|
4513
|
-
color: #
|
|
4525
|
+
color: #4b5563;
|
|
4514
4526
|
}
|
|
4515
4527
|
.p-megamenu .p-menuitem-link .p-menuitem-icon {
|
|
4516
|
-
color: #
|
|
4528
|
+
color: #6b7280;
|
|
4517
4529
|
margin-right: 0.5rem;
|
|
4518
4530
|
}
|
|
4519
4531
|
.p-megamenu .p-menuitem-link .p-submenu-icon {
|
|
4520
|
-
color: #
|
|
4532
|
+
color: #6b7280;
|
|
4521
4533
|
}
|
|
4522
4534
|
.p-megamenu .p-menuitem-link:not(.p-disabled):hover {
|
|
4523
|
-
background: #
|
|
4535
|
+
background: #f3f4f6;
|
|
4524
4536
|
}
|
|
4525
4537
|
.p-megamenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
|
4526
|
-
color: #
|
|
4538
|
+
color: #4b5563;
|
|
4527
4539
|
}
|
|
4528
4540
|
.p-megamenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
|
4529
|
-
color: #
|
|
4541
|
+
color: #6b7280;
|
|
4530
4542
|
}
|
|
4531
4543
|
.p-megamenu .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
|
4532
|
-
color: #
|
|
4544
|
+
color: #6b7280;
|
|
4533
4545
|
}
|
|
4534
4546
|
.p-megamenu .p-menuitem-link:focus {
|
|
4535
4547
|
outline: 0 none;
|
|
@@ -4538,25 +4550,25 @@
|
|
|
4538
4550
|
}
|
|
4539
4551
|
.p-megamenu .p-megamenu-panel {
|
|
4540
4552
|
background: #ffffff;
|
|
4541
|
-
color: #
|
|
4553
|
+
color: #4b5563;
|
|
4542
4554
|
border: 0 none;
|
|
4543
4555
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
4544
4556
|
}
|
|
4545
4557
|
.p-megamenu .p-megamenu-submenu-header {
|
|
4546
4558
|
margin: 0;
|
|
4547
4559
|
padding: 0.75rem 1.25rem;
|
|
4548
|
-
color: #
|
|
4560
|
+
color: #374151;
|
|
4549
4561
|
background: #ffffff;
|
|
4550
4562
|
font-weight: 700;
|
|
4551
4563
|
border-top-right-radius: 6px;
|
|
4552
4564
|
border-top-left-radius: 6px;
|
|
4553
4565
|
}
|
|
4554
4566
|
.p-megamenu .p-megamenu-submenu {
|
|
4555
|
-
padding: 0.
|
|
4567
|
+
padding: 0.5rem 0;
|
|
4556
4568
|
width: 12.5rem;
|
|
4557
4569
|
}
|
|
4558
4570
|
.p-megamenu .p-megamenu-submenu .p-menu-separator {
|
|
4559
|
-
border-top: 1px solid #
|
|
4571
|
+
border-top: 1px solid #e5e7eb;
|
|
4560
4572
|
margin: 0.25rem 0;
|
|
4561
4573
|
}
|
|
4562
4574
|
.p-megamenu .p-menuitem.p-menuitem-active > .p-menuitem-link {
|
|
@@ -4570,18 +4582,18 @@
|
|
|
4570
4582
|
}
|
|
4571
4583
|
.p-megamenu.p-megamenu-vertical {
|
|
4572
4584
|
width: 12.5rem;
|
|
4573
|
-
padding: 0.
|
|
4585
|
+
padding: 0.5rem 0;
|
|
4574
4586
|
}
|
|
4575
4587
|
.p-megamenu .p-megamenu-button {
|
|
4576
4588
|
width: 2rem;
|
|
4577
4589
|
height: 2rem;
|
|
4578
|
-
color: #
|
|
4590
|
+
color: #6b7280;
|
|
4579
4591
|
border-radius: 50%;
|
|
4580
4592
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
4581
4593
|
}
|
|
4582
4594
|
.p-megamenu .p-megamenu-button:hover {
|
|
4583
|
-
color: #
|
|
4584
|
-
background: #
|
|
4595
|
+
color: #6b7280;
|
|
4596
|
+
background: #f3f4f6;
|
|
4585
4597
|
}
|
|
4586
4598
|
.p-megamenu .p-megamenu-button:focus {
|
|
4587
4599
|
outline: 0 none;
|
|
@@ -4592,13 +4604,13 @@
|
|
|
4592
4604
|
transition: transform 0.2s;
|
|
4593
4605
|
}
|
|
4594
4606
|
.p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list {
|
|
4595
|
-
padding: 0.
|
|
4607
|
+
padding: 0.5rem 0;
|
|
4596
4608
|
background: #ffffff;
|
|
4597
4609
|
border: 0 none;
|
|
4598
4610
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
4599
4611
|
}
|
|
4600
4612
|
.p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list .p-menu-separator {
|
|
4601
|
-
border-top: 1px solid #
|
|
4613
|
+
border-top: 1px solid #e5e7eb;
|
|
4602
4614
|
margin: 0.25rem 0;
|
|
4603
4615
|
}
|
|
4604
4616
|
.p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list .p-submenu-icon {
|
|
@@ -4614,32 +4626,32 @@
|
|
|
4614
4626
|
}
|
|
4615
4627
|
.p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link {
|
|
4616
4628
|
padding: 0.75rem 1.25rem;
|
|
4617
|
-
color: #
|
|
4629
|
+
color: #4b5563;
|
|
4618
4630
|
border-radius: 0;
|
|
4619
4631
|
transition: box-shadow 0.2s;
|
|
4620
4632
|
user-select: none;
|
|
4621
4633
|
}
|
|
4622
4634
|
.p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
|
4623
|
-
color: #
|
|
4635
|
+
color: #4b5563;
|
|
4624
4636
|
}
|
|
4625
4637
|
.p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
|
4626
|
-
color: #
|
|
4638
|
+
color: #6b7280;
|
|
4627
4639
|
margin-right: 0.5rem;
|
|
4628
4640
|
}
|
|
4629
4641
|
.p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
|
4630
|
-
color: #
|
|
4642
|
+
color: #6b7280;
|
|
4631
4643
|
}
|
|
4632
4644
|
.p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
|
4633
|
-
background: #
|
|
4645
|
+
background: #f3f4f6;
|
|
4634
4646
|
}
|
|
4635
4647
|
.p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
|
4636
|
-
color: #
|
|
4648
|
+
color: #4b5563;
|
|
4637
4649
|
}
|
|
4638
4650
|
.p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
|
4639
|
-
color: #
|
|
4651
|
+
color: #6b7280;
|
|
4640
4652
|
}
|
|
4641
4653
|
.p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
|
4642
|
-
color: #
|
|
4654
|
+
color: #6b7280;
|
|
4643
4655
|
}
|
|
4644
4656
|
.p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:focus {
|
|
4645
4657
|
outline: 0 none;
|
|
@@ -4671,41 +4683,41 @@
|
|
|
4671
4683
|
}
|
|
4672
4684
|
|
|
4673
4685
|
.p-menu {
|
|
4674
|
-
padding: 0.
|
|
4686
|
+
padding: 0.5rem 0;
|
|
4675
4687
|
background: #ffffff;
|
|
4676
|
-
color: #
|
|
4677
|
-
border: 1px solid #
|
|
4688
|
+
color: #4b5563;
|
|
4689
|
+
border: 1px solid #e5e7eb;
|
|
4678
4690
|
border-radius: 6px;
|
|
4679
4691
|
width: 12.5rem;
|
|
4680
4692
|
}
|
|
4681
4693
|
.p-menu .p-menuitem-link {
|
|
4682
4694
|
padding: 0.75rem 1.25rem;
|
|
4683
|
-
color: #
|
|
4695
|
+
color: #4b5563;
|
|
4684
4696
|
border-radius: 0;
|
|
4685
4697
|
transition: box-shadow 0.2s;
|
|
4686
4698
|
user-select: none;
|
|
4687
4699
|
}
|
|
4688
4700
|
.p-menu .p-menuitem-link .p-menuitem-text {
|
|
4689
|
-
color: #
|
|
4701
|
+
color: #4b5563;
|
|
4690
4702
|
}
|
|
4691
4703
|
.p-menu .p-menuitem-link .p-menuitem-icon {
|
|
4692
|
-
color: #
|
|
4704
|
+
color: #6b7280;
|
|
4693
4705
|
margin-right: 0.5rem;
|
|
4694
4706
|
}
|
|
4695
4707
|
.p-menu .p-menuitem-link .p-submenu-icon {
|
|
4696
|
-
color: #
|
|
4708
|
+
color: #6b7280;
|
|
4697
4709
|
}
|
|
4698
4710
|
.p-menu .p-menuitem-link:not(.p-disabled):hover {
|
|
4699
|
-
background: #
|
|
4711
|
+
background: #f3f4f6;
|
|
4700
4712
|
}
|
|
4701
4713
|
.p-menu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
|
4702
|
-
color: #
|
|
4714
|
+
color: #4b5563;
|
|
4703
4715
|
}
|
|
4704
4716
|
.p-menu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
|
4705
|
-
color: #
|
|
4717
|
+
color: #6b7280;
|
|
4706
4718
|
}
|
|
4707
4719
|
.p-menu .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
|
4708
|
-
color: #
|
|
4720
|
+
color: #6b7280;
|
|
4709
4721
|
}
|
|
4710
4722
|
.p-menu .p-menuitem-link:focus {
|
|
4711
4723
|
outline: 0 none;
|
|
@@ -4720,52 +4732,52 @@
|
|
|
4720
4732
|
.p-menu .p-submenu-header {
|
|
4721
4733
|
margin: 0;
|
|
4722
4734
|
padding: 0.75rem 1.25rem;
|
|
4723
|
-
color: #
|
|
4735
|
+
color: #374151;
|
|
4724
4736
|
background: #ffffff;
|
|
4725
4737
|
font-weight: 700;
|
|
4726
4738
|
border-top-right-radius: 0;
|
|
4727
4739
|
border-top-left-radius: 0;
|
|
4728
4740
|
}
|
|
4729
4741
|
.p-menu .p-menu-separator {
|
|
4730
|
-
border-top: 1px solid #
|
|
4742
|
+
border-top: 1px solid #e5e7eb;
|
|
4731
4743
|
margin: 0.25rem 0;
|
|
4732
4744
|
}
|
|
4733
4745
|
|
|
4734
4746
|
.p-menubar {
|
|
4735
4747
|
padding: 0.5rem;
|
|
4736
|
-
background: #
|
|
4737
|
-
color: #
|
|
4738
|
-
border: 1px solid #
|
|
4748
|
+
background: #f9fafb;
|
|
4749
|
+
color: #4b5563;
|
|
4750
|
+
border: 1px solid #e5e7eb;
|
|
4739
4751
|
border-radius: 6px;
|
|
4740
4752
|
}
|
|
4741
4753
|
.p-menubar .p-menuitem-link {
|
|
4742
4754
|
padding: 0.75rem 1.25rem;
|
|
4743
|
-
color: #
|
|
4755
|
+
color: #4b5563;
|
|
4744
4756
|
border-radius: 0;
|
|
4745
4757
|
transition: box-shadow 0.2s;
|
|
4746
4758
|
user-select: none;
|
|
4747
4759
|
}
|
|
4748
4760
|
.p-menubar .p-menuitem-link .p-menuitem-text {
|
|
4749
|
-
color: #
|
|
4761
|
+
color: #4b5563;
|
|
4750
4762
|
}
|
|
4751
4763
|
.p-menubar .p-menuitem-link .p-menuitem-icon {
|
|
4752
|
-
color: #
|
|
4764
|
+
color: #6b7280;
|
|
4753
4765
|
margin-right: 0.5rem;
|
|
4754
4766
|
}
|
|
4755
4767
|
.p-menubar .p-menuitem-link .p-submenu-icon {
|
|
4756
|
-
color: #
|
|
4768
|
+
color: #6b7280;
|
|
4757
4769
|
}
|
|
4758
4770
|
.p-menubar .p-menuitem-link:not(.p-disabled):hover {
|
|
4759
|
-
background: #
|
|
4771
|
+
background: #f3f4f6;
|
|
4760
4772
|
}
|
|
4761
4773
|
.p-menubar .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
|
4762
|
-
color: #
|
|
4774
|
+
color: #4b5563;
|
|
4763
4775
|
}
|
|
4764
4776
|
.p-menubar .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
|
4765
|
-
color: #
|
|
4777
|
+
color: #6b7280;
|
|
4766
4778
|
}
|
|
4767
4779
|
.p-menubar .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
|
4768
|
-
color: #
|
|
4780
|
+
color: #6b7280;
|
|
4769
4781
|
}
|
|
4770
4782
|
.p-menubar .p-menuitem-link:focus {
|
|
4771
4783
|
outline: 0 none;
|
|
@@ -4774,33 +4786,33 @@
|
|
|
4774
4786
|
}
|
|
4775
4787
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
|
4776
4788
|
padding: 0.75rem 1.25rem;
|
|
4777
|
-
color: #
|
|
4789
|
+
color: #4b5563;
|
|
4778
4790
|
border-radius: 6px;
|
|
4779
4791
|
transition: box-shadow 0.2s;
|
|
4780
4792
|
user-select: none;
|
|
4781
4793
|
}
|
|
4782
4794
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
|
4783
|
-
color: #
|
|
4795
|
+
color: #4b5563;
|
|
4784
4796
|
}
|
|
4785
4797
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
|
4786
|
-
color: #
|
|
4798
|
+
color: #6b7280;
|
|
4787
4799
|
margin-right: 0.5rem;
|
|
4788
4800
|
}
|
|
4789
4801
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
|
4790
|
-
color: #
|
|
4802
|
+
color: #6b7280;
|
|
4791
4803
|
margin-left: 0.5rem;
|
|
4792
4804
|
}
|
|
4793
4805
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
|
4794
|
-
background: #
|
|
4806
|
+
background: #f3f4f6;
|
|
4795
4807
|
}
|
|
4796
4808
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
|
4797
|
-
color: #
|
|
4809
|
+
color: #4b5563;
|
|
4798
4810
|
}
|
|
4799
4811
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
|
4800
|
-
color: #
|
|
4812
|
+
color: #6b7280;
|
|
4801
4813
|
}
|
|
4802
4814
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
|
4803
|
-
color: #
|
|
4815
|
+
color: #6b7280;
|
|
4804
4816
|
}
|
|
4805
4817
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
|
4806
4818
|
outline: 0 none;
|
|
@@ -4824,14 +4836,14 @@
|
|
|
4824
4836
|
color: #6D28D9;
|
|
4825
4837
|
}
|
|
4826
4838
|
.p-menubar .p-submenu-list {
|
|
4827
|
-
padding: 0.
|
|
4839
|
+
padding: 0.5rem 0;
|
|
4828
4840
|
background: #ffffff;
|
|
4829
4841
|
border: 0 none;
|
|
4830
4842
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
4831
4843
|
width: 12.5rem;
|
|
4832
4844
|
}
|
|
4833
4845
|
.p-menubar .p-submenu-list .p-menu-separator {
|
|
4834
|
-
border-top: 1px solid #
|
|
4846
|
+
border-top: 1px solid #e5e7eb;
|
|
4835
4847
|
margin: 0.25rem 0;
|
|
4836
4848
|
}
|
|
4837
4849
|
.p-menubar .p-submenu-list .p-submenu-icon {
|
|
@@ -4859,13 +4871,13 @@
|
|
|
4859
4871
|
display: flex;
|
|
4860
4872
|
width: 2rem;
|
|
4861
4873
|
height: 2rem;
|
|
4862
|
-
color: #
|
|
4874
|
+
color: #6b7280;
|
|
4863
4875
|
border-radius: 50%;
|
|
4864
4876
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
4865
4877
|
}
|
|
4866
4878
|
.p-menubar .p-menubar-button:hover {
|
|
4867
|
-
color: #
|
|
4868
|
-
background: #
|
|
4879
|
+
color: #6b7280;
|
|
4880
|
+
background: #f3f4f6;
|
|
4869
4881
|
}
|
|
4870
4882
|
.p-menubar .p-menubar-button:focus {
|
|
4871
4883
|
outline: 0 none;
|
|
@@ -4875,14 +4887,14 @@
|
|
|
4875
4887
|
.p-menubar .p-menubar-root-list {
|
|
4876
4888
|
position: absolute;
|
|
4877
4889
|
display: none;
|
|
4878
|
-
padding: 0.
|
|
4890
|
+
padding: 0.5rem 0;
|
|
4879
4891
|
background: #ffffff;
|
|
4880
4892
|
border: 0 none;
|
|
4881
4893
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
4882
4894
|
width: 100%;
|
|
4883
4895
|
}
|
|
4884
4896
|
.p-menubar .p-menubar-root-list .p-menu-separator {
|
|
4885
|
-
border-top: 1px solid #
|
|
4897
|
+
border-top: 1px solid #e5e7eb;
|
|
4886
4898
|
margin: 0.25rem 0;
|
|
4887
4899
|
}
|
|
4888
4900
|
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
|
@@ -4898,32 +4910,32 @@
|
|
|
4898
4910
|
}
|
|
4899
4911
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
|
4900
4912
|
padding: 0.75rem 1.25rem;
|
|
4901
|
-
color: #
|
|
4913
|
+
color: #4b5563;
|
|
4902
4914
|
border-radius: 0;
|
|
4903
4915
|
transition: box-shadow 0.2s;
|
|
4904
4916
|
user-select: none;
|
|
4905
4917
|
}
|
|
4906
4918
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
|
4907
|
-
color: #
|
|
4919
|
+
color: #4b5563;
|
|
4908
4920
|
}
|
|
4909
4921
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
|
4910
|
-
color: #
|
|
4922
|
+
color: #6b7280;
|
|
4911
4923
|
margin-right: 0.5rem;
|
|
4912
4924
|
}
|
|
4913
4925
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
|
4914
|
-
color: #
|
|
4926
|
+
color: #6b7280;
|
|
4915
4927
|
}
|
|
4916
4928
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
|
4917
|
-
background: #
|
|
4929
|
+
background: #f3f4f6;
|
|
4918
4930
|
}
|
|
4919
4931
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
|
4920
|
-
color: #
|
|
4932
|
+
color: #4b5563;
|
|
4921
4933
|
}
|
|
4922
4934
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
|
4923
|
-
color: #
|
|
4935
|
+
color: #6b7280;
|
|
4924
4936
|
}
|
|
4925
4937
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
|
4926
|
-
color: #
|
|
4938
|
+
color: #6b7280;
|
|
4927
4939
|
}
|
|
4928
4940
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
|
4929
4941
|
outline: 0 none;
|
|
@@ -4979,9 +4991,9 @@
|
|
|
4979
4991
|
}
|
|
4980
4992
|
.p-panelmenu .p-panelmenu-header > a {
|
|
4981
4993
|
padding: 1.25rem;
|
|
4982
|
-
border: 1px solid #
|
|
4983
|
-
color: #
|
|
4984
|
-
background: #
|
|
4994
|
+
border: 1px solid #e5e7eb;
|
|
4995
|
+
color: #6b7280;
|
|
4996
|
+
background: #f9fafb;
|
|
4985
4997
|
font-weight: 700;
|
|
4986
4998
|
border-radius: 6px;
|
|
4987
4999
|
transition: box-shadow 0.2s;
|
|
@@ -4998,30 +5010,30 @@
|
|
|
4998
5010
|
box-shadow: 0 0 0 0.2rem #DDD6FE;
|
|
4999
5011
|
}
|
|
5000
5012
|
.p-panelmenu .p-panelmenu-header:not(.p-highlight):not(.p-disabled) > a:hover {
|
|
5001
|
-
background: #
|
|
5002
|
-
border-color: #
|
|
5003
|
-
color: #
|
|
5013
|
+
background: #f3f4f6;
|
|
5014
|
+
border-color: #e5e7eb;
|
|
5015
|
+
color: #374151;
|
|
5004
5016
|
}
|
|
5005
5017
|
.p-panelmenu .p-panelmenu-header.p-highlight {
|
|
5006
5018
|
margin-bottom: 0;
|
|
5007
5019
|
}
|
|
5008
5020
|
.p-panelmenu .p-panelmenu-header.p-highlight > a {
|
|
5009
|
-
background: #
|
|
5010
|
-
border-color: #
|
|
5011
|
-
color: #
|
|
5021
|
+
background: #f9fafb;
|
|
5022
|
+
border-color: #e5e7eb;
|
|
5023
|
+
color: #374151;
|
|
5012
5024
|
border-bottom-right-radius: 0;
|
|
5013
5025
|
border-bottom-left-radius: 0;
|
|
5014
5026
|
}
|
|
5015
5027
|
.p-panelmenu .p-panelmenu-header.p-highlight:not(.p-disabled) > a:hover {
|
|
5016
|
-
border-color: #
|
|
5017
|
-
background: #
|
|
5018
|
-
color: #
|
|
5028
|
+
border-color: #e5e7eb;
|
|
5029
|
+
background: #f3f4f6;
|
|
5030
|
+
color: #374151;
|
|
5019
5031
|
}
|
|
5020
5032
|
.p-panelmenu .p-panelmenu-content {
|
|
5021
|
-
padding: 0.
|
|
5022
|
-
border: 1px solid #
|
|
5033
|
+
padding: 0.5rem 0;
|
|
5034
|
+
border: 1px solid #e5e7eb;
|
|
5023
5035
|
background: #ffffff;
|
|
5024
|
-
color: #
|
|
5036
|
+
color: #4b5563;
|
|
5025
5037
|
border-top: 0;
|
|
5026
5038
|
border-top-right-radius: 0;
|
|
5027
5039
|
border-top-left-radius: 0;
|
|
@@ -5030,32 +5042,32 @@
|
|
|
5030
5042
|
}
|
|
5031
5043
|
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link {
|
|
5032
5044
|
padding: 0.75rem 1.25rem;
|
|
5033
|
-
color: #
|
|
5045
|
+
color: #4b5563;
|
|
5034
5046
|
border-radius: 0;
|
|
5035
5047
|
transition: box-shadow 0.2s;
|
|
5036
5048
|
user-select: none;
|
|
5037
5049
|
}
|
|
5038
5050
|
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
|
5039
|
-
color: #
|
|
5051
|
+
color: #4b5563;
|
|
5040
5052
|
}
|
|
5041
5053
|
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-icon {
|
|
5042
|
-
color: #
|
|
5054
|
+
color: #6b7280;
|
|
5043
5055
|
margin-right: 0.5rem;
|
|
5044
5056
|
}
|
|
5045
5057
|
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-submenu-icon {
|
|
5046
|
-
color: #
|
|
5058
|
+
color: #6b7280;
|
|
5047
5059
|
}
|
|
5048
5060
|
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:not(.p-disabled):hover {
|
|
5049
|
-
background: #
|
|
5061
|
+
background: #f3f4f6;
|
|
5050
5062
|
}
|
|
5051
5063
|
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
|
5052
|
-
color: #
|
|
5064
|
+
color: #4b5563;
|
|
5053
5065
|
}
|
|
5054
5066
|
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
|
5055
|
-
color: #
|
|
5067
|
+
color: #6b7280;
|
|
5056
5068
|
}
|
|
5057
5069
|
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
|
5058
|
-
color: #
|
|
5070
|
+
color: #6b7280;
|
|
5059
5071
|
}
|
|
5060
5072
|
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:focus {
|
|
5061
5073
|
outline: 0 none;
|
|
@@ -5073,41 +5085,41 @@
|
|
|
5073
5085
|
}
|
|
5074
5086
|
|
|
5075
5087
|
.p-slidemenu {
|
|
5076
|
-
padding: 0.
|
|
5088
|
+
padding: 0.5rem 0;
|
|
5077
5089
|
background: #ffffff;
|
|
5078
|
-
color: #
|
|
5079
|
-
border: 1px solid #
|
|
5090
|
+
color: #4b5563;
|
|
5091
|
+
border: 1px solid #e5e7eb;
|
|
5080
5092
|
border-radius: 6px;
|
|
5081
5093
|
width: 12.5rem;
|
|
5082
5094
|
}
|
|
5083
5095
|
.p-slidemenu .p-menuitem-link {
|
|
5084
5096
|
padding: 0.75rem 1.25rem;
|
|
5085
|
-
color: #
|
|
5097
|
+
color: #4b5563;
|
|
5086
5098
|
border-radius: 0;
|
|
5087
5099
|
transition: box-shadow 0.2s;
|
|
5088
5100
|
user-select: none;
|
|
5089
5101
|
}
|
|
5090
5102
|
.p-slidemenu .p-menuitem-link .p-menuitem-text {
|
|
5091
|
-
color: #
|
|
5103
|
+
color: #4b5563;
|
|
5092
5104
|
}
|
|
5093
5105
|
.p-slidemenu .p-menuitem-link .p-menuitem-icon {
|
|
5094
|
-
color: #
|
|
5106
|
+
color: #6b7280;
|
|
5095
5107
|
margin-right: 0.5rem;
|
|
5096
5108
|
}
|
|
5097
5109
|
.p-slidemenu .p-menuitem-link .p-submenu-icon {
|
|
5098
|
-
color: #
|
|
5110
|
+
color: #6b7280;
|
|
5099
5111
|
}
|
|
5100
5112
|
.p-slidemenu .p-menuitem-link:not(.p-disabled):hover {
|
|
5101
|
-
background: #
|
|
5113
|
+
background: #f3f4f6;
|
|
5102
5114
|
}
|
|
5103
5115
|
.p-slidemenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
|
5104
|
-
color: #
|
|
5116
|
+
color: #4b5563;
|
|
5105
5117
|
}
|
|
5106
5118
|
.p-slidemenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
|
5107
|
-
color: #
|
|
5119
|
+
color: #6b7280;
|
|
5108
5120
|
}
|
|
5109
5121
|
.p-slidemenu .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
|
5110
|
-
color: #
|
|
5122
|
+
color: #6b7280;
|
|
5111
5123
|
}
|
|
5112
5124
|
.p-slidemenu .p-menuitem-link:focus {
|
|
5113
5125
|
outline: 0 none;
|
|
@@ -5120,7 +5132,7 @@
|
|
|
5120
5132
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
5121
5133
|
}
|
|
5122
5134
|
.p-slidemenu .p-slidemenu-list {
|
|
5123
|
-
padding: 0.
|
|
5135
|
+
padding: 0.5rem 0;
|
|
5124
5136
|
background: #ffffff;
|
|
5125
5137
|
border: 0 none;
|
|
5126
5138
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
@@ -5135,7 +5147,7 @@
|
|
|
5135
5147
|
color: #6D28D9;
|
|
5136
5148
|
}
|
|
5137
5149
|
.p-slidemenu .p-slidemenu-separator {
|
|
5138
|
-
border-top: 1px solid #
|
|
5150
|
+
border-top: 1px solid #e5e7eb;
|
|
5139
5151
|
margin: 0.25rem 0;
|
|
5140
5152
|
}
|
|
5141
5153
|
.p-slidemenu .p-slidemenu-icon {
|
|
@@ -5147,7 +5159,7 @@
|
|
|
5147
5159
|
}
|
|
5148
5160
|
.p-slidemenu .p-slidemenu-backward {
|
|
5149
5161
|
padding: 0.75rem 1.25rem;
|
|
5150
|
-
color: #
|
|
5162
|
+
color: #4b5563;
|
|
5151
5163
|
}
|
|
5152
5164
|
|
|
5153
5165
|
.p-steps .p-steps-item .p-menuitem-link {
|
|
@@ -5157,8 +5169,8 @@
|
|
|
5157
5169
|
background: #ffffff;
|
|
5158
5170
|
}
|
|
5159
5171
|
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
|
5160
|
-
color: #
|
|
5161
|
-
border: 1px solid #
|
|
5172
|
+
color: #4b5563;
|
|
5173
|
+
border: 1px solid #f3f4f6;
|
|
5162
5174
|
background: #ffffff;
|
|
5163
5175
|
min-width: 2rem;
|
|
5164
5176
|
height: 2rem;
|
|
@@ -5169,7 +5181,7 @@
|
|
|
5169
5181
|
}
|
|
5170
5182
|
.p-steps .p-steps-item .p-menuitem-link .p-steps-title {
|
|
5171
5183
|
margin-top: 0.5rem;
|
|
5172
|
-
color: #
|
|
5184
|
+
color: #6b7280;
|
|
5173
5185
|
}
|
|
5174
5186
|
.p-steps .p-steps-item .p-menuitem-link:not(.p-disabled):focus-visible {
|
|
5175
5187
|
outline: 0 none;
|
|
@@ -5182,11 +5194,11 @@
|
|
|
5182
5194
|
}
|
|
5183
5195
|
.p-steps .p-steps-item.p-highlight .p-steps-title {
|
|
5184
5196
|
font-weight: 700;
|
|
5185
|
-
color: #
|
|
5197
|
+
color: #4b5563;
|
|
5186
5198
|
}
|
|
5187
5199
|
.p-steps .p-steps-item:before {
|
|
5188
5200
|
content: " ";
|
|
5189
|
-
border-top: 1px solid #
|
|
5201
|
+
border-top: 1px solid #e5e7eb;
|
|
5190
5202
|
width: 100%;
|
|
5191
5203
|
top: 50%;
|
|
5192
5204
|
left: 0;
|
|
@@ -5197,18 +5209,18 @@
|
|
|
5197
5209
|
|
|
5198
5210
|
.p-tabmenu .p-tabmenu-nav {
|
|
5199
5211
|
background: #ffffff;
|
|
5200
|
-
border: 1px solid #
|
|
5212
|
+
border: 1px solid #e5e7eb;
|
|
5201
5213
|
border-width: 0 0 2px 0;
|
|
5202
5214
|
}
|
|
5203
5215
|
.p-tabmenu .p-tabmenu-nav .p-tabmenuitem {
|
|
5204
5216
|
margin-right: 0;
|
|
5205
5217
|
}
|
|
5206
5218
|
.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link {
|
|
5207
|
-
border: solid #
|
|
5219
|
+
border: solid #e5e7eb;
|
|
5208
5220
|
border-width: 0 0 2px 0;
|
|
5209
|
-
border-color: transparent transparent #
|
|
5221
|
+
border-color: transparent transparent #e5e7eb transparent;
|
|
5210
5222
|
background: #ffffff;
|
|
5211
|
-
color: #
|
|
5223
|
+
color: #6b7280;
|
|
5212
5224
|
padding: 1.25rem;
|
|
5213
5225
|
font-weight: 700;
|
|
5214
5226
|
border-top-right-radius: 6px;
|
|
@@ -5227,8 +5239,8 @@
|
|
|
5227
5239
|
}
|
|
5228
5240
|
.p-tabmenu .p-tabmenu-nav .p-tabmenuitem:not(.p-highlight):not(.p-disabled):hover .p-menuitem-link {
|
|
5229
5241
|
background: #ffffff;
|
|
5230
|
-
border-color: #
|
|
5231
|
-
color: #
|
|
5242
|
+
border-color: #9ca3af;
|
|
5243
|
+
color: #6b7280;
|
|
5232
5244
|
}
|
|
5233
5245
|
.p-tabmenu .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link {
|
|
5234
5246
|
background: #ffffff;
|
|
@@ -5237,41 +5249,41 @@
|
|
|
5237
5249
|
}
|
|
5238
5250
|
|
|
5239
5251
|
.p-tieredmenu {
|
|
5240
|
-
padding: 0.
|
|
5252
|
+
padding: 0.5rem 0;
|
|
5241
5253
|
background: #ffffff;
|
|
5242
|
-
color: #
|
|
5243
|
-
border: 1px solid #
|
|
5254
|
+
color: #4b5563;
|
|
5255
|
+
border: 1px solid #e5e7eb;
|
|
5244
5256
|
border-radius: 6px;
|
|
5245
5257
|
width: 12.5rem;
|
|
5246
5258
|
}
|
|
5247
5259
|
.p-tieredmenu .p-menuitem-link {
|
|
5248
5260
|
padding: 0.75rem 1.25rem;
|
|
5249
|
-
color: #
|
|
5261
|
+
color: #4b5563;
|
|
5250
5262
|
border-radius: 0;
|
|
5251
5263
|
transition: box-shadow 0.2s;
|
|
5252
5264
|
user-select: none;
|
|
5253
5265
|
}
|
|
5254
5266
|
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
|
5255
|
-
color: #
|
|
5267
|
+
color: #4b5563;
|
|
5256
5268
|
}
|
|
5257
5269
|
.p-tieredmenu .p-menuitem-link .p-menuitem-icon {
|
|
5258
|
-
color: #
|
|
5270
|
+
color: #6b7280;
|
|
5259
5271
|
margin-right: 0.5rem;
|
|
5260
5272
|
}
|
|
5261
5273
|
.p-tieredmenu .p-menuitem-link .p-submenu-icon {
|
|
5262
|
-
color: #
|
|
5274
|
+
color: #6b7280;
|
|
5263
5275
|
}
|
|
5264
5276
|
.p-tieredmenu .p-menuitem-link:not(.p-disabled):hover {
|
|
5265
|
-
background: #
|
|
5277
|
+
background: #f3f4f6;
|
|
5266
5278
|
}
|
|
5267
5279
|
.p-tieredmenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
|
5268
|
-
color: #
|
|
5280
|
+
color: #4b5563;
|
|
5269
5281
|
}
|
|
5270
5282
|
.p-tieredmenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
|
5271
|
-
color: #
|
|
5283
|
+
color: #6b7280;
|
|
5272
5284
|
}
|
|
5273
5285
|
.p-tieredmenu .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
|
5274
|
-
color: #
|
|
5286
|
+
color: #6b7280;
|
|
5275
5287
|
}
|
|
5276
5288
|
.p-tieredmenu .p-menuitem-link:focus {
|
|
5277
5289
|
outline: 0 none;
|
|
@@ -5284,7 +5296,7 @@
|
|
|
5284
5296
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
5285
5297
|
}
|
|
5286
5298
|
.p-tieredmenu .p-submenu-list {
|
|
5287
|
-
padding: 0.
|
|
5299
|
+
padding: 0.5rem 0;
|
|
5288
5300
|
background: #ffffff;
|
|
5289
5301
|
border: 0 none;
|
|
5290
5302
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
@@ -5299,7 +5311,7 @@
|
|
|
5299
5311
|
color: #6D28D9;
|
|
5300
5312
|
}
|
|
5301
5313
|
.p-tieredmenu .p-menu-separator {
|
|
5302
|
-
border-top: 1px solid #
|
|
5314
|
+
border-top: 1px solid #e5e7eb;
|
|
5303
5315
|
margin: 0.25rem 0;
|
|
5304
5316
|
}
|
|
5305
5317
|
.p-tieredmenu .p-submenu-icon {
|
|
@@ -5317,16 +5329,16 @@
|
|
|
5317
5329
|
border-radius: 6px;
|
|
5318
5330
|
}
|
|
5319
5331
|
.p-inline-message.p-inline-message-info {
|
|
5320
|
-
background:
|
|
5321
|
-
border: solid #
|
|
5332
|
+
background: rgba(219, 234, 254, 0.7);
|
|
5333
|
+
border: solid #3b82f6;
|
|
5322
5334
|
border-width: 0px;
|
|
5323
|
-
color: #
|
|
5335
|
+
color: #3b82f6;
|
|
5324
5336
|
}
|
|
5325
5337
|
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
|
5326
|
-
color: #
|
|
5338
|
+
color: #3b82f6;
|
|
5327
5339
|
}
|
|
5328
5340
|
.p-inline-message.p-inline-message-success {
|
|
5329
|
-
background:
|
|
5341
|
+
background: rgba(228, 248, 240, 0.7);
|
|
5330
5342
|
border: solid #1ea97c;
|
|
5331
5343
|
border-width: 0px;
|
|
5332
5344
|
color: #1ea97c;
|
|
@@ -5335,7 +5347,7 @@
|
|
|
5335
5347
|
color: #1ea97c;
|
|
5336
5348
|
}
|
|
5337
5349
|
.p-inline-message.p-inline-message-warn {
|
|
5338
|
-
background:
|
|
5350
|
+
background: rgba(255, 242, 226, 0.7);
|
|
5339
5351
|
border: solid #cc8925;
|
|
5340
5352
|
border-width: 0px;
|
|
5341
5353
|
color: #cc8925;
|
|
@@ -5344,7 +5356,7 @@
|
|
|
5344
5356
|
color: #cc8925;
|
|
5345
5357
|
}
|
|
5346
5358
|
.p-inline-message.p-inline-message-error {
|
|
5347
|
-
background:
|
|
5359
|
+
background: rgba(255, 231, 230, 0.7);
|
|
5348
5360
|
border: solid #ff5757;
|
|
5349
5361
|
border-width: 0px;
|
|
5350
5362
|
color: #ff5757;
|
|
@@ -5382,7 +5394,7 @@
|
|
|
5382
5394
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
5383
5395
|
}
|
|
5384
5396
|
.p-message .p-message-close:hover {
|
|
5385
|
-
background: rgba(255, 255, 255, 0.
|
|
5397
|
+
background: rgba(255, 255, 255, 0.5);
|
|
5386
5398
|
}
|
|
5387
5399
|
.p-message .p-message-close:focus-visible {
|
|
5388
5400
|
outline: 0 none;
|
|
@@ -5390,19 +5402,19 @@
|
|
|
5390
5402
|
box-shadow: 0 0 0 0.2rem #DDD6FE;
|
|
5391
5403
|
}
|
|
5392
5404
|
.p-message.p-message-info {
|
|
5393
|
-
background:
|
|
5394
|
-
border: solid #
|
|
5405
|
+
background: rgba(219, 234, 254, 0.7);
|
|
5406
|
+
border: solid #3b82f6;
|
|
5395
5407
|
border-width: 0 0 0 6px;
|
|
5396
|
-
color: #
|
|
5408
|
+
color: #3b82f6;
|
|
5397
5409
|
}
|
|
5398
5410
|
.p-message.p-message-info .p-message-icon {
|
|
5399
|
-
color: #
|
|
5411
|
+
color: #3b82f6;
|
|
5400
5412
|
}
|
|
5401
5413
|
.p-message.p-message-info .p-message-close {
|
|
5402
|
-
color: #
|
|
5414
|
+
color: #3b82f6;
|
|
5403
5415
|
}
|
|
5404
5416
|
.p-message.p-message-success {
|
|
5405
|
-
background:
|
|
5417
|
+
background: rgba(228, 248, 240, 0.7);
|
|
5406
5418
|
border: solid #1ea97c;
|
|
5407
5419
|
border-width: 0 0 0 6px;
|
|
5408
5420
|
color: #1ea97c;
|
|
@@ -5414,7 +5426,7 @@
|
|
|
5414
5426
|
color: #1ea97c;
|
|
5415
5427
|
}
|
|
5416
5428
|
.p-message.p-message-warn {
|
|
5417
|
-
background:
|
|
5429
|
+
background: rgba(255, 242, 226, 0.7);
|
|
5418
5430
|
border: solid #cc8925;
|
|
5419
5431
|
border-width: 0 0 0 6px;
|
|
5420
5432
|
color: #cc8925;
|
|
@@ -5426,7 +5438,7 @@
|
|
|
5426
5438
|
color: #cc8925;
|
|
5427
5439
|
}
|
|
5428
5440
|
.p-message.p-message-error {
|
|
5429
|
-
background:
|
|
5441
|
+
background: rgba(255, 231, 230, 0.7);
|
|
5430
5442
|
border: solid #ff5757;
|
|
5431
5443
|
border-width: 0 0 0 6px;
|
|
5432
5444
|
color: #ff5757;
|
|
@@ -5439,7 +5451,7 @@
|
|
|
5439
5451
|
}
|
|
5440
5452
|
.p-message .p-message-text {
|
|
5441
5453
|
font-size: 1rem;
|
|
5442
|
-
font-weight:
|
|
5454
|
+
font-weight: 500;
|
|
5443
5455
|
}
|
|
5444
5456
|
.p-message .p-message-icon {
|
|
5445
5457
|
font-size: 1.5rem;
|
|
@@ -5457,7 +5469,7 @@
|
|
|
5457
5469
|
}
|
|
5458
5470
|
|
|
5459
5471
|
.p-toast {
|
|
5460
|
-
opacity:
|
|
5472
|
+
opacity: 1;
|
|
5461
5473
|
}
|
|
5462
5474
|
.p-toast .p-toast-message {
|
|
5463
5475
|
margin: 0 0 1rem 0;
|
|
@@ -5492,7 +5504,7 @@
|
|
|
5492
5504
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
5493
5505
|
}
|
|
5494
5506
|
.p-toast .p-toast-message .p-toast-icon-close:hover {
|
|
5495
|
-
background: rgba(255, 255, 255, 0.
|
|
5507
|
+
background: rgba(255, 255, 255, 0.5);
|
|
5496
5508
|
}
|
|
5497
5509
|
.p-toast .p-toast-message .p-toast-icon-close:focus-visible {
|
|
5498
5510
|
outline: 0 none;
|
|
@@ -5500,17 +5512,17 @@
|
|
|
5500
5512
|
box-shadow: 0 0 0 0.2rem #DDD6FE;
|
|
5501
5513
|
}
|
|
5502
5514
|
.p-toast .p-toast-message.p-toast-message-info {
|
|
5503
|
-
background:
|
|
5504
|
-
border: solid #
|
|
5515
|
+
background: rgba(219, 234, 254, 0.7);
|
|
5516
|
+
border: solid #3b82f6;
|
|
5505
5517
|
border-width: 0 0 0 6px;
|
|
5506
|
-
color: #
|
|
5518
|
+
color: #3b82f6;
|
|
5507
5519
|
}
|
|
5508
5520
|
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
|
5509
5521
|
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
|
5510
|
-
color: #
|
|
5522
|
+
color: #3b82f6;
|
|
5511
5523
|
}
|
|
5512
5524
|
.p-toast .p-toast-message.p-toast-message-success {
|
|
5513
|
-
background:
|
|
5525
|
+
background: rgba(228, 248, 240, 0.7);
|
|
5514
5526
|
border: solid #1ea97c;
|
|
5515
5527
|
border-width: 0 0 0 6px;
|
|
5516
5528
|
color: #1ea97c;
|
|
@@ -5520,7 +5532,7 @@
|
|
|
5520
5532
|
color: #1ea97c;
|
|
5521
5533
|
}
|
|
5522
5534
|
.p-toast .p-toast-message.p-toast-message-warn {
|
|
5523
|
-
background:
|
|
5535
|
+
background: rgba(255, 242, 226, 0.7);
|
|
5524
5536
|
border: solid #cc8925;
|
|
5525
5537
|
border-width: 0 0 0 6px;
|
|
5526
5538
|
color: #cc8925;
|
|
@@ -5530,7 +5542,7 @@
|
|
|
5530
5542
|
color: #cc8925;
|
|
5531
5543
|
}
|
|
5532
5544
|
.p-toast .p-toast-message.p-toast-message-error {
|
|
5533
|
-
background:
|
|
5545
|
+
background: rgba(255, 231, 230, 0.7);
|
|
5534
5546
|
border: solid #ff5757;
|
|
5535
5547
|
border-width: 0 0 0 6px;
|
|
5536
5548
|
color: #ff5757;
|
|
@@ -5543,7 +5555,7 @@
|
|
|
5543
5555
|
.p-galleria .p-galleria-close {
|
|
5544
5556
|
margin: 0.5rem;
|
|
5545
5557
|
background: transparent;
|
|
5546
|
-
color: #
|
|
5558
|
+
color: #f9fafb;
|
|
5547
5559
|
width: 4rem;
|
|
5548
5560
|
height: 4rem;
|
|
5549
5561
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
@@ -5558,11 +5570,11 @@
|
|
|
5558
5570
|
}
|
|
5559
5571
|
.p-galleria .p-galleria-close:hover {
|
|
5560
5572
|
background: rgba(255, 255, 255, 0.1);
|
|
5561
|
-
color: #
|
|
5573
|
+
color: #f9fafb;
|
|
5562
5574
|
}
|
|
5563
5575
|
.p-galleria .p-galleria-item-nav {
|
|
5564
5576
|
background: transparent;
|
|
5565
|
-
color: #
|
|
5577
|
+
color: #f9fafb;
|
|
5566
5578
|
width: 4rem;
|
|
5567
5579
|
height: 4rem;
|
|
5568
5580
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
@@ -5580,25 +5592,25 @@
|
|
|
5580
5592
|
}
|
|
5581
5593
|
.p-galleria .p-galleria-item-nav:not(.p-disabled):hover {
|
|
5582
5594
|
background: rgba(255, 255, 255, 0.1);
|
|
5583
|
-
color: #
|
|
5595
|
+
color: #f9fafb;
|
|
5584
5596
|
}
|
|
5585
5597
|
.p-galleria .p-galleria-caption {
|
|
5586
5598
|
background: rgba(0, 0, 0, 0.5);
|
|
5587
|
-
color: #
|
|
5599
|
+
color: #f9fafb;
|
|
5588
5600
|
padding: 1rem;
|
|
5589
5601
|
}
|
|
5590
5602
|
.p-galleria .p-galleria-indicators {
|
|
5591
5603
|
padding: 1rem;
|
|
5592
5604
|
}
|
|
5593
5605
|
.p-galleria .p-galleria-indicators .p-galleria-indicator button {
|
|
5594
|
-
background-color: #
|
|
5606
|
+
background-color: #d1d5db;
|
|
5595
5607
|
width: 1rem;
|
|
5596
5608
|
height: 1rem;
|
|
5597
5609
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
5598
5610
|
border-radius: 50%;
|
|
5599
5611
|
}
|
|
5600
5612
|
.p-galleria .p-galleria-indicators .p-galleria-indicator button:hover {
|
|
5601
|
-
background: #
|
|
5613
|
+
background: #9ca3af;
|
|
5602
5614
|
}
|
|
5603
5615
|
.p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button {
|
|
5604
5616
|
background: #F5F3FF;
|
|
@@ -5631,7 +5643,7 @@
|
|
|
5631
5643
|
.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next {
|
|
5632
5644
|
margin: 0.5rem;
|
|
5633
5645
|
background-color: transparent;
|
|
5634
|
-
color: #
|
|
5646
|
+
color: #f9fafb;
|
|
5635
5647
|
width: 2rem;
|
|
5636
5648
|
height: 2rem;
|
|
5637
5649
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
@@ -5640,7 +5652,7 @@
|
|
|
5640
5652
|
.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover,
|
|
5641
5653
|
.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover {
|
|
5642
5654
|
background: rgba(255, 255, 255, 0.1);
|
|
5643
|
-
color: #
|
|
5655
|
+
color: #f9fafb;
|
|
5644
5656
|
}
|
|
5645
5657
|
.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-item-content {
|
|
5646
5658
|
transition: box-shadow 0.2s;
|
|
@@ -5702,7 +5714,7 @@
|
|
|
5702
5714
|
}
|
|
5703
5715
|
|
|
5704
5716
|
.p-avatar {
|
|
5705
|
-
background-color: #
|
|
5717
|
+
background-color: #e5e7eb;
|
|
5706
5718
|
border-radius: 6px;
|
|
5707
5719
|
}
|
|
5708
5720
|
.p-avatar.p-avatar-lg {
|
|
@@ -5731,8 +5743,8 @@
|
|
|
5731
5743
|
}
|
|
5732
5744
|
|
|
5733
5745
|
.p-chip {
|
|
5734
|
-
background-color: #
|
|
5735
|
-
color: #
|
|
5746
|
+
background-color: #e5e7eb;
|
|
5747
|
+
color: #4b5563;
|
|
5736
5748
|
border-radius: 16px;
|
|
5737
5749
|
padding: 0 0.75rem;
|
|
5738
5750
|
}
|
|
@@ -5779,7 +5791,7 @@
|
|
|
5779
5791
|
}
|
|
5780
5792
|
.p-scrolltop .p-scrolltop-icon {
|
|
5781
5793
|
font-size: 1.5rem;
|
|
5782
|
-
color: #
|
|
5794
|
+
color: #f9fafb;
|
|
5783
5795
|
}
|
|
5784
5796
|
.p-scrolltop .p-scrolltop-icon.p-icon {
|
|
5785
5797
|
width: 1.5rem;
|
|
@@ -5787,7 +5799,7 @@
|
|
|
5787
5799
|
}
|
|
5788
5800
|
|
|
5789
5801
|
.p-skeleton {
|
|
5790
|
-
background-color: #
|
|
5802
|
+
background-color: #e5e7eb;
|
|
5791
5803
|
border-radius: 6px;
|
|
5792
5804
|
}
|
|
5793
5805
|
.p-skeleton:after {
|
|
@@ -5807,11 +5819,11 @@
|
|
|
5807
5819
|
color: #ffffff;
|
|
5808
5820
|
}
|
|
5809
5821
|
.p-tag.p-tag-info {
|
|
5810
|
-
background-color: #
|
|
5822
|
+
background-color: #0ea5e9;
|
|
5811
5823
|
color: #ffffff;
|
|
5812
5824
|
}
|
|
5813
5825
|
.p-tag.p-tag-warning {
|
|
5814
|
-
background-color: #
|
|
5826
|
+
background-color: #f97316;
|
|
5815
5827
|
color: #ffffff;
|
|
5816
5828
|
}
|
|
5817
5829
|
.p-tag.p-tag-danger {
|
|
@@ -5833,8 +5845,8 @@
|
|
|
5833
5845
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
5834
5846
|
}
|
|
5835
5847
|
.p-inplace .p-inplace-display:not(.p-disabled):hover {
|
|
5836
|
-
background: #
|
|
5837
|
-
color: #
|
|
5848
|
+
background: #f3f4f6;
|
|
5849
|
+
color: #4b5563;
|
|
5838
5850
|
}
|
|
5839
5851
|
.p-inplace .p-inplace-display:focus {
|
|
5840
5852
|
outline: 0 none;
|
|
@@ -5845,7 +5857,7 @@
|
|
|
5845
5857
|
.p-progressbar {
|
|
5846
5858
|
border: 0 none;
|
|
5847
5859
|
height: 1.5rem;
|
|
5848
|
-
background: #
|
|
5860
|
+
background: #e5e7eb;
|
|
5849
5861
|
border-radius: 6px;
|
|
5850
5862
|
}
|
|
5851
5863
|
.p-progressbar .p-progressbar-value {
|
|
@@ -5860,8 +5872,8 @@
|
|
|
5860
5872
|
|
|
5861
5873
|
.p-terminal {
|
|
5862
5874
|
background: #ffffff;
|
|
5863
|
-
color: #
|
|
5864
|
-
border: 1px solid #
|
|
5875
|
+
color: #4b5563;
|
|
5876
|
+
border: 1px solid #e5e7eb;
|
|
5865
5877
|
padding: 1.25rem;
|
|
5866
5878
|
}
|
|
5867
5879
|
.p-terminal .p-terminal-input {
|
|
@@ -5888,11 +5900,11 @@
|
|
|
5888
5900
|
color: #ffffff;
|
|
5889
5901
|
}
|
|
5890
5902
|
.p-badge.p-badge-info {
|
|
5891
|
-
background-color: #
|
|
5903
|
+
background-color: #0ea5e9;
|
|
5892
5904
|
color: #ffffff;
|
|
5893
5905
|
}
|
|
5894
5906
|
.p-badge.p-badge-warning {
|
|
5895
|
-
background-color: #
|
|
5907
|
+
background-color: #f97316;
|
|
5896
5908
|
color: #ffffff;
|
|
5897
5909
|
}
|
|
5898
5910
|
.p-badge.p-badge-danger {
|
|
@@ -5925,11 +5937,11 @@
|
|
|
5925
5937
|
color: #ffffff;
|
|
5926
5938
|
}
|
|
5927
5939
|
.p-tag.p-tag-info {
|
|
5928
|
-
background-color: #
|
|
5940
|
+
background-color: #0ea5e9;
|
|
5929
5941
|
color: #ffffff;
|
|
5930
5942
|
}
|
|
5931
5943
|
.p-tag.p-tag-warning {
|
|
5932
|
-
background-color: #
|
|
5944
|
+
background-color: #f97316;
|
|
5933
5945
|
color: #ffffff;
|
|
5934
5946
|
}
|
|
5935
5947
|
.p-tag.p-tag-danger {
|
|
@@ -5942,6 +5954,11 @@
|
|
|
5942
5954
|
font-weight: 700;
|
|
5943
5955
|
}
|
|
5944
5956
|
|
|
5957
|
+
.p-selectbutton > .p-button,
|
|
5958
|
+
.p-togglebutton.p-button {
|
|
5959
|
+
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
5960
|
+
}
|
|
5961
|
+
|
|
5945
5962
|
.p-accordion .p-accordion-header .p-accordion-header-link {
|
|
5946
5963
|
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
5947
5964
|
}
|
|
@@ -5959,6 +5976,10 @@
|
|
|
5959
5976
|
transition: 500ms cubic-bezier(0.35, 0, 0.25, 1);
|
|
5960
5977
|
}
|
|
5961
5978
|
|
|
5979
|
+
.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link {
|
|
5980
|
+
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
5981
|
+
}
|
|
5982
|
+
|
|
5962
5983
|
.p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button {
|
|
5963
5984
|
background-color: #8B5CF6;
|
|
5964
5985
|
}
|
|
@@ -5977,10 +5998,10 @@
|
|
|
5977
5998
|
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #88eaac, 0 1px 2px 0 black;
|
|
5978
5999
|
}
|
|
5979
6000
|
.p-button.p-button-info:enabled:focus {
|
|
5980
|
-
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #
|
|
6001
|
+
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #83d3f8, 0 1px 2px 0 black;
|
|
5981
6002
|
}
|
|
5982
6003
|
.p-button.p-button-warning:enabled:focus {
|
|
5983
|
-
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #
|
|
6004
|
+
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #fcb98b, 0 1px 2px 0 black;
|
|
5984
6005
|
}
|
|
5985
6006
|
.p-button.p-button-help:enabled:focus {
|
|
5986
6007
|
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #d4aafb, 0 1px 2px 0 black;
|
|
@@ -5995,4 +6016,26 @@
|
|
|
5995
6016
|
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
|
|
5996
6017
|
box-shadow: inset 0 -2px 0 0 #8B5CF6;
|
|
5997
6018
|
}
|
|
6019
|
+
|
|
6020
|
+
.p-speeddial-item.p-focus > .p-speeddial-action {
|
|
6021
|
+
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #c5aefb, 0 1px 2px 0 black;
|
|
6022
|
+
}
|
|
6023
|
+
|
|
6024
|
+
.p-toast-message {
|
|
6025
|
+
backdrop-filter: blur(10px);
|
|
6026
|
+
}
|
|
6027
|
+
|
|
6028
|
+
.p-inline-message-text {
|
|
6029
|
+
font-weight: 500;
|
|
6030
|
+
}
|
|
6031
|
+
|
|
6032
|
+
.p-picklist-buttons .p-button,
|
|
6033
|
+
.p-orderlist-controls .p-button {
|
|
6034
|
+
transition: opacity 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
6035
|
+
}
|
|
6036
|
+
|
|
6037
|
+
.p-steps .p-steps-item.p-highlight .p-steps-number {
|
|
6038
|
+
background: #8B5CF6;
|
|
6039
|
+
color: #ffffff;
|
|
6040
|
+
}
|
|
5998
6041
|
}
|