@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
|
@@ -4,49 +4,49 @@
|
|
|
4
4
|
font-variation-settings: normal;
|
|
5
5
|
--font-family:"Inter var", sans-serif;
|
|
6
6
|
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
|
7
|
-
--surface-a:#
|
|
8
|
-
--surface-b:#
|
|
7
|
+
--surface-a:#1f2937;
|
|
8
|
+
--surface-b:#111827;
|
|
9
9
|
--surface-c:rgba(255, 255, 255, 0.03);
|
|
10
|
-
--surface-d:#
|
|
11
|
-
--surface-e:#
|
|
12
|
-
--surface-f:#
|
|
10
|
+
--surface-d:#424b57;
|
|
11
|
+
--surface-e:#1f2937;
|
|
12
|
+
--surface-f:#1f2937;
|
|
13
13
|
--text-color:rgba(255, 255, 255, 0.87);
|
|
14
14
|
--text-color-secondary:rgba(255, 255, 255, 0.6);
|
|
15
|
-
--primary-color:#
|
|
16
|
-
--primary-color-text:#
|
|
17
|
-
--surface-0: #
|
|
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: #
|
|
15
|
+
--primary-color:#818cf8;
|
|
16
|
+
--primary-color-text:#030712;
|
|
17
|
+
--surface-0: #111827;
|
|
18
|
+
--surface-50: #1f2937;
|
|
19
|
+
--surface-100: #374151;
|
|
20
|
+
--surface-200: #4b5563;
|
|
21
|
+
--surface-300: #6b7280;
|
|
22
|
+
--surface-400: #9ca3af;
|
|
23
|
+
--surface-500: #d1d5db;
|
|
24
|
+
--surface-600: #e5e7eb;
|
|
25
|
+
--surface-700: #f3f4f6;
|
|
26
|
+
--surface-800: #f9fafb;
|
|
27
27
|
--surface-900: #ffffff;
|
|
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: #
|
|
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:#
|
|
42
|
-
--surface-section:#
|
|
43
|
-
--surface-card:#
|
|
44
|
-
--surface-overlay:#
|
|
45
|
-
--surface-border
|
|
41
|
+
--surface-ground:#111827;
|
|
42
|
+
--surface-section:#111827;
|
|
43
|
+
--surface-card:#1f2937;
|
|
44
|
+
--surface-overlay:#1f2937;
|
|
45
|
+
--surface-border:rgba(255,255,255,.1);
|
|
46
46
|
--surface-hover:rgba(255,255,255,.03);
|
|
47
|
-
--focus-ring: 0 0 0 0.2rem rgba(
|
|
47
|
+
--focus-ring: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
48
48
|
--maskbg: rgba(0, 0, 0, 0.4);
|
|
49
|
-
--highlight-bg: rgba(
|
|
49
|
+
--highlight-bg: rgba(129, 140, 248, 0.16);
|
|
50
50
|
--highlight-text-color: rgba(255, 255, 255, 0.87);
|
|
51
51
|
color-scheme: dark;
|
|
52
52
|
}
|
|
@@ -178,25 +178,25 @@
|
|
|
178
178
|
--red-700:#b32b23;
|
|
179
179
|
--red-800:#8c221c;
|
|
180
180
|
--red-900:#661814;
|
|
181
|
-
--primary-50:#
|
|
182
|
-
--primary-100:#
|
|
183
|
-
--primary-200:#
|
|
184
|
-
--primary-300:#
|
|
185
|
-
--primary-400:#
|
|
186
|
-
--primary-500:#
|
|
187
|
-
--primary-600:#
|
|
188
|
-
--primary-700:#
|
|
189
|
-
--primary-800:#
|
|
190
|
-
--primary-900:#
|
|
181
|
+
--primary-50:#f9f9ff;
|
|
182
|
+
--primary-100:#e1e3fd;
|
|
183
|
+
--primary-200:#c9cefc;
|
|
184
|
+
--primary-300:#b1b8fb;
|
|
185
|
+
--primary-400:#99a2f9;
|
|
186
|
+
--primary-500:#818cf8;
|
|
187
|
+
--primary-600:#6e77d3;
|
|
188
|
+
--primary-700:#5a62ae;
|
|
189
|
+
--primary-800:#474d88;
|
|
190
|
+
--primary-900:#343863;
|
|
191
191
|
}
|
|
192
192
|
|
|
193
193
|
.p-editor-container .p-editor-toolbar {
|
|
194
|
-
background: #
|
|
194
|
+
background: #1f2937;
|
|
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 #424b57;
|
|
200
200
|
}
|
|
201
201
|
.p-editor-container .p-editor-toolbar.ql-snow .ql-stroke {
|
|
202
202
|
stroke: rgba(255, 255, 255, 0.6);
|
|
@@ -227,8 +227,8 @@
|
|
|
227
227
|
fill: rgba(255, 255, 255, 0.87);
|
|
228
228
|
}
|
|
229
229
|
.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
|
|
230
|
-
background: #
|
|
231
|
-
border: 1px solid #
|
|
230
|
+
background: #1f2937;
|
|
231
|
+
border: 1px solid #424b57;
|
|
232
232
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
233
233
|
border-radius: 6px;
|
|
234
234
|
padding: 0.75rem 0;
|
|
@@ -248,10 +248,10 @@
|
|
|
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 #424b57;
|
|
252
252
|
}
|
|
253
253
|
.p-editor-container .p-editor-content .ql-editor {
|
|
254
|
-
background: #
|
|
254
|
+
background: #111827;
|
|
255
255
|
color: rgba(255, 255, 255, 0.87);
|
|
256
256
|
border-bottom-right-radius: 6px;
|
|
257
257
|
border-bottom-left-radius: 6px;
|
|
@@ -271,22 +271,22 @@
|
|
|
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,
|
|
273
273
|
.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected {
|
|
274
|
-
color: #
|
|
274
|
+
color: #818cf8;
|
|
275
275
|
}
|
|
276
276
|
.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-stroke,
|
|
277
277
|
.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
|
|
278
278
|
.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke {
|
|
279
|
-
stroke: #
|
|
279
|
+
stroke: #818cf8;
|
|
280
280
|
}
|
|
281
281
|
.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-fill,
|
|
282
282
|
.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
|
|
283
283
|
.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill {
|
|
284
|
-
fill: #
|
|
284
|
+
fill: #818cf8;
|
|
285
285
|
}
|
|
286
286
|
.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-picker-label,
|
|
287
287
|
.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-picker-label,
|
|
288
288
|
.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-picker-label {
|
|
289
|
-
color: #
|
|
289
|
+
color: #818cf8;
|
|
290
290
|
}
|
|
291
291
|
|
|
292
292
|
@layer primereact {
|
|
@@ -336,7 +336,7 @@
|
|
|
336
336
|
.p-link:focus-visible {
|
|
337
337
|
outline: 0 none;
|
|
338
338
|
outline-offset: 0;
|
|
339
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
339
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
340
340
|
}
|
|
341
341
|
|
|
342
342
|
.p-component-overlay-enter {
|
|
@@ -375,13 +375,13 @@
|
|
|
375
375
|
gap: 0.5rem;
|
|
376
376
|
}
|
|
377
377
|
.p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled):hover {
|
|
378
|
-
border-color: #
|
|
378
|
+
border-color: #818cf8;
|
|
379
379
|
}
|
|
380
380
|
.p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus {
|
|
381
381
|
outline: 0 none;
|
|
382
382
|
outline-offset: 0;
|
|
383
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
384
|
-
border-color: #
|
|
383
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
384
|
+
border-color: #818cf8;
|
|
385
385
|
}
|
|
386
386
|
.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-input-token {
|
|
387
387
|
padding: 0.375rem 0;
|
|
@@ -397,7 +397,7 @@
|
|
|
397
397
|
.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token {
|
|
398
398
|
padding: 0.375rem 0.75rem;
|
|
399
399
|
margin-right: 0.5rem;
|
|
400
|
-
background: rgba(
|
|
400
|
+
background: rgba(129, 140, 248, 0.16);
|
|
401
401
|
color: rgba(255, 255, 255, 0.87);
|
|
402
402
|
border-radius: 6px;
|
|
403
403
|
}
|
|
@@ -409,9 +409,9 @@
|
|
|
409
409
|
}
|
|
410
410
|
|
|
411
411
|
.p-autocomplete-panel {
|
|
412
|
-
background: #
|
|
412
|
+
background: #1f2937;
|
|
413
413
|
color: rgba(255, 255, 255, 0.87);
|
|
414
|
-
border: 1px solid #
|
|
414
|
+
border: 1px solid #424b57;
|
|
415
415
|
border-radius: 6px;
|
|
416
416
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
417
417
|
}
|
|
@@ -433,13 +433,13 @@
|
|
|
433
433
|
}
|
|
434
434
|
.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight {
|
|
435
435
|
color: rgba(255, 255, 255, 0.87);
|
|
436
|
-
background: rgba(
|
|
436
|
+
background: rgba(129, 140, 248, 0.16);
|
|
437
437
|
}
|
|
438
438
|
.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item-group {
|
|
439
439
|
margin: 0;
|
|
440
440
|
padding: 0.75rem 1.25rem;
|
|
441
441
|
color: rgba(255, 255, 255, 0.87);
|
|
442
|
-
background: #
|
|
442
|
+
background: #374151;
|
|
443
443
|
font-weight: 700;
|
|
444
444
|
}
|
|
445
445
|
|
|
@@ -449,26 +449,26 @@
|
|
|
449
449
|
|
|
450
450
|
.p-datepicker {
|
|
451
451
|
padding: 0.5rem;
|
|
452
|
-
background: #
|
|
452
|
+
background: #1f2937;
|
|
453
453
|
color: rgba(255, 255, 255, 0.87);
|
|
454
|
-
border: 1px solid #
|
|
454
|
+
border: 1px solid #424b57;
|
|
455
455
|
border-radius: 6px;
|
|
456
456
|
}
|
|
457
457
|
.p-datepicker:not(.p-datepicker-inline) {
|
|
458
|
-
background: #
|
|
459
|
-
border: 1px solid #
|
|
458
|
+
background: #1f2937;
|
|
459
|
+
border: 1px solid #424b57;
|
|
460
460
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
461
461
|
}
|
|
462
462
|
.p-datepicker:not(.p-datepicker-inline) .p-datepicker-header {
|
|
463
|
-
background: #
|
|
463
|
+
background: #1f2937;
|
|
464
464
|
}
|
|
465
465
|
.p-datepicker .p-datepicker-header {
|
|
466
466
|
padding: 0.5rem;
|
|
467
467
|
color: rgba(255, 255, 255, 0.87);
|
|
468
|
-
background: #
|
|
468
|
+
background: #1f2937;
|
|
469
469
|
font-weight: 700;
|
|
470
470
|
margin: 0;
|
|
471
|
-
border-bottom: 1px solid #
|
|
471
|
+
border-bottom: 1px solid #424b57;
|
|
472
472
|
border-top-right-radius: 6px;
|
|
473
473
|
border-top-left-radius: 6px;
|
|
474
474
|
}
|
|
@@ -492,7 +492,7 @@
|
|
|
492
492
|
.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible {
|
|
493
493
|
outline: 0 none;
|
|
494
494
|
outline-offset: 0;
|
|
495
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
495
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
496
496
|
}
|
|
497
497
|
.p-datepicker .p-datepicker-header .p-datepicker-title {
|
|
498
498
|
line-height: 2rem;
|
|
@@ -506,7 +506,7 @@
|
|
|
506
506
|
}
|
|
507
507
|
.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover,
|
|
508
508
|
.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover {
|
|
509
|
-
color: #
|
|
509
|
+
color: #818cf8;
|
|
510
510
|
}
|
|
511
511
|
.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month {
|
|
512
512
|
margin-right: 0.5rem;
|
|
@@ -534,31 +534,31 @@
|
|
|
534
534
|
}
|
|
535
535
|
.p-datepicker table td > span.p-highlight {
|
|
536
536
|
color: rgba(255, 255, 255, 0.87);
|
|
537
|
-
background: rgba(
|
|
537
|
+
background: rgba(129, 140, 248, 0.16);
|
|
538
538
|
}
|
|
539
539
|
.p-datepicker table td > span:focus {
|
|
540
540
|
outline: 0 none;
|
|
541
541
|
outline-offset: 0;
|
|
542
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
542
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
543
543
|
}
|
|
544
544
|
.p-datepicker table td.p-datepicker-today > span {
|
|
545
545
|
background: transparent;
|
|
546
|
-
color: #
|
|
546
|
+
color: #818cf8;
|
|
547
547
|
border-color: transparent;
|
|
548
548
|
}
|
|
549
549
|
.p-datepicker table td.p-datepicker-today > span.p-highlight {
|
|
550
550
|
color: rgba(255, 255, 255, 0.87);
|
|
551
|
-
background: rgba(
|
|
551
|
+
background: rgba(129, 140, 248, 0.16);
|
|
552
552
|
}
|
|
553
553
|
.p-datepicker .p-datepicker-buttonbar {
|
|
554
554
|
padding: 1rem 0;
|
|
555
|
-
border-top: 1px solid #
|
|
555
|
+
border-top: 1px solid #424b57;
|
|
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 #424b57;
|
|
562
562
|
padding: 0.5rem;
|
|
563
563
|
}
|
|
564
564
|
.p-datepicker .p-timepicker button {
|
|
@@ -578,7 +578,7 @@
|
|
|
578
578
|
.p-datepicker .p-timepicker button:focus-visible {
|
|
579
579
|
outline: 0 none;
|
|
580
580
|
outline-offset: 0;
|
|
581
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
581
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
582
582
|
}
|
|
583
583
|
.p-datepicker .p-timepicker button:last-child {
|
|
584
584
|
margin-top: 0.2em;
|
|
@@ -602,7 +602,7 @@
|
|
|
602
602
|
}
|
|
603
603
|
.p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight {
|
|
604
604
|
color: rgba(255, 255, 255, 0.87);
|
|
605
|
-
background: rgba(
|
|
605
|
+
background: rgba(129, 140, 248, 0.16);
|
|
606
606
|
}
|
|
607
607
|
.p-datepicker .p-yearpicker {
|
|
608
608
|
margin: 0.5rem 0;
|
|
@@ -614,10 +614,10 @@
|
|
|
614
614
|
}
|
|
615
615
|
.p-datepicker .p-yearpicker .p-yearpicker-year.p-highlight {
|
|
616
616
|
color: rgba(255, 255, 255, 0.87);
|
|
617
|
-
background: rgba(
|
|
617
|
+
background: rgba(129, 140, 248, 0.16);
|
|
618
618
|
}
|
|
619
619
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group {
|
|
620
|
-
border-left: 1px solid #
|
|
620
|
+
border-left: 1px solid #424b57;
|
|
621
621
|
padding-right: 0.5rem;
|
|
622
622
|
padding-left: 0.5rem;
|
|
623
623
|
padding-top: 0;
|
|
@@ -636,7 +636,7 @@
|
|
|
636
636
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):focus {
|
|
637
637
|
outline: 0 none;
|
|
638
638
|
outline-offset: 0;
|
|
639
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
639
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
640
640
|
}
|
|
641
641
|
.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):not(.p-highlight):hover {
|
|
642
642
|
background: rgba(255, 255, 255, 0.03);
|
|
@@ -644,7 +644,7 @@
|
|
|
644
644
|
.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):focus {
|
|
645
645
|
outline: 0 none;
|
|
646
646
|
outline-offset: 0;
|
|
647
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
647
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
648
648
|
}
|
|
649
649
|
.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):not(.p-highlight):hover {
|
|
650
650
|
background: rgba(255, 255, 255, 0.03);
|
|
@@ -652,7 +652,7 @@
|
|
|
652
652
|
.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):focus {
|
|
653
653
|
outline: 0 none;
|
|
654
654
|
outline-offset: 0;
|
|
655
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
655
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
656
656
|
}
|
|
657
657
|
|
|
658
658
|
@media screen and (max-width: 769px) {
|
|
@@ -661,19 +661,19 @@
|
|
|
661
661
|
}
|
|
662
662
|
}
|
|
663
663
|
.p-cascadeselect {
|
|
664
|
-
background: #
|
|
665
|
-
border: 1px solid #
|
|
664
|
+
background: #111827;
|
|
665
|
+
border: 1px solid #424b57;
|
|
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
|
}
|
|
669
669
|
.p-cascadeselect:not(.p-disabled):hover {
|
|
670
|
-
border-color: #
|
|
670
|
+
border-color: #818cf8;
|
|
671
671
|
}
|
|
672
672
|
.p-cascadeselect:not(.p-disabled).p-focus {
|
|
673
673
|
outline: 0 none;
|
|
674
674
|
outline-offset: 0;
|
|
675
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
676
|
-
border-color: #
|
|
675
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
676
|
+
border-color: #818cf8;
|
|
677
677
|
}
|
|
678
678
|
.p-cascadeselect .p-cascadeselect-label {
|
|
679
679
|
background: transparent;
|
|
@@ -699,9 +699,9 @@
|
|
|
699
699
|
}
|
|
700
700
|
|
|
701
701
|
.p-cascadeselect-panel {
|
|
702
|
-
background: #
|
|
702
|
+
background: #1f2937;
|
|
703
703
|
color: rgba(255, 255, 255, 0.87);
|
|
704
|
-
border: 1px solid #
|
|
704
|
+
border: 1px solid #424b57;
|
|
705
705
|
border-radius: 6px;
|
|
706
706
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
707
707
|
}
|
|
@@ -722,11 +722,11 @@
|
|
|
722
722
|
.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-item-content:focus {
|
|
723
723
|
outline: 0 none;
|
|
724
724
|
outline-offset: 0;
|
|
725
|
-
box-shadow: inset 0 0 0 0.15rem rgba(
|
|
725
|
+
box-shadow: inset 0 0 0 0.15rem rgba(129, 140, 248, 0.2);
|
|
726
726
|
}
|
|
727
727
|
.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item.p-highlight {
|
|
728
728
|
color: rgba(255, 255, 255, 0.87);
|
|
729
|
-
background: rgba(
|
|
729
|
+
background: rgba(129, 140, 248, 0.16);
|
|
730
730
|
}
|
|
731
731
|
.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:not(.p-highlight):not(.p-disabled):hover {
|
|
732
732
|
color: rgba(255, 255, 255, 0.87);
|
|
@@ -741,13 +741,13 @@
|
|
|
741
741
|
}
|
|
742
742
|
|
|
743
743
|
.p-input-filled .p-cascadeselect {
|
|
744
|
-
background: #
|
|
744
|
+
background: #424b57;
|
|
745
745
|
}
|
|
746
746
|
.p-input-filled .p-cascadeselect:not(.p-disabled):hover {
|
|
747
|
-
background-color: #
|
|
747
|
+
background-color: #424b57;
|
|
748
748
|
}
|
|
749
749
|
.p-input-filled .p-cascadeselect:not(.p-disabled).p-focus {
|
|
750
|
-
background-color: #
|
|
750
|
+
background-color: #424b57;
|
|
751
751
|
}
|
|
752
752
|
|
|
753
753
|
.p-checkbox {
|
|
@@ -755,8 +755,8 @@
|
|
|
755
755
|
height: 22px;
|
|
756
756
|
}
|
|
757
757
|
.p-checkbox .p-checkbox-box {
|
|
758
|
-
border: 2px solid #
|
|
759
|
-
background: #
|
|
758
|
+
border: 2px solid #424b57;
|
|
759
|
+
background: #111827;
|
|
760
760
|
width: 22px;
|
|
761
761
|
height: 22px;
|
|
762
762
|
color: rgba(255, 255, 255, 0.87);
|
|
@@ -765,7 +765,7 @@
|
|
|
765
765
|
}
|
|
766
766
|
.p-checkbox .p-checkbox-box .p-checkbox-icon {
|
|
767
767
|
transition-duration: 0.2s;
|
|
768
|
-
color: #
|
|
768
|
+
color: #030712;
|
|
769
769
|
font-size: 14px;
|
|
770
770
|
}
|
|
771
771
|
.p-checkbox .p-checkbox-box .p-checkbox-icon.p-icon {
|
|
@@ -773,43 +773,43 @@
|
|
|
773
773
|
height: 14px;
|
|
774
774
|
}
|
|
775
775
|
.p-checkbox .p-checkbox-box.p-highlight {
|
|
776
|
-
border-color: #
|
|
777
|
-
background: #
|
|
776
|
+
border-color: #818cf8;
|
|
777
|
+
background: #818cf8;
|
|
778
778
|
}
|
|
779
779
|
.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover {
|
|
780
|
-
border-color: #
|
|
781
|
-
background: #
|
|
782
|
-
color: #
|
|
780
|
+
border-color: #c7d2fe;
|
|
781
|
+
background: #c7d2fe;
|
|
782
|
+
color: #030712;
|
|
783
783
|
}
|
|
784
784
|
.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover {
|
|
785
|
-
border-color: #
|
|
785
|
+
border-color: #818cf8;
|
|
786
786
|
}
|
|
787
787
|
.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus {
|
|
788
788
|
outline: 0 none;
|
|
789
789
|
outline-offset: 0;
|
|
790
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
791
|
-
border-color: #
|
|
790
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
791
|
+
border-color: #818cf8;
|
|
792
792
|
}
|
|
793
793
|
.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover {
|
|
794
|
-
border-color: #
|
|
795
|
-
background: #
|
|
796
|
-
color: #
|
|
794
|
+
border-color: #c7d2fe;
|
|
795
|
+
background: #c7d2fe;
|
|
796
|
+
color: #030712;
|
|
797
797
|
}
|
|
798
798
|
.p-checkbox.p-invalid > .p-checkbox-box {
|
|
799
799
|
border-color: #FCA5A5;
|
|
800
800
|
}
|
|
801
801
|
|
|
802
802
|
.p-input-filled .p-checkbox .p-checkbox-box {
|
|
803
|
-
background-color: #
|
|
803
|
+
background-color: #424b57;
|
|
804
804
|
}
|
|
805
805
|
.p-input-filled .p-checkbox .p-checkbox-box.p-highlight {
|
|
806
|
-
background: #
|
|
806
|
+
background: #818cf8;
|
|
807
807
|
}
|
|
808
808
|
.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover {
|
|
809
|
-
background-color: #
|
|
809
|
+
background-color: #424b57;
|
|
810
810
|
}
|
|
811
811
|
.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover {
|
|
812
|
-
background: #
|
|
812
|
+
background: #c7d2fe;
|
|
813
813
|
}
|
|
814
814
|
|
|
815
815
|
.p-chips .p-chips-multiple-container {
|
|
@@ -817,18 +817,18 @@
|
|
|
817
817
|
gap: 0.5rem;
|
|
818
818
|
}
|
|
819
819
|
.p-chips .p-chips-multiple-container:not(.p-disabled):hover {
|
|
820
|
-
border-color: #
|
|
820
|
+
border-color: #818cf8;
|
|
821
821
|
}
|
|
822
822
|
.p-chips .p-chips-multiple-container:not(.p-disabled).p-focus {
|
|
823
823
|
outline: 0 none;
|
|
824
824
|
outline-offset: 0;
|
|
825
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
826
|
-
border-color: #
|
|
825
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
826
|
+
border-color: #818cf8;
|
|
827
827
|
}
|
|
828
828
|
.p-chips .p-chips-multiple-container .p-chips-token {
|
|
829
829
|
padding: 0.375rem 0.75rem;
|
|
830
830
|
margin-right: 0.5rem;
|
|
831
|
-
background: rgba(
|
|
831
|
+
background: rgba(129, 140, 248, 0.16);
|
|
832
832
|
color: rgba(255, 255, 255, 0.87);
|
|
833
833
|
border-radius: 16px;
|
|
834
834
|
}
|
|
@@ -856,8 +856,8 @@
|
|
|
856
856
|
}
|
|
857
857
|
|
|
858
858
|
.p-colorpicker-panel {
|
|
859
|
-
background: #
|
|
860
|
-
border: 1px solid #
|
|
859
|
+
background: #1f2937;
|
|
860
|
+
border: 1px solid #424b57;
|
|
861
861
|
}
|
|
862
862
|
.p-colorpicker-panel .p-colorpicker-color-handle,
|
|
863
863
|
.p-colorpicker-panel .p-colorpicker-hue-handle {
|
|
@@ -869,19 +869,19 @@
|
|
|
869
869
|
}
|
|
870
870
|
|
|
871
871
|
.p-dropdown {
|
|
872
|
-
background: #
|
|
873
|
-
border: 1px solid #
|
|
872
|
+
background: #111827;
|
|
873
|
+
border: 1px solid #424b57;
|
|
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
|
}
|
|
877
877
|
.p-dropdown:not(.p-disabled):hover {
|
|
878
|
-
border-color: #
|
|
878
|
+
border-color: #818cf8;
|
|
879
879
|
}
|
|
880
880
|
.p-dropdown:not(.p-disabled).p-focus {
|
|
881
881
|
outline: 0 none;
|
|
882
882
|
outline-offset: 0;
|
|
883
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
884
|
-
border-color: #
|
|
883
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
884
|
+
border-color: #818cf8;
|
|
885
885
|
}
|
|
886
886
|
.p-dropdown.p-dropdown-clearable .p-dropdown-label {
|
|
887
887
|
padding-right: 1.75rem;
|
|
@@ -913,17 +913,17 @@
|
|
|
913
913
|
}
|
|
914
914
|
|
|
915
915
|
.p-dropdown-panel {
|
|
916
|
-
background: #
|
|
916
|
+
background: #1f2937;
|
|
917
917
|
color: rgba(255, 255, 255, 0.87);
|
|
918
|
-
border: 1px solid #
|
|
918
|
+
border: 1px solid #424b57;
|
|
919
919
|
border-radius: 6px;
|
|
920
920
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
921
921
|
}
|
|
922
922
|
.p-dropdown-panel .p-dropdown-header {
|
|
923
923
|
padding: 0.75rem 1.25rem;
|
|
924
|
-
border-bottom: 1px solid #
|
|
924
|
+
border-bottom: 1px solid #424b57;
|
|
925
925
|
color: rgba(255, 255, 255, 0.87);
|
|
926
|
-
background: #
|
|
926
|
+
background: #1f2937;
|
|
927
927
|
margin: 0;
|
|
928
928
|
border-top-right-radius: 6px;
|
|
929
929
|
border-top-left-radius: 6px;
|
|
@@ -957,7 +957,7 @@
|
|
|
957
957
|
}
|
|
958
958
|
.p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight {
|
|
959
959
|
color: rgba(255, 255, 255, 0.87);
|
|
960
|
-
background: rgba(
|
|
960
|
+
background: rgba(129, 140, 248, 0.16);
|
|
961
961
|
}
|
|
962
962
|
.p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover {
|
|
963
963
|
color: rgba(255, 255, 255, 0.87);
|
|
@@ -967,7 +967,7 @@
|
|
|
967
967
|
margin: 0;
|
|
968
968
|
padding: 0.75rem 1.25rem;
|
|
969
969
|
color: rgba(255, 255, 255, 0.87);
|
|
970
|
-
background: #
|
|
970
|
+
background: #374151;
|
|
971
971
|
font-weight: 700;
|
|
972
972
|
}
|
|
973
973
|
.p-dropdown-panel .p-dropdown-items .p-dropdown-empty-message {
|
|
@@ -977,29 +977,29 @@
|
|
|
977
977
|
}
|
|
978
978
|
|
|
979
979
|
.p-input-filled .p-dropdown {
|
|
980
|
-
background: #
|
|
980
|
+
background: #424b57;
|
|
981
981
|
}
|
|
982
982
|
.p-input-filled .p-dropdown:not(.p-disabled):hover {
|
|
983
|
-
background-color: #
|
|
983
|
+
background-color: #424b57;
|
|
984
984
|
}
|
|
985
985
|
.p-input-filled .p-dropdown:not(.p-disabled).p-focus {
|
|
986
|
-
background-color: #
|
|
986
|
+
background-color: #424b57;
|
|
987
987
|
}
|
|
988
988
|
.p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext {
|
|
989
989
|
background-color: transparent;
|
|
990
990
|
}
|
|
991
991
|
|
|
992
992
|
.p-inputgroup-addon {
|
|
993
|
-
background: #
|
|
993
|
+
background: #1f2937;
|
|
994
994
|
color: rgba(255, 255, 255, 0.6);
|
|
995
|
-
border-top: 1px solid #
|
|
996
|
-
border-left: 1px solid #
|
|
997
|
-
border-bottom: 1px solid #
|
|
995
|
+
border-top: 1px solid #424b57;
|
|
996
|
+
border-left: 1px solid #424b57;
|
|
997
|
+
border-bottom: 1px solid #424b57;
|
|
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 #424b57;
|
|
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: #6b7280;
|
|
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
|
}
|
|
@@ -1087,19 +1087,19 @@
|
|
|
1087
1087
|
.p-inputswitch.p-focus .p-inputswitch-slider {
|
|
1088
1088
|
outline: 0 none;
|
|
1089
1089
|
outline-offset: 0;
|
|
1090
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
1090
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
1091
1091
|
}
|
|
1092
1092
|
.p-inputswitch:not(.p-disabled):hover .p-inputswitch-slider {
|
|
1093
|
-
background: #
|
|
1093
|
+
background: #424b57;
|
|
1094
1094
|
}
|
|
1095
1095
|
.p-inputswitch.p-inputswitch-checked .p-inputswitch-slider {
|
|
1096
|
-
background: #
|
|
1096
|
+
background: #818cf8;
|
|
1097
1097
|
}
|
|
1098
1098
|
.p-inputswitch.p-inputswitch-checked .p-inputswitch-slider:before {
|
|
1099
|
-
background:
|
|
1099
|
+
background: #030712;
|
|
1100
1100
|
}
|
|
1101
1101
|
.p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider {
|
|
1102
|
-
background: #
|
|
1102
|
+
background: #a5b4fc;
|
|
1103
1103
|
}
|
|
1104
1104
|
.p-inputswitch.p-invalid .p-inputswitch-slider {
|
|
1105
1105
|
border-color: #FCA5A5;
|
|
@@ -1110,21 +1110,21 @@
|
|
|
1110
1110
|
font-feature-settings: var(--font-feature-settings, normal);
|
|
1111
1111
|
font-size: 1rem;
|
|
1112
1112
|
color: rgba(255, 255, 255, 0.87);
|
|
1113
|
-
background: #
|
|
1113
|
+
background: #111827;
|
|
1114
1114
|
padding: 0.75rem 0.75rem;
|
|
1115
|
-
border: 1px solid #
|
|
1115
|
+
border: 1px solid #424b57;
|
|
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;
|
|
1119
1119
|
}
|
|
1120
1120
|
.p-inputtext:enabled:hover {
|
|
1121
|
-
border-color: #
|
|
1121
|
+
border-color: #818cf8;
|
|
1122
1122
|
}
|
|
1123
1123
|
.p-inputtext:enabled:focus {
|
|
1124
1124
|
outline: 0 none;
|
|
1125
1125
|
outline-offset: 0;
|
|
1126
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
1127
|
-
border-color: #
|
|
1126
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
1127
|
+
border-color: #818cf8;
|
|
1128
1128
|
}
|
|
1129
1129
|
.p-inputtext.p-invalid.p-component {
|
|
1130
1130
|
border-color: #FCA5A5;
|
|
@@ -1191,13 +1191,13 @@
|
|
|
1191
1191
|
}
|
|
1192
1192
|
|
|
1193
1193
|
.p-input-filled .p-inputtext {
|
|
1194
|
-
background-color: #
|
|
1194
|
+
background-color: #424b57;
|
|
1195
1195
|
}
|
|
1196
1196
|
.p-input-filled .p-inputtext:enabled:hover {
|
|
1197
|
-
background-color: #
|
|
1197
|
+
background-color: #424b57;
|
|
1198
1198
|
}
|
|
1199
1199
|
.p-input-filled .p-inputtext:enabled:focus {
|
|
1200
|
-
background-color: #
|
|
1200
|
+
background-color: #424b57;
|
|
1201
1201
|
}
|
|
1202
1202
|
|
|
1203
1203
|
.p-inputtext-sm .p-inputtext {
|
|
@@ -1211,16 +1211,16 @@
|
|
|
1211
1211
|
}
|
|
1212
1212
|
|
|
1213
1213
|
.p-listbox {
|
|
1214
|
-
background: #
|
|
1214
|
+
background: #1f2937;
|
|
1215
1215
|
color: rgba(255, 255, 255, 0.87);
|
|
1216
|
-
border: 1px solid #
|
|
1216
|
+
border: 1px solid #424b57;
|
|
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 #
|
|
1221
|
+
border-bottom: 1px solid #424b57;
|
|
1222
1222
|
color: rgba(255, 255, 255, 0.87);
|
|
1223
|
-
background: #
|
|
1223
|
+
background: #1f2937;
|
|
1224
1224
|
margin: 0;
|
|
1225
1225
|
border-top-right-radius: 6px;
|
|
1226
1226
|
border-top-left-radius: 6px;
|
|
@@ -1245,18 +1245,18 @@
|
|
|
1245
1245
|
}
|
|
1246
1246
|
.p-listbox .p-listbox-list .p-listbox-item.p-highlight {
|
|
1247
1247
|
color: rgba(255, 255, 255, 0.87);
|
|
1248
|
-
background: rgba(
|
|
1248
|
+
background: rgba(129, 140, 248, 0.16);
|
|
1249
1249
|
}
|
|
1250
1250
|
.p-listbox .p-listbox-list .p-listbox-item:focus {
|
|
1251
1251
|
outline: 0 none;
|
|
1252
1252
|
outline-offset: 0;
|
|
1253
|
-
box-shadow: inset 0 0 0 0.15rem rgba(
|
|
1253
|
+
box-shadow: inset 0 0 0 0.15rem rgba(129, 140, 248, 0.2);
|
|
1254
1254
|
}
|
|
1255
1255
|
.p-listbox .p-listbox-list .p-listbox-item-group {
|
|
1256
1256
|
margin: 0;
|
|
1257
1257
|
padding: 0.75rem 1.25rem;
|
|
1258
1258
|
color: rgba(255, 255, 255, 0.87);
|
|
1259
|
-
background: #
|
|
1259
|
+
background: #374151;
|
|
1260
1260
|
font-weight: 700;
|
|
1261
1261
|
}
|
|
1262
1262
|
.p-listbox .p-listbox-list .p-listbox-empty-message {
|
|
@@ -1273,9 +1273,9 @@
|
|
|
1273
1273
|
}
|
|
1274
1274
|
|
|
1275
1275
|
.p-mention-panel {
|
|
1276
|
-
background: #
|
|
1276
|
+
background: #1f2937;
|
|
1277
1277
|
color: rgba(255, 255, 255, 0.87);
|
|
1278
|
-
border: 1px solid #
|
|
1278
|
+
border: 1px solid #424b57;
|
|
1279
1279
|
border-radius: 6px;
|
|
1280
1280
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
1281
1281
|
}
|
|
@@ -1297,23 +1297,23 @@
|
|
|
1297
1297
|
}
|
|
1298
1298
|
.p-mention-panel .p-mention-items .p-mention-item.p-highlight {
|
|
1299
1299
|
color: rgba(255, 255, 255, 0.87);
|
|
1300
|
-
background: rgba(
|
|
1300
|
+
background: rgba(129, 140, 248, 0.16);
|
|
1301
1301
|
}
|
|
1302
1302
|
|
|
1303
1303
|
.p-multiselect {
|
|
1304
|
-
background: #
|
|
1305
|
-
border: 1px solid #
|
|
1304
|
+
background: #111827;
|
|
1305
|
+
border: 1px solid #424b57;
|
|
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
|
}
|
|
1309
1309
|
.p-multiselect:not(.p-disabled):hover {
|
|
1310
|
-
border-color: #
|
|
1310
|
+
border-color: #818cf8;
|
|
1311
1311
|
}
|
|
1312
1312
|
.p-multiselect:not(.p-disabled).p-focus {
|
|
1313
1313
|
outline: 0 none;
|
|
1314
1314
|
outline-offset: 0;
|
|
1315
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
1316
|
-
border-color: #
|
|
1315
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
1316
|
+
border-color: #818cf8;
|
|
1317
1317
|
}
|
|
1318
1318
|
.p-multiselect.p-multiselect-clearable .p-multiselect-label {
|
|
1319
1319
|
padding-right: 1.75rem;
|
|
@@ -1328,7 +1328,7 @@
|
|
|
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: #
|
|
1331
|
+
background: #424b57;
|
|
1332
1332
|
color: rgba(255, 255, 255, 0.87);
|
|
1333
1333
|
border-radius: 16px;
|
|
1334
1334
|
}
|
|
@@ -1361,17 +1361,17 @@
|
|
|
1361
1361
|
}
|
|
1362
1362
|
|
|
1363
1363
|
.p-multiselect-panel {
|
|
1364
|
-
background: #
|
|
1364
|
+
background: #1f2937;
|
|
1365
1365
|
color: rgba(255, 255, 255, 0.87);
|
|
1366
|
-
border: 1px solid #
|
|
1366
|
+
border: 1px solid #424b57;
|
|
1367
1367
|
border-radius: 6px;
|
|
1368
1368
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
1369
1369
|
}
|
|
1370
1370
|
.p-multiselect-panel .p-multiselect-header {
|
|
1371
1371
|
padding: 0.75rem 1.25rem;
|
|
1372
|
-
border-bottom: 1px solid #
|
|
1372
|
+
border-bottom: 1px solid #424b57;
|
|
1373
1373
|
color: rgba(255, 255, 255, 0.87);
|
|
1374
|
-
background: #
|
|
1374
|
+
background: #1f2937;
|
|
1375
1375
|
margin: 0;
|
|
1376
1376
|
border-top-right-radius: 6px;
|
|
1377
1377
|
border-top-left-radius: 6px;
|
|
@@ -1403,7 +1403,7 @@
|
|
|
1403
1403
|
.p-multiselect-panel .p-multiselect-header .p-multiselect-close:focus-visible {
|
|
1404
1404
|
outline: 0 none;
|
|
1405
1405
|
outline-offset: 0;
|
|
1406
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
1406
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
1407
1407
|
}
|
|
1408
1408
|
.p-multiselect-panel .p-multiselect-items {
|
|
1409
1409
|
padding: 0.75rem 0;
|
|
@@ -1419,7 +1419,7 @@
|
|
|
1419
1419
|
}
|
|
1420
1420
|
.p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight {
|
|
1421
1421
|
color: rgba(255, 255, 255, 0.87);
|
|
1422
|
-
background: rgba(
|
|
1422
|
+
background: rgba(129, 140, 248, 0.16);
|
|
1423
1423
|
}
|
|
1424
1424
|
.p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover {
|
|
1425
1425
|
color: rgba(255, 255, 255, 0.87);
|
|
@@ -1428,7 +1428,7 @@
|
|
|
1428
1428
|
.p-multiselect-panel .p-multiselect-items .p-multiselect-item:focus {
|
|
1429
1429
|
outline: 0 none;
|
|
1430
1430
|
outline-offset: 0;
|
|
1431
|
-
box-shadow: inset 0 0 0 0.15rem rgba(
|
|
1431
|
+
box-shadow: inset 0 0 0 0.15rem rgba(129, 140, 248, 0.2);
|
|
1432
1432
|
}
|
|
1433
1433
|
.p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-checkbox {
|
|
1434
1434
|
margin-right: 0.5rem;
|
|
@@ -1437,7 +1437,7 @@
|
|
|
1437
1437
|
margin: 0;
|
|
1438
1438
|
padding: 0.75rem 1.25rem;
|
|
1439
1439
|
color: rgba(255, 255, 255, 0.87);
|
|
1440
|
-
background: #
|
|
1440
|
+
background: #374151;
|
|
1441
1441
|
font-weight: 700;
|
|
1442
1442
|
}
|
|
1443
1443
|
.p-multiselect-panel .p-multiselect-items .p-multiselect-empty-message {
|
|
@@ -1447,13 +1447,13 @@
|
|
|
1447
1447
|
}
|
|
1448
1448
|
|
|
1449
1449
|
.p-input-filled .p-multiselect {
|
|
1450
|
-
background: #
|
|
1450
|
+
background: #424b57;
|
|
1451
1451
|
}
|
|
1452
1452
|
.p-input-filled .p-multiselect:not(.p-disabled):hover {
|
|
1453
|
-
background-color: #
|
|
1453
|
+
background-color: #424b57;
|
|
1454
1454
|
}
|
|
1455
1455
|
.p-input-filled .p-multiselect:not(.p-disabled).p-focus {
|
|
1456
|
-
background-color: #
|
|
1456
|
+
background-color: #424b57;
|
|
1457
1457
|
}
|
|
1458
1458
|
|
|
1459
1459
|
.p-password.p-invalid.p-component > .p-inputtext {
|
|
@@ -1462,15 +1462,15 @@
|
|
|
1462
1462
|
|
|
1463
1463
|
.p-password-panel {
|
|
1464
1464
|
padding: 1.25rem;
|
|
1465
|
-
background: #
|
|
1465
|
+
background: #1f2937;
|
|
1466
1466
|
color: rgba(255, 255, 255, 0.87);
|
|
1467
|
-
border: 1px solid #
|
|
1467
|
+
border: 1px solid #424b57;
|
|
1468
1468
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
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: #424b57;
|
|
1474
1474
|
}
|
|
1475
1475
|
.p-password-panel .p-password-meter .p-password-strength.weak {
|
|
1476
1476
|
background: #eb9a9c;
|
|
@@ -1487,8 +1487,8 @@
|
|
|
1487
1487
|
height: 22px;
|
|
1488
1488
|
}
|
|
1489
1489
|
.p-radiobutton .p-radiobutton-box {
|
|
1490
|
-
border: 2px solid #
|
|
1491
|
-
background: #
|
|
1490
|
+
border: 2px solid #424b57;
|
|
1491
|
+
background: #111827;
|
|
1492
1492
|
width: 22px;
|
|
1493
1493
|
height: 22px;
|
|
1494
1494
|
color: rgba(255, 255, 255, 0.87);
|
|
@@ -1496,28 +1496,28 @@
|
|
|
1496
1496
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
1497
1497
|
}
|
|
1498
1498
|
.p-radiobutton .p-radiobutton-box:not(.p-disabled):not(.p-highlight):hover {
|
|
1499
|
-
border-color: #
|
|
1499
|
+
border-color: #818cf8;
|
|
1500
1500
|
}
|
|
1501
1501
|
.p-radiobutton .p-radiobutton-box:not(.p-disabled).p-focus {
|
|
1502
1502
|
outline: 0 none;
|
|
1503
1503
|
outline-offset: 0;
|
|
1504
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
1505
|
-
border-color: #
|
|
1504
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
1505
|
+
border-color: #818cf8;
|
|
1506
1506
|
}
|
|
1507
1507
|
.p-radiobutton .p-radiobutton-box .p-radiobutton-icon {
|
|
1508
1508
|
width: 12px;
|
|
1509
1509
|
height: 12px;
|
|
1510
1510
|
transition-duration: 0.2s;
|
|
1511
|
-
background-color: #
|
|
1511
|
+
background-color: #030712;
|
|
1512
1512
|
}
|
|
1513
1513
|
.p-radiobutton .p-radiobutton-box.p-highlight {
|
|
1514
|
-
border-color: #
|
|
1515
|
-
background: #
|
|
1514
|
+
border-color: #818cf8;
|
|
1515
|
+
background: #818cf8;
|
|
1516
1516
|
}
|
|
1517
1517
|
.p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover {
|
|
1518
|
-
border-color: #
|
|
1519
|
-
background: #
|
|
1520
|
-
color: #
|
|
1518
|
+
border-color: #c7d2fe;
|
|
1519
|
+
background: #c7d2fe;
|
|
1520
|
+
color: #030712;
|
|
1521
1521
|
}
|
|
1522
1522
|
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
|
1523
1523
|
border-color: #FCA5A5;
|
|
@@ -1527,16 +1527,16 @@
|
|
|
1527
1527
|
}
|
|
1528
1528
|
|
|
1529
1529
|
.p-input-filled .p-radiobutton .p-radiobutton-box {
|
|
1530
|
-
background-color: #
|
|
1530
|
+
background-color: #424b57;
|
|
1531
1531
|
}
|
|
1532
1532
|
.p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover {
|
|
1533
|
-
background-color: #
|
|
1533
|
+
background-color: #424b57;
|
|
1534
1534
|
}
|
|
1535
1535
|
.p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight {
|
|
1536
|
-
background: #
|
|
1536
|
+
background: #818cf8;
|
|
1537
1537
|
}
|
|
1538
1538
|
.p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover {
|
|
1539
|
-
background: #
|
|
1539
|
+
background: #c7d2fe;
|
|
1540
1540
|
}
|
|
1541
1541
|
|
|
1542
1542
|
.p-rating {
|
|
@@ -1557,21 +1557,21 @@
|
|
|
1557
1557
|
.p-rating .p-rating-item:focus {
|
|
1558
1558
|
outline: 0 none;
|
|
1559
1559
|
outline-offset: 0;
|
|
1560
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
1560
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
1561
1561
|
}
|
|
1562
1562
|
.p-rating .p-rating-item.p-rating-item-active .p-rating-icon {
|
|
1563
|
-
color: #
|
|
1563
|
+
color: #818cf8;
|
|
1564
1564
|
}
|
|
1565
1565
|
.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon {
|
|
1566
|
-
color: #
|
|
1566
|
+
color: #818cf8;
|
|
1567
1567
|
}
|
|
1568
1568
|
.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel {
|
|
1569
1569
|
color: #F48FB1;
|
|
1570
1570
|
}
|
|
1571
1571
|
|
|
1572
1572
|
.p-selectbutton .p-button {
|
|
1573
|
-
background: #
|
|
1574
|
-
border: 1px solid #
|
|
1573
|
+
background: #1f2937;
|
|
1574
|
+
border: 1px solid #424b57;
|
|
1575
1575
|
color: rgba(255, 255, 255, 0.87);
|
|
1576
1576
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
1577
1577
|
}
|
|
@@ -1581,7 +1581,7 @@
|
|
|
1581
1581
|
}
|
|
1582
1582
|
.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover {
|
|
1583
1583
|
background: rgba(255, 255, 255, 0.03);
|
|
1584
|
-
border-color: #
|
|
1584
|
+
border-color: #424b57;
|
|
1585
1585
|
color: rgba(255, 255, 255, 0.87);
|
|
1586
1586
|
}
|
|
1587
1587
|
.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left,
|
|
@@ -1589,29 +1589,29 @@
|
|
|
1589
1589
|
color: rgba(255, 255, 255, 0.6);
|
|
1590
1590
|
}
|
|
1591
1591
|
.p-selectbutton .p-button.p-highlight {
|
|
1592
|
-
background: #
|
|
1593
|
-
border-color: #
|
|
1594
|
-
color: #
|
|
1592
|
+
background: #818cf8;
|
|
1593
|
+
border-color: #818cf8;
|
|
1594
|
+
color: #030712;
|
|
1595
1595
|
}
|
|
1596
1596
|
.p-selectbutton .p-button.p-highlight .p-button-icon-left,
|
|
1597
1597
|
.p-selectbutton .p-button.p-highlight .p-button-icon-right {
|
|
1598
|
-
color: #
|
|
1598
|
+
color: #030712;
|
|
1599
1599
|
}
|
|
1600
1600
|
.p-selectbutton .p-button.p-highlight:hover {
|
|
1601
|
-
background: #
|
|
1602
|
-
border-color: #
|
|
1603
|
-
color: #
|
|
1601
|
+
background: #a5b4fc;
|
|
1602
|
+
border-color: #a5b4fc;
|
|
1603
|
+
color: #030712;
|
|
1604
1604
|
}
|
|
1605
1605
|
.p-selectbutton .p-button.p-highlight:hover .p-button-icon-left,
|
|
1606
1606
|
.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right {
|
|
1607
|
-
color: #
|
|
1607
|
+
color: #030712;
|
|
1608
1608
|
}
|
|
1609
1609
|
.p-selectbutton.p-invalid > .p-button {
|
|
1610
1610
|
border-color: #FCA5A5;
|
|
1611
1611
|
}
|
|
1612
1612
|
|
|
1613
1613
|
.p-slider {
|
|
1614
|
-
background: #
|
|
1614
|
+
background: #424b57;
|
|
1615
1615
|
border: 0 none;
|
|
1616
1616
|
border-radius: 6px;
|
|
1617
1617
|
}
|
|
@@ -1632,38 +1632,41 @@
|
|
|
1632
1632
|
.p-slider .p-slider-handle {
|
|
1633
1633
|
height: 1.143rem;
|
|
1634
1634
|
width: 1.143rem;
|
|
1635
|
-
background: #
|
|
1636
|
-
border: 2px solid #
|
|
1635
|
+
background: #424b57;
|
|
1636
|
+
border: 2px solid #818cf8;
|
|
1637
1637
|
border-radius: 50%;
|
|
1638
1638
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
1639
1639
|
}
|
|
1640
1640
|
.p-slider .p-slider-handle:focus {
|
|
1641
1641
|
outline: 0 none;
|
|
1642
1642
|
outline-offset: 0;
|
|
1643
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
1643
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
1644
1644
|
}
|
|
1645
1645
|
.p-slider .p-slider-range {
|
|
1646
|
-
background: #
|
|
1646
|
+
background: #818cf8;
|
|
1647
1647
|
}
|
|
1648
1648
|
.p-slider:not(.p-disabled) .p-slider-handle:hover {
|
|
1649
|
-
background: #
|
|
1650
|
-
border-color: #
|
|
1649
|
+
background: #818cf8;
|
|
1650
|
+
border-color: #818cf8;
|
|
1651
1651
|
}
|
|
1652
1652
|
|
|
1653
1653
|
.p-treeselect {
|
|
1654
|
-
background: #
|
|
1655
|
-
border: 1px solid #
|
|
1654
|
+
background: #111827;
|
|
1655
|
+
border: 1px solid #424b57;
|
|
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
|
}
|
|
1659
1659
|
.p-treeselect:not(.p-disabled):hover {
|
|
1660
|
-
border-color: #
|
|
1660
|
+
border-color: #818cf8;
|
|
1661
1661
|
}
|
|
1662
1662
|
.p-treeselect:not(.p-disabled).p-focus {
|
|
1663
1663
|
outline: 0 none;
|
|
1664
1664
|
outline-offset: 0;
|
|
1665
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
1666
|
-
border-color: #
|
|
1665
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
1666
|
+
border-color: #818cf8;
|
|
1667
|
+
}
|
|
1668
|
+
.p-treeselect.p-treeselect-clearable .p-treeselect-label {
|
|
1669
|
+
padding-right: 1.75rem;
|
|
1667
1670
|
}
|
|
1668
1671
|
.p-treeselect .p-treeselect-label {
|
|
1669
1672
|
padding: 0.75rem 0.75rem;
|
|
@@ -1675,7 +1678,7 @@
|
|
|
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: #
|
|
1681
|
+
background: #424b57;
|
|
1679
1682
|
color: rgba(255, 255, 255, 0.87);
|
|
1680
1683
|
border-radius: 16px;
|
|
1681
1684
|
}
|
|
@@ -1686,6 +1689,10 @@
|
|
|
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: rgba(255, 255, 255, 0.6);
|
|
1694
|
+
right: 3rem;
|
|
1695
|
+
}
|
|
1689
1696
|
.p-treeselect.p-invalid.p-component {
|
|
1690
1697
|
border-color: #FCA5A5;
|
|
1691
1698
|
}
|
|
@@ -1695,17 +1702,17 @@
|
|
|
1695
1702
|
}
|
|
1696
1703
|
|
|
1697
1704
|
.p-treeselect-panel {
|
|
1698
|
-
background: #
|
|
1705
|
+
background: #1f2937;
|
|
1699
1706
|
color: rgba(255, 255, 255, 0.87);
|
|
1700
|
-
border: 1px solid #
|
|
1707
|
+
border: 1px solid #424b57;
|
|
1701
1708
|
border-radius: 6px;
|
|
1702
1709
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
1703
1710
|
}
|
|
1704
1711
|
.p-treeselect-panel .p-treeselect-header {
|
|
1705
1712
|
padding: 0.75rem 1.25rem;
|
|
1706
|
-
border-bottom: 1px solid #
|
|
1713
|
+
border-bottom: 1px solid #424b57;
|
|
1707
1714
|
color: rgba(255, 255, 255, 0.87);
|
|
1708
|
-
background: #
|
|
1715
|
+
background: #1f2937;
|
|
1709
1716
|
margin: 0;
|
|
1710
1717
|
border-top-right-radius: 6px;
|
|
1711
1718
|
border-top-left-radius: 6px;
|
|
@@ -1743,7 +1750,7 @@
|
|
|
1743
1750
|
.p-treeselect-panel .p-treeselect-header .p-treeselect-close:focus-visible {
|
|
1744
1751
|
outline: 0 none;
|
|
1745
1752
|
outline-offset: 0;
|
|
1746
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
1753
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
1747
1754
|
}
|
|
1748
1755
|
.p-treeselect-panel .p-treeselect-items-wrapper .p-tree {
|
|
1749
1756
|
border: 0 none;
|
|
@@ -1755,18 +1762,18 @@
|
|
|
1755
1762
|
}
|
|
1756
1763
|
|
|
1757
1764
|
.p-input-filled .p-treeselect {
|
|
1758
|
-
background: #
|
|
1765
|
+
background: #424b57;
|
|
1759
1766
|
}
|
|
1760
1767
|
.p-input-filled .p-treeselect:not(.p-disabled):hover {
|
|
1761
|
-
background-color: #
|
|
1768
|
+
background-color: #424b57;
|
|
1762
1769
|
}
|
|
1763
1770
|
.p-input-filled .p-treeselect:not(.p-disabled).p-focus {
|
|
1764
|
-
background-color: #
|
|
1771
|
+
background-color: #424b57;
|
|
1765
1772
|
}
|
|
1766
1773
|
|
|
1767
1774
|
.p-togglebutton.p-button {
|
|
1768
|
-
background: #
|
|
1769
|
-
border: 1px solid #
|
|
1775
|
+
background: #1f2937;
|
|
1776
|
+
border: 1px solid #424b57;
|
|
1770
1777
|
color: rgba(255, 255, 255, 0.87);
|
|
1771
1778
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
1772
1779
|
}
|
|
@@ -1776,7 +1783,7 @@
|
|
|
1776
1783
|
}
|
|
1777
1784
|
.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover {
|
|
1778
1785
|
background: rgba(255, 255, 255, 0.03);
|
|
1779
|
-
border-color: #
|
|
1786
|
+
border-color: #424b57;
|
|
1780
1787
|
color: rgba(255, 255, 255, 0.87);
|
|
1781
1788
|
}
|
|
1782
1789
|
.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left,
|
|
@@ -1784,103 +1791,103 @@
|
|
|
1784
1791
|
color: rgba(255, 255, 255, 0.6);
|
|
1785
1792
|
}
|
|
1786
1793
|
.p-togglebutton.p-button.p-highlight {
|
|
1787
|
-
background: #
|
|
1788
|
-
border-color: #
|
|
1789
|
-
color: #
|
|
1794
|
+
background: #818cf8;
|
|
1795
|
+
border-color: #818cf8;
|
|
1796
|
+
color: #030712;
|
|
1790
1797
|
}
|
|
1791
1798
|
.p-togglebutton.p-button.p-highlight .p-button-icon-left,
|
|
1792
1799
|
.p-togglebutton.p-button.p-highlight .p-button-icon-right {
|
|
1793
|
-
color: #
|
|
1800
|
+
color: #030712;
|
|
1794
1801
|
}
|
|
1795
1802
|
.p-togglebutton.p-button.p-highlight:hover {
|
|
1796
|
-
background: #
|
|
1797
|
-
border-color: #
|
|
1798
|
-
color: #
|
|
1803
|
+
background: #a5b4fc;
|
|
1804
|
+
border-color: #a5b4fc;
|
|
1805
|
+
color: #030712;
|
|
1799
1806
|
}
|
|
1800
1807
|
.p-togglebutton.p-button.p-highlight:hover .p-button-icon-left,
|
|
1801
1808
|
.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right {
|
|
1802
|
-
color: #
|
|
1809
|
+
color: #030712;
|
|
1803
1810
|
}
|
|
1804
1811
|
.p-togglebutton.p-button.p-invalid > .p-button {
|
|
1805
1812
|
border-color: #FCA5A5;
|
|
1806
1813
|
}
|
|
1807
1814
|
|
|
1808
1815
|
.p-button {
|
|
1809
|
-
color: #
|
|
1810
|
-
background: #
|
|
1811
|
-
border: 1px solid #
|
|
1816
|
+
color: #030712;
|
|
1817
|
+
background: #818cf8;
|
|
1818
|
+
border: 1px solid #818cf8;
|
|
1812
1819
|
padding: 0.75rem 1.25rem;
|
|
1813
1820
|
font-size: 1rem;
|
|
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:
|
|
1818
|
-
background: #
|
|
1819
|
-
color: #
|
|
1820
|
-
border-color: #
|
|
1824
|
+
.p-button:not(:disabled):hover {
|
|
1825
|
+
background: #a5b4fc;
|
|
1826
|
+
color: #030712;
|
|
1827
|
+
border-color: #a5b4fc;
|
|
1821
1828
|
}
|
|
1822
|
-
.p-button:
|
|
1823
|
-
background: #
|
|
1824
|
-
color: #
|
|
1825
|
-
border-color: #
|
|
1829
|
+
.p-button:not(:disabled):active {
|
|
1830
|
+
background: #c7d2fe;
|
|
1831
|
+
color: #030712;
|
|
1832
|
+
border-color: #c7d2fe;
|
|
1826
1833
|
}
|
|
1827
1834
|
.p-button.p-button-outlined {
|
|
1828
1835
|
background-color: transparent;
|
|
1829
|
-
color: #
|
|
1836
|
+
color: #818cf8;
|
|
1830
1837
|
border: 1px solid;
|
|
1831
1838
|
}
|
|
1832
|
-
.p-button.p-button-outlined:
|
|
1833
|
-
background: rgba(
|
|
1834
|
-
color: #
|
|
1839
|
+
.p-button.p-button-outlined:not(:disabled):hover {
|
|
1840
|
+
background: rgba(129, 140, 248, 0.04);
|
|
1841
|
+
color: #818cf8;
|
|
1835
1842
|
border: 1px solid;
|
|
1836
1843
|
}
|
|
1837
|
-
.p-button.p-button-outlined:
|
|
1838
|
-
background: rgba(
|
|
1839
|
-
color: #
|
|
1844
|
+
.p-button.p-button-outlined:not(:disabled):active {
|
|
1845
|
+
background: rgba(129, 140, 248, 0.16);
|
|
1846
|
+
color: #818cf8;
|
|
1840
1847
|
border: 1px solid;
|
|
1841
1848
|
}
|
|
1842
1849
|
.p-button.p-button-outlined.p-button-plain {
|
|
1843
1850
|
color: rgba(255, 255, 255, 0.6);
|
|
1844
1851
|
border-color: rgba(255, 255, 255, 0.6);
|
|
1845
1852
|
}
|
|
1846
|
-
.p-button.p-button-outlined.p-button-plain:
|
|
1853
|
+
.p-button.p-button-outlined.p-button-plain:not(:disabled):hover {
|
|
1847
1854
|
background: rgba(255, 255, 255, 0.03);
|
|
1848
1855
|
color: rgba(255, 255, 255, 0.6);
|
|
1849
1856
|
}
|
|
1850
|
-
.p-button.p-button-outlined.p-button-plain:
|
|
1857
|
+
.p-button.p-button-outlined.p-button-plain:not(:disabled):active {
|
|
1851
1858
|
background: rgba(255, 255, 255, 0.16);
|
|
1852
1859
|
color: rgba(255, 255, 255, 0.6);
|
|
1853
1860
|
}
|
|
1854
1861
|
.p-button.p-button-text {
|
|
1855
1862
|
background-color: transparent;
|
|
1856
|
-
color: #
|
|
1863
|
+
color: #818cf8;
|
|
1857
1864
|
border-color: transparent;
|
|
1858
1865
|
}
|
|
1859
|
-
.p-button.p-button-text:
|
|
1860
|
-
background: rgba(
|
|
1861
|
-
color: #
|
|
1866
|
+
.p-button.p-button-text:not(:disabled):hover {
|
|
1867
|
+
background: rgba(129, 140, 248, 0.04);
|
|
1868
|
+
color: #818cf8;
|
|
1862
1869
|
border-color: transparent;
|
|
1863
1870
|
}
|
|
1864
|
-
.p-button.p-button-text:
|
|
1865
|
-
background: rgba(
|
|
1866
|
-
color: #
|
|
1871
|
+
.p-button.p-button-text:not(:disabled):active {
|
|
1872
|
+
background: rgba(129, 140, 248, 0.16);
|
|
1873
|
+
color: #818cf8;
|
|
1867
1874
|
border-color: transparent;
|
|
1868
1875
|
}
|
|
1869
1876
|
.p-button.p-button-text.p-button-plain {
|
|
1870
1877
|
color: rgba(255, 255, 255, 0.6);
|
|
1871
1878
|
}
|
|
1872
|
-
.p-button.p-button-text.p-button-plain:
|
|
1879
|
+
.p-button.p-button-text.p-button-plain:not(:disabled):hover {
|
|
1873
1880
|
background: rgba(255, 255, 255, 0.03);
|
|
1874
1881
|
color: rgba(255, 255, 255, 0.6);
|
|
1875
1882
|
}
|
|
1876
|
-
.p-button.p-button-text.p-button-plain:
|
|
1883
|
+
.p-button.p-button-text.p-button-plain:not(:disabled):active {
|
|
1877
1884
|
background: rgba(255, 255, 255, 0.16);
|
|
1878
1885
|
color: rgba(255, 255, 255, 0.6);
|
|
1879
1886
|
}
|
|
1880
1887
|
.p-button:focus {
|
|
1881
1888
|
outline: 0 none;
|
|
1882
1889
|
outline-offset: 0;
|
|
1883
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
1890
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
1884
1891
|
}
|
|
1885
1892
|
.p-button .p-button-label {
|
|
1886
1893
|
transition-duration: 0.2s;
|
|
@@ -1902,8 +1909,8 @@
|
|
|
1902
1909
|
min-width: 1rem;
|
|
1903
1910
|
height: 1rem;
|
|
1904
1911
|
line-height: 1rem;
|
|
1905
|
-
color: #
|
|
1906
|
-
background-color: #
|
|
1912
|
+
color: #818cf8;
|
|
1913
|
+
background-color: #030712;
|
|
1907
1914
|
}
|
|
1908
1915
|
.p-button.p-button-raised {
|
|
1909
1916
|
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
@@ -1967,320 +1974,320 @@
|
|
|
1967
1974
|
}
|
|
1968
1975
|
|
|
1969
1976
|
.p-button.p-button-secondary, .p-buttonset.p-button-secondary > .p-button, .p-splitbutton.p-button-secondary > .p-button, .p-fileupload-choose.p-button-secondary {
|
|
1970
|
-
color: #
|
|
1971
|
-
background: #
|
|
1972
|
-
border: 1px solid #
|
|
1977
|
+
color: #020617;
|
|
1978
|
+
background: #94a3b8;
|
|
1979
|
+
border: 1px solid #94a3b8;
|
|
1973
1980
|
}
|
|
1974
|
-
.p-button.p-button-secondary:
|
|
1975
|
-
background: #
|
|
1976
|
-
color: #
|
|
1977
|
-
border-color: #
|
|
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 {
|
|
1982
|
+
background: #cbd5e1;
|
|
1983
|
+
color: #020617;
|
|
1984
|
+
border-color: #cbd5e1;
|
|
1978
1985
|
}
|
|
1979
|
-
.p-button.p-button-secondary:
|
|
1980
|
-
box-shadow: 0 0 0 1px #
|
|
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 {
|
|
1987
|
+
box-shadow: 0 0 0 1px #b4bfcd;
|
|
1981
1988
|
}
|
|
1982
|
-
.p-button.p-button-secondary:
|
|
1983
|
-
background: #
|
|
1984
|
-
color: #
|
|
1985
|
-
border-color: #
|
|
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 {
|
|
1990
|
+
background: #e2e8f0;
|
|
1991
|
+
color: #020617;
|
|
1992
|
+
border-color: #e2e8f0;
|
|
1986
1993
|
}
|
|
1987
1994
|
.p-button.p-button-secondary.p-button-outlined, .p-buttonset.p-button-secondary > .p-button.p-button-outlined, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined, .p-fileupload-choose.p-button-secondary.p-button-outlined {
|
|
1988
1995
|
background-color: transparent;
|
|
1989
|
-
color: #
|
|
1996
|
+
color: #94a3b8;
|
|
1990
1997
|
border: 1px solid;
|
|
1991
1998
|
}
|
|
1992
|
-
.p-button.p-button-secondary.p-button-outlined:
|
|
1993
|
-
background: rgba(
|
|
1994
|
-
color: #
|
|
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 {
|
|
2000
|
+
background: rgba(148, 163, 184, 0.04);
|
|
2001
|
+
color: #94a3b8;
|
|
1995
2002
|
border: 1px solid;
|
|
1996
2003
|
}
|
|
1997
|
-
.p-button.p-button-secondary.p-button-outlined:
|
|
1998
|
-
background: rgba(
|
|
1999
|
-
color: #
|
|
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 {
|
|
2005
|
+
background: rgba(148, 163, 184, 0.16);
|
|
2006
|
+
color: #94a3b8;
|
|
2000
2007
|
border: 1px solid;
|
|
2001
2008
|
}
|
|
2002
2009
|
.p-button.p-button-secondary.p-button-text, .p-buttonset.p-button-secondary > .p-button.p-button-text, .p-splitbutton.p-button-secondary > .p-button.p-button-text, .p-fileupload-choose.p-button-secondary.p-button-text {
|
|
2003
2010
|
background-color: transparent;
|
|
2004
|
-
color: #
|
|
2011
|
+
color: #94a3b8;
|
|
2005
2012
|
border-color: transparent;
|
|
2006
2013
|
}
|
|
2007
|
-
.p-button.p-button-secondary.p-button-text:
|
|
2008
|
-
background: rgba(
|
|
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 {
|
|
2015
|
+
background: rgba(148, 163, 184, 0.04);
|
|
2009
2016
|
border-color: transparent;
|
|
2010
|
-
color: #
|
|
2017
|
+
color: #94a3b8;
|
|
2011
2018
|
}
|
|
2012
|
-
.p-button.p-button-secondary.p-button-text:
|
|
2013
|
-
background: rgba(
|
|
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 {
|
|
2020
|
+
background: rgba(148, 163, 184, 0.16);
|
|
2014
2021
|
border-color: transparent;
|
|
2015
|
-
color: #
|
|
2022
|
+
color: #94a3b8;
|
|
2016
2023
|
}
|
|
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
|
-
color: #
|
|
2020
|
-
background: #
|
|
2021
|
-
border: 1px solid #
|
|
2026
|
+
color: #082f49;
|
|
2027
|
+
background: #38bdf8;
|
|
2028
|
+
border: 1px solid #38bdf8;
|
|
2022
2029
|
}
|
|
2023
|
-
.p-button.p-button-info:
|
|
2024
|
-
background: #
|
|
2025
|
-
color: #
|
|
2026
|
-
border-color: #
|
|
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: #7dd3fc;
|
|
2032
|
+
color: #082f49;
|
|
2033
|
+
border-color: #7dd3fc;
|
|
2027
2034
|
}
|
|
2028
|
-
.p-button.p-button-info:
|
|
2029
|
-
box-shadow: 0 0 0 1px #
|
|
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 {
|
|
2036
|
+
box-shadow: 0 0 0 1px #74d1fa;
|
|
2030
2037
|
}
|
|
2031
|
-
.p-button.p-button-info:
|
|
2032
|
-
background: #
|
|
2033
|
-
color: #
|
|
2034
|
-
border-color: #
|
|
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: #bae6fd;
|
|
2040
|
+
color: #082f49;
|
|
2041
|
+
border-color: #bae6fd;
|
|
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: #38bdf8;
|
|
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(56, 189, 248, 0.04);
|
|
2050
|
+
color: #38bdf8;
|
|
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(56, 189, 248, 0.16);
|
|
2055
|
+
color: #38bdf8;
|
|
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: #38bdf8;
|
|
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(56, 189, 248, 0.04);
|
|
2058
2065
|
border-color: transparent;
|
|
2059
|
-
color: #
|
|
2066
|
+
color: #38bdf8;
|
|
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(56, 189, 248, 0.16);
|
|
2063
2070
|
border-color: transparent;
|
|
2064
|
-
color: #
|
|
2071
|
+
color: #38bdf8;
|
|
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 {
|
|
2068
|
-
color: #
|
|
2069
|
-
background: #
|
|
2070
|
-
border: 1px solid #
|
|
2075
|
+
color: #052e16;
|
|
2076
|
+
background: #4ade80;
|
|
2077
|
+
border: 1px solid #4ade80;
|
|
2071
2078
|
}
|
|
2072
|
-
.p-button.p-button-success:
|
|
2073
|
-
background: #
|
|
2074
|
-
color: #
|
|
2075
|
-
border-color: #
|
|
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 {
|
|
2080
|
+
background: #86efac;
|
|
2081
|
+
color: #052e16;
|
|
2082
|
+
border-color: #86efac;
|
|
2076
2083
|
}
|
|
2077
|
-
.p-button.p-button-success:
|
|
2078
|
-
box-shadow: 0 0 0 1px #
|
|
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 {
|
|
2085
|
+
box-shadow: 0 0 0 1px #80e8a6;
|
|
2079
2086
|
}
|
|
2080
|
-
.p-button.p-button-success:
|
|
2081
|
-
background: #
|
|
2082
|
-
color: #
|
|
2083
|
-
border-color: #
|
|
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 {
|
|
2088
|
+
background: #bbf7d0;
|
|
2089
|
+
color: #052e16;
|
|
2090
|
+
border-color: #bbf7d0;
|
|
2084
2091
|
}
|
|
2085
2092
|
.p-button.p-button-success.p-button-outlined, .p-buttonset.p-button-success > .p-button.p-button-outlined, .p-splitbutton.p-button-success > .p-button.p-button-outlined, .p-fileupload-choose.p-button-success.p-button-outlined {
|
|
2086
2093
|
background-color: transparent;
|
|
2087
|
-
color: #
|
|
2094
|
+
color: #4ade80;
|
|
2088
2095
|
border: 1px solid;
|
|
2089
2096
|
}
|
|
2090
|
-
.p-button.p-button-success.p-button-outlined:
|
|
2091
|
-
background: rgba(
|
|
2092
|
-
color: #
|
|
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 {
|
|
2098
|
+
background: rgba(74, 222, 128, 0.04);
|
|
2099
|
+
color: #4ade80;
|
|
2093
2100
|
border: 1px solid;
|
|
2094
2101
|
}
|
|
2095
|
-
.p-button.p-button-success.p-button-outlined:
|
|
2096
|
-
background: rgba(
|
|
2097
|
-
color: #
|
|
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 {
|
|
2103
|
+
background: rgba(74, 222, 128, 0.16);
|
|
2104
|
+
color: #4ade80;
|
|
2098
2105
|
border: 1px solid;
|
|
2099
2106
|
}
|
|
2100
2107
|
.p-button.p-button-success.p-button-text, .p-buttonset.p-button-success > .p-button.p-button-text, .p-splitbutton.p-button-success > .p-button.p-button-text, .p-fileupload-choose.p-button-success.p-button-text {
|
|
2101
2108
|
background-color: transparent;
|
|
2102
|
-
color: #
|
|
2109
|
+
color: #4ade80;
|
|
2103
2110
|
border-color: transparent;
|
|
2104
2111
|
}
|
|
2105
|
-
.p-button.p-button-success.p-button-text:
|
|
2106
|
-
background: rgba(
|
|
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 {
|
|
2113
|
+
background: rgba(74, 222, 128, 0.04);
|
|
2107
2114
|
border-color: transparent;
|
|
2108
|
-
color: #
|
|
2115
|
+
color: #4ade80;
|
|
2109
2116
|
}
|
|
2110
|
-
.p-button.p-button-success.p-button-text:
|
|
2111
|
-
background: rgba(
|
|
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 {
|
|
2118
|
+
background: rgba(74, 222, 128, 0.16);
|
|
2112
2119
|
border-color: transparent;
|
|
2113
|
-
color: #
|
|
2120
|
+
color: #4ade80;
|
|
2114
2121
|
}
|
|
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
|
-
color: #
|
|
2118
|
-
background: #
|
|
2119
|
-
border: 1px solid #
|
|
2124
|
+
color: #431407;
|
|
2125
|
+
background: #fb923c;
|
|
2126
|
+
border: 1px solid #fb923c;
|
|
2120
2127
|
}
|
|
2121
|
-
.p-button.p-button-warning:
|
|
2122
|
-
background: #
|
|
2123
|
-
color: #
|
|
2124
|
-
border-color: #
|
|
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: #fdba74;
|
|
2130
|
+
color: #431407;
|
|
2131
|
+
border-color: #fdba74;
|
|
2125
2132
|
}
|
|
2126
|
-
.p-button.p-button-warning:
|
|
2127
|
-
box-shadow: 0 0 0 1px #
|
|
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 {
|
|
2134
|
+
box-shadow: 0 0 0 1px #fcb377;
|
|
2128
2135
|
}
|
|
2129
|
-
.p-button.p-button-warning:
|
|
2130
|
-
background: #
|
|
2131
|
-
color: #
|
|
2132
|
-
border-color: #
|
|
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: #fed7aa;
|
|
2138
|
+
color: #431407;
|
|
2139
|
+
border-color: #fed7aa;
|
|
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: #fb923c;
|
|
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(251, 146, 60, 0.04);
|
|
2148
|
+
color: #fb923c;
|
|
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(251, 146, 60, 0.16);
|
|
2153
|
+
color: #fb923c;
|
|
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: #fb923c;
|
|
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(251, 146, 60, 0.04);
|
|
2156
2163
|
border-color: transparent;
|
|
2157
|
-
color: #
|
|
2164
|
+
color: #fb923c;
|
|
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(251, 146, 60, 0.16);
|
|
2161
2168
|
border-color: transparent;
|
|
2162
|
-
color: #
|
|
2169
|
+
color: #fb923c;
|
|
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 {
|
|
2166
|
-
color: #
|
|
2167
|
-
background: #
|
|
2168
|
-
border: 1px solid #
|
|
2173
|
+
color: #3b0764;
|
|
2174
|
+
background: #c084fc;
|
|
2175
|
+
border: 1px solid #c084fc;
|
|
2169
2176
|
}
|
|
2170
|
-
.p-button.p-button-help:
|
|
2171
|
-
background: #
|
|
2172
|
-
color: #
|
|
2173
|
-
border-color: #
|
|
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 {
|
|
2178
|
+
background: #d8b4fe;
|
|
2179
|
+
color: #3b0764;
|
|
2180
|
+
border-color: #d8b4fe;
|
|
2174
2181
|
}
|
|
2175
|
-
.p-button.p-button-help:
|
|
2176
|
-
box-shadow: 0 0 0 1px #
|
|
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 {
|
|
2183
|
+
box-shadow: 0 0 0 1px #d3a9fd;
|
|
2177
2184
|
}
|
|
2178
|
-
.p-button.p-button-help:
|
|
2179
|
-
background: #
|
|
2180
|
-
color: #
|
|
2181
|
-
border-color: #
|
|
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 {
|
|
2186
|
+
background: #e9d5ff;
|
|
2187
|
+
color: #3b0764;
|
|
2188
|
+
border-color: #e9d5ff;
|
|
2182
2189
|
}
|
|
2183
2190
|
.p-button.p-button-help.p-button-outlined, .p-buttonset.p-button-help > .p-button.p-button-outlined, .p-splitbutton.p-button-help > .p-button.p-button-outlined, .p-fileupload-choose.p-button-help.p-button-outlined {
|
|
2184
2191
|
background-color: transparent;
|
|
2185
|
-
color: #
|
|
2192
|
+
color: #c084fc;
|
|
2186
2193
|
border: 1px solid;
|
|
2187
2194
|
}
|
|
2188
|
-
.p-button.p-button-help.p-button-outlined:
|
|
2189
|
-
background: rgba(
|
|
2190
|
-
color: #
|
|
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 {
|
|
2196
|
+
background: rgba(192, 132, 252, 0.04);
|
|
2197
|
+
color: #c084fc;
|
|
2191
2198
|
border: 1px solid;
|
|
2192
2199
|
}
|
|
2193
|
-
.p-button.p-button-help.p-button-outlined:
|
|
2194
|
-
background: rgba(
|
|
2195
|
-
color: #
|
|
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 {
|
|
2201
|
+
background: rgba(192, 132, 252, 0.16);
|
|
2202
|
+
color: #c084fc;
|
|
2196
2203
|
border: 1px solid;
|
|
2197
2204
|
}
|
|
2198
2205
|
.p-button.p-button-help.p-button-text, .p-buttonset.p-button-help > .p-button.p-button-text, .p-splitbutton.p-button-help > .p-button.p-button-text, .p-fileupload-choose.p-button-help.p-button-text {
|
|
2199
2206
|
background-color: transparent;
|
|
2200
|
-
color: #
|
|
2207
|
+
color: #c084fc;
|
|
2201
2208
|
border-color: transparent;
|
|
2202
2209
|
}
|
|
2203
|
-
.p-button.p-button-help.p-button-text:
|
|
2204
|
-
background: rgba(
|
|
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 {
|
|
2211
|
+
background: rgba(192, 132, 252, 0.04);
|
|
2205
2212
|
border-color: transparent;
|
|
2206
|
-
color: #
|
|
2213
|
+
color: #c084fc;
|
|
2207
2214
|
}
|
|
2208
|
-
.p-button.p-button-help.p-button-text:
|
|
2209
|
-
background: rgba(
|
|
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 {
|
|
2216
|
+
background: rgba(192, 132, 252, 0.16);
|
|
2210
2217
|
border-color: transparent;
|
|
2211
|
-
color: #
|
|
2218
|
+
color: #c084fc;
|
|
2212
2219
|
}
|
|
2213
2220
|
|
|
2214
2221
|
.p-button.p-button-danger, .p-buttonset.p-button-danger > .p-button, .p-splitbutton.p-button-danger > .p-button, .p-fileupload-choose.p-button-danger {
|
|
2215
|
-
color: #
|
|
2216
|
-
background: #
|
|
2217
|
-
border: 1px solid #
|
|
2222
|
+
color: #450a0a;
|
|
2223
|
+
background: #f87171;
|
|
2224
|
+
border: 1px solid #f87171;
|
|
2218
2225
|
}
|
|
2219
|
-
.p-button.p-button-danger:
|
|
2220
|
-
background: #
|
|
2221
|
-
color: #
|
|
2222
|
-
border-color: #
|
|
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 {
|
|
2227
|
+
background: #fca5a5;
|
|
2228
|
+
color: #450a0a;
|
|
2229
|
+
border-color: #fca5a5;
|
|
2223
2230
|
}
|
|
2224
|
-
.p-button.p-button-danger:
|
|
2225
|
-
box-shadow: 0 0 0 1px #
|
|
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 {
|
|
2232
|
+
box-shadow: 0 0 0 1px #fa9c9c;
|
|
2226
2233
|
}
|
|
2227
|
-
.p-button.p-button-danger:
|
|
2228
|
-
background: #
|
|
2229
|
-
color: #
|
|
2230
|
-
border-color: #
|
|
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 {
|
|
2235
|
+
background: #fecaca;
|
|
2236
|
+
color: #450a0a;
|
|
2237
|
+
border-color: #fecaca;
|
|
2231
2238
|
}
|
|
2232
2239
|
.p-button.p-button-danger.p-button-outlined, .p-buttonset.p-button-danger > .p-button.p-button-outlined, .p-splitbutton.p-button-danger > .p-button.p-button-outlined, .p-fileupload-choose.p-button-danger.p-button-outlined {
|
|
2233
2240
|
background-color: transparent;
|
|
2234
|
-
color: #
|
|
2241
|
+
color: #f87171;
|
|
2235
2242
|
border: 1px solid;
|
|
2236
2243
|
}
|
|
2237
|
-
.p-button.p-button-danger.p-button-outlined:
|
|
2238
|
-
background: rgba(
|
|
2239
|
-
color: #
|
|
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 {
|
|
2245
|
+
background: rgba(248, 113, 113, 0.04);
|
|
2246
|
+
color: #f87171;
|
|
2240
2247
|
border: 1px solid;
|
|
2241
2248
|
}
|
|
2242
|
-
.p-button.p-button-danger.p-button-outlined:
|
|
2243
|
-
background: rgba(
|
|
2244
|
-
color: #
|
|
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 {
|
|
2250
|
+
background: rgba(248, 113, 113, 0.16);
|
|
2251
|
+
color: #f87171;
|
|
2245
2252
|
border: 1px solid;
|
|
2246
2253
|
}
|
|
2247
2254
|
.p-button.p-button-danger.p-button-text, .p-buttonset.p-button-danger > .p-button.p-button-text, .p-splitbutton.p-button-danger > .p-button.p-button-text, .p-fileupload-choose.p-button-danger.p-button-text {
|
|
2248
2255
|
background-color: transparent;
|
|
2249
|
-
color: #
|
|
2256
|
+
color: #f87171;
|
|
2250
2257
|
border-color: transparent;
|
|
2251
2258
|
}
|
|
2252
|
-
.p-button.p-button-danger.p-button-text:
|
|
2253
|
-
background: rgba(
|
|
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 {
|
|
2260
|
+
background: rgba(248, 113, 113, 0.04);
|
|
2254
2261
|
border-color: transparent;
|
|
2255
|
-
color: #
|
|
2262
|
+
color: #f87171;
|
|
2256
2263
|
}
|
|
2257
|
-
.p-button.p-button-danger.p-button-text:
|
|
2258
|
-
background: rgba(
|
|
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 {
|
|
2265
|
+
background: rgba(248, 113, 113, 0.16);
|
|
2259
2266
|
border-color: transparent;
|
|
2260
|
-
color: #
|
|
2267
|
+
color: #f87171;
|
|
2261
2268
|
}
|
|
2262
2269
|
|
|
2263
2270
|
.p-button.p-button-link {
|
|
2264
|
-
color: #
|
|
2271
|
+
color: #818cf8;
|
|
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
|
-
color: #
|
|
2277
|
+
color: #818cf8;
|
|
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
|
-
box-shadow: 0 0 0 1px rgba(
|
|
2285
|
+
box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.2);
|
|
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
|
-
color: #
|
|
2290
|
+
color: #818cf8;
|
|
2284
2291
|
border-color: transparent;
|
|
2285
2292
|
}
|
|
2286
2293
|
|
|
@@ -2289,52 +2296,52 @@
|
|
|
2289
2296
|
}
|
|
2290
2297
|
.p-splitbutton.p-button-outlined > .p-button {
|
|
2291
2298
|
background-color: transparent;
|
|
2292
|
-
color: #
|
|
2299
|
+
color: #818cf8;
|
|
2293
2300
|
border: 1px solid;
|
|
2294
2301
|
}
|
|
2295
|
-
.p-splitbutton.p-button-outlined > .p-button:
|
|
2296
|
-
background: rgba(
|
|
2297
|
-
color: #
|
|
2302
|
+
.p-splitbutton.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2303
|
+
background: rgba(129, 140, 248, 0.04);
|
|
2304
|
+
color: #818cf8;
|
|
2298
2305
|
}
|
|
2299
|
-
.p-splitbutton.p-button-outlined > .p-button:
|
|
2300
|
-
background: rgba(
|
|
2301
|
-
color: #
|
|
2306
|
+
.p-splitbutton.p-button-outlined > .p-button:not(:disabled):active {
|
|
2307
|
+
background: rgba(129, 140, 248, 0.16);
|
|
2308
|
+
color: #818cf8;
|
|
2302
2309
|
}
|
|
2303
2310
|
.p-splitbutton.p-button-outlined.p-button-plain > .p-button {
|
|
2304
2311
|
color: rgba(255, 255, 255, 0.6);
|
|
2305
2312
|
border-color: rgba(255, 255, 255, 0.6);
|
|
2306
2313
|
}
|
|
2307
|
-
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:
|
|
2314
|
+
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:not(:disabled):hover {
|
|
2308
2315
|
background: rgba(255, 255, 255, 0.03);
|
|
2309
2316
|
color: rgba(255, 255, 255, 0.6);
|
|
2310
2317
|
}
|
|
2311
|
-
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:
|
|
2318
|
+
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:not(:disabled):active {
|
|
2312
2319
|
background: rgba(255, 255, 255, 0.16);
|
|
2313
2320
|
color: rgba(255, 255, 255, 0.6);
|
|
2314
2321
|
}
|
|
2315
2322
|
.p-splitbutton.p-button-text > .p-button {
|
|
2316
2323
|
background-color: transparent;
|
|
2317
|
-
color: #
|
|
2324
|
+
color: #818cf8;
|
|
2318
2325
|
border-color: transparent;
|
|
2319
2326
|
}
|
|
2320
|
-
.p-splitbutton.p-button-text > .p-button:
|
|
2321
|
-
background: rgba(
|
|
2322
|
-
color: #
|
|
2327
|
+
.p-splitbutton.p-button-text > .p-button:not(:disabled):hover {
|
|
2328
|
+
background: rgba(129, 140, 248, 0.04);
|
|
2329
|
+
color: #818cf8;
|
|
2323
2330
|
border-color: transparent;
|
|
2324
2331
|
}
|
|
2325
|
-
.p-splitbutton.p-button-text > .p-button:
|
|
2326
|
-
background: rgba(
|
|
2327
|
-
color: #
|
|
2332
|
+
.p-splitbutton.p-button-text > .p-button:not(:disabled):active {
|
|
2333
|
+
background: rgba(129, 140, 248, 0.16);
|
|
2334
|
+
color: #818cf8;
|
|
2328
2335
|
border-color: transparent;
|
|
2329
2336
|
}
|
|
2330
2337
|
.p-splitbutton.p-button-text.p-button-plain > .p-button {
|
|
2331
2338
|
color: rgba(255, 255, 255, 0.6);
|
|
2332
2339
|
}
|
|
2333
|
-
.p-splitbutton.p-button-text.p-button-plain > .p-button:
|
|
2340
|
+
.p-splitbutton.p-button-text.p-button-plain > .p-button:not(:disabled):hover {
|
|
2334
2341
|
background: rgba(255, 255, 255, 0.03);
|
|
2335
2342
|
color: rgba(255, 255, 255, 0.6);
|
|
2336
2343
|
}
|
|
2337
|
-
.p-splitbutton.p-button-text.p-button-plain > .p-button:
|
|
2344
|
+
.p-splitbutton.p-button-text.p-button-plain > .p-button:not(:disabled):active {
|
|
2338
2345
|
background: rgba(255, 255, 255, 0.16);
|
|
2339
2346
|
color: rgba(255, 255, 255, 0.6);
|
|
2340
2347
|
}
|
|
@@ -2373,176 +2380,176 @@
|
|
|
2373
2380
|
|
|
2374
2381
|
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button {
|
|
2375
2382
|
background-color: transparent;
|
|
2376
|
-
color: #
|
|
2383
|
+
color: #94a3b8;
|
|
2377
2384
|
border: 1px solid;
|
|
2378
2385
|
}
|
|
2379
|
-
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:
|
|
2380
|
-
background: rgba(
|
|
2381
|
-
color: #
|
|
2386
|
+
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2387
|
+
background: rgba(148, 163, 184, 0.04);
|
|
2388
|
+
color: #94a3b8;
|
|
2382
2389
|
}
|
|
2383
|
-
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:
|
|
2384
|
-
background: rgba(
|
|
2385
|
-
color: #
|
|
2390
|
+
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):active {
|
|
2391
|
+
background: rgba(148, 163, 184, 0.16);
|
|
2392
|
+
color: #94a3b8;
|
|
2386
2393
|
}
|
|
2387
2394
|
.p-splitbutton.p-button-secondary.p-button-text > .p-button {
|
|
2388
2395
|
background-color: transparent;
|
|
2389
|
-
color: #
|
|
2396
|
+
color: #94a3b8;
|
|
2390
2397
|
border-color: transparent;
|
|
2391
2398
|
}
|
|
2392
|
-
.p-splitbutton.p-button-secondary.p-button-text > .p-button:
|
|
2393
|
-
background: rgba(
|
|
2399
|
+
.p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):hover {
|
|
2400
|
+
background: rgba(148, 163, 184, 0.04);
|
|
2394
2401
|
border-color: transparent;
|
|
2395
|
-
color: #
|
|
2402
|
+
color: #94a3b8;
|
|
2396
2403
|
}
|
|
2397
|
-
.p-splitbutton.p-button-secondary.p-button-text > .p-button:
|
|
2398
|
-
background: rgba(
|
|
2404
|
+
.p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):active {
|
|
2405
|
+
background: rgba(148, 163, 184, 0.16);
|
|
2399
2406
|
border-color: transparent;
|
|
2400
|
-
color: #
|
|
2407
|
+
color: #94a3b8;
|
|
2401
2408
|
}
|
|
2402
2409
|
|
|
2403
2410
|
.p-splitbutton.p-button-info.p-button-outlined > .p-button {
|
|
2404
2411
|
background-color: transparent;
|
|
2405
|
-
color: #
|
|
2412
|
+
color: #38bdf8;
|
|
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(56, 189, 248, 0.04);
|
|
2417
|
+
color: #38bdf8;
|
|
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(56, 189, 248, 0.16);
|
|
2421
|
+
color: #38bdf8;
|
|
2415
2422
|
}
|
|
2416
2423
|
.p-splitbutton.p-button-info.p-button-text > .p-button {
|
|
2417
2424
|
background-color: transparent;
|
|
2418
|
-
color: #
|
|
2425
|
+
color: #38bdf8;
|
|
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(56, 189, 248, 0.04);
|
|
2423
2430
|
border-color: transparent;
|
|
2424
|
-
color: #
|
|
2431
|
+
color: #38bdf8;
|
|
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(56, 189, 248, 0.16);
|
|
2428
2435
|
border-color: transparent;
|
|
2429
|
-
color: #
|
|
2436
|
+
color: #38bdf8;
|
|
2430
2437
|
}
|
|
2431
2438
|
|
|
2432
2439
|
.p-splitbutton.p-button-success.p-button-outlined > .p-button {
|
|
2433
2440
|
background-color: transparent;
|
|
2434
|
-
color: #
|
|
2441
|
+
color: #4ade80;
|
|
2435
2442
|
border: 1px solid;
|
|
2436
2443
|
}
|
|
2437
|
-
.p-splitbutton.p-button-success.p-button-outlined > .p-button:
|
|
2438
|
-
background: rgba(
|
|
2439
|
-
color: #
|
|
2444
|
+
.p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2445
|
+
background: rgba(74, 222, 128, 0.04);
|
|
2446
|
+
color: #4ade80;
|
|
2440
2447
|
}
|
|
2441
|
-
.p-splitbutton.p-button-success.p-button-outlined > .p-button:
|
|
2442
|
-
background: rgba(
|
|
2443
|
-
color: #
|
|
2448
|
+
.p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):active {
|
|
2449
|
+
background: rgba(74, 222, 128, 0.16);
|
|
2450
|
+
color: #4ade80;
|
|
2444
2451
|
}
|
|
2445
2452
|
.p-splitbutton.p-button-success.p-button-text > .p-button {
|
|
2446
2453
|
background-color: transparent;
|
|
2447
|
-
color: #
|
|
2454
|
+
color: #4ade80;
|
|
2448
2455
|
border-color: transparent;
|
|
2449
2456
|
}
|
|
2450
|
-
.p-splitbutton.p-button-success.p-button-text > .p-button:
|
|
2451
|
-
background: rgba(
|
|
2457
|
+
.p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):hover {
|
|
2458
|
+
background: rgba(74, 222, 128, 0.04);
|
|
2452
2459
|
border-color: transparent;
|
|
2453
|
-
color: #
|
|
2460
|
+
color: #4ade80;
|
|
2454
2461
|
}
|
|
2455
|
-
.p-splitbutton.p-button-success.p-button-text > .p-button:
|
|
2456
|
-
background: rgba(
|
|
2462
|
+
.p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):active {
|
|
2463
|
+
background: rgba(74, 222, 128, 0.16);
|
|
2457
2464
|
border-color: transparent;
|
|
2458
|
-
color: #
|
|
2465
|
+
color: #4ade80;
|
|
2459
2466
|
}
|
|
2460
2467
|
|
|
2461
2468
|
.p-splitbutton.p-button-warning.p-button-outlined > .p-button {
|
|
2462
2469
|
background-color: transparent;
|
|
2463
|
-
color: #
|
|
2470
|
+
color: #fb923c;
|
|
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(251, 146, 60, 0.04);
|
|
2475
|
+
color: #fb923c;
|
|
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(251, 146, 60, 0.16);
|
|
2479
|
+
color: #fb923c;
|
|
2473
2480
|
}
|
|
2474
2481
|
.p-splitbutton.p-button-warning.p-button-text > .p-button {
|
|
2475
2482
|
background-color: transparent;
|
|
2476
|
-
color: #
|
|
2483
|
+
color: #fb923c;
|
|
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(251, 146, 60, 0.04);
|
|
2481
2488
|
border-color: transparent;
|
|
2482
|
-
color: #
|
|
2489
|
+
color: #fb923c;
|
|
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(251, 146, 60, 0.16);
|
|
2486
2493
|
border-color: transparent;
|
|
2487
|
-
color: #
|
|
2494
|
+
color: #fb923c;
|
|
2488
2495
|
}
|
|
2489
2496
|
|
|
2490
2497
|
.p-splitbutton.p-button-help.p-button-outlined > .p-button {
|
|
2491
2498
|
background-color: transparent;
|
|
2492
|
-
color: #
|
|
2499
|
+
color: #c084fc;
|
|
2493
2500
|
border: 1px solid;
|
|
2494
2501
|
}
|
|
2495
|
-
.p-splitbutton.p-button-help.p-button-outlined > .p-button:
|
|
2496
|
-
background: rgba(
|
|
2497
|
-
color: #
|
|
2502
|
+
.p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2503
|
+
background: rgba(192, 132, 252, 0.04);
|
|
2504
|
+
color: #c084fc;
|
|
2498
2505
|
}
|
|
2499
|
-
.p-splitbutton.p-button-help.p-button-outlined > .p-button:
|
|
2500
|
-
background: rgba(
|
|
2501
|
-
color: #
|
|
2506
|
+
.p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):active {
|
|
2507
|
+
background: rgba(192, 132, 252, 0.16);
|
|
2508
|
+
color: #c084fc;
|
|
2502
2509
|
}
|
|
2503
2510
|
.p-splitbutton.p-button-help.p-button-text > .p-button {
|
|
2504
2511
|
background-color: transparent;
|
|
2505
|
-
color: #
|
|
2512
|
+
color: #c084fc;
|
|
2506
2513
|
border-color: transparent;
|
|
2507
2514
|
}
|
|
2508
|
-
.p-splitbutton.p-button-help.p-button-text > .p-button:
|
|
2509
|
-
background: rgba(
|
|
2515
|
+
.p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):hover {
|
|
2516
|
+
background: rgba(192, 132, 252, 0.04);
|
|
2510
2517
|
border-color: transparent;
|
|
2511
|
-
color: #
|
|
2518
|
+
color: #c084fc;
|
|
2512
2519
|
}
|
|
2513
|
-
.p-splitbutton.p-button-help.p-button-text > .p-button:
|
|
2514
|
-
background: rgba(
|
|
2520
|
+
.p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):active {
|
|
2521
|
+
background: rgba(192, 132, 252, 0.16);
|
|
2515
2522
|
border-color: transparent;
|
|
2516
|
-
color: #
|
|
2523
|
+
color: #c084fc;
|
|
2517
2524
|
}
|
|
2518
2525
|
|
|
2519
2526
|
.p-splitbutton.p-button-danger.p-button-outlined > .p-button {
|
|
2520
2527
|
background-color: transparent;
|
|
2521
|
-
color: #
|
|
2528
|
+
color: #f87171;
|
|
2522
2529
|
border: 1px solid;
|
|
2523
2530
|
}
|
|
2524
|
-
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:
|
|
2525
|
-
background: rgba(
|
|
2526
|
-
color: #
|
|
2531
|
+
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2532
|
+
background: rgba(248, 113, 113, 0.04);
|
|
2533
|
+
color: #f87171;
|
|
2527
2534
|
}
|
|
2528
|
-
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:
|
|
2529
|
-
background: rgba(
|
|
2530
|
-
color: #
|
|
2535
|
+
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):active {
|
|
2536
|
+
background: rgba(248, 113, 113, 0.16);
|
|
2537
|
+
color: #f87171;
|
|
2531
2538
|
}
|
|
2532
2539
|
.p-splitbutton.p-button-danger.p-button-text > .p-button {
|
|
2533
2540
|
background-color: transparent;
|
|
2534
|
-
color: #
|
|
2541
|
+
color: #f87171;
|
|
2535
2542
|
border-color: transparent;
|
|
2536
2543
|
}
|
|
2537
|
-
.p-splitbutton.p-button-danger.p-button-text > .p-button:
|
|
2538
|
-
background: rgba(
|
|
2544
|
+
.p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):hover {
|
|
2545
|
+
background: rgba(248, 113, 113, 0.04);
|
|
2539
2546
|
border-color: transparent;
|
|
2540
|
-
color: #
|
|
2547
|
+
color: #f87171;
|
|
2541
2548
|
}
|
|
2542
|
-
.p-splitbutton.p-button-danger.p-button-text > .p-button:
|
|
2543
|
-
background: rgba(
|
|
2549
|
+
.p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):active {
|
|
2550
|
+
background: rgba(248, 113, 113, 0.16);
|
|
2544
2551
|
border-color: transparent;
|
|
2545
|
-
color: #
|
|
2552
|
+
color: #f87171;
|
|
2546
2553
|
}
|
|
2547
2554
|
|
|
2548
2555
|
.p-speeddial-button.p-button.p-button-icon-only {
|
|
@@ -2561,11 +2568,11 @@
|
|
|
2561
2568
|
width: 3rem;
|
|
2562
2569
|
height: 3rem;
|
|
2563
2570
|
background: rgba(255, 255, 255, 0.87);
|
|
2564
|
-
color: #
|
|
2571
|
+
color: #111827;
|
|
2565
2572
|
}
|
|
2566
2573
|
.p-speeddial-action:hover {
|
|
2567
2574
|
background: rgba(255, 255, 255, 0.6);
|
|
2568
|
-
color: #
|
|
2575
|
+
color: #111827;
|
|
2569
2576
|
}
|
|
2570
2577
|
|
|
2571
2578
|
.p-speeddial-direction-up .p-speeddial-item {
|
|
@@ -2611,6 +2618,7 @@
|
|
|
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,
|
|
@@ -2634,7 +2642,7 @@
|
|
|
2634
2642
|
.p-carousel .p-carousel-content .p-carousel-next:focus-visible {
|
|
2635
2643
|
outline: 0 none;
|
|
2636
2644
|
outline-offset: 0;
|
|
2637
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
2645
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
2638
2646
|
}
|
|
2639
2647
|
.p-carousel .p-carousel-indicators {
|
|
2640
2648
|
padding: 1rem;
|
|
@@ -2644,7 +2652,7 @@
|
|
|
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: #424b57;
|
|
2648
2656
|
width: 2rem;
|
|
2649
2657
|
height: 0.5rem;
|
|
2650
2658
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
@@ -2654,7 +2662,7 @@
|
|
|
2654
2662
|
background: rgba(255, 255, 255, 0.03);
|
|
2655
2663
|
}
|
|
2656
2664
|
.p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button {
|
|
2657
|
-
background: rgba(
|
|
2665
|
+
background: rgba(129, 140, 248, 0.16);
|
|
2658
2666
|
color: rgba(255, 255, 255, 0.87);
|
|
2659
2667
|
}
|
|
2660
2668
|
|
|
@@ -2667,17 +2675,17 @@
|
|
|
2667
2675
|
border-radius: 0;
|
|
2668
2676
|
}
|
|
2669
2677
|
.p-datatable .p-datatable-header {
|
|
2670
|
-
background: #
|
|
2678
|
+
background: #1f2937;
|
|
2671
2679
|
color: rgba(255, 255, 255, 0.6);
|
|
2672
|
-
border: 1px solid #
|
|
2680
|
+
border: 1px solid #424b57;
|
|
2673
2681
|
border-width: 0 0 1px 0;
|
|
2674
2682
|
padding: 1rem 1rem;
|
|
2675
2683
|
font-weight: 700;
|
|
2676
2684
|
}
|
|
2677
2685
|
.p-datatable .p-datatable-footer {
|
|
2678
|
-
background: #
|
|
2686
|
+
background: #1f2937;
|
|
2679
2687
|
color: rgba(255, 255, 255, 0.87);
|
|
2680
|
-
border: 1px solid #
|
|
2688
|
+
border: 1px solid #424b57;
|
|
2681
2689
|
border-width: 0 0 1px 0;
|
|
2682
2690
|
padding: 1rem 1rem;
|
|
2683
2691
|
font-weight: 700;
|
|
@@ -2685,21 +2693,21 @@
|
|
|
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 #424b57;
|
|
2689
2697
|
border-width: 0 0 1px 0;
|
|
2690
2698
|
font-weight: 700;
|
|
2691
2699
|
color: rgba(255, 255, 255, 0.87);
|
|
2692
|
-
background: #
|
|
2700
|
+
background: #1f2937;
|
|
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 #424b57;
|
|
2699
2707
|
border-width: 0 0 1px 0;
|
|
2700
2708
|
font-weight: 700;
|
|
2701
2709
|
color: rgba(255, 255, 255, 0.87);
|
|
2702
|
-
background: #
|
|
2710
|
+
background: #1f2937;
|
|
2703
2711
|
}
|
|
2704
2712
|
.p-datatable .p-sortable-column .p-sortable-column-icon {
|
|
2705
2713
|
color: rgba(255, 255, 255, 0.6);
|
|
@@ -2711,7 +2719,7 @@
|
|
|
2711
2719
|
min-width: 1.143rem;
|
|
2712
2720
|
line-height: 1.143rem;
|
|
2713
2721
|
color: rgba(255, 255, 255, 0.87);
|
|
2714
|
-
background: rgba(
|
|
2722
|
+
background: rgba(129, 140, 248, 0.16);
|
|
2715
2723
|
margin-left: 0.5rem;
|
|
2716
2724
|
}
|
|
2717
2725
|
.p-datatable .p-sortable-column:not(.p-highlight):not(.p-sortable-disabled):hover {
|
|
@@ -2722,31 +2730,31 @@
|
|
|
2722
2730
|
color: rgba(255, 255, 255, 0.87);
|
|
2723
2731
|
}
|
|
2724
2732
|
.p-datatable .p-sortable-column.p-highlight {
|
|
2725
|
-
background: rgba(
|
|
2733
|
+
background: rgba(129, 140, 248, 0.16);
|
|
2726
2734
|
color: rgba(255, 255, 255, 0.87);
|
|
2727
2735
|
}
|
|
2728
2736
|
.p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon {
|
|
2729
2737
|
color: rgba(255, 255, 255, 0.87);
|
|
2730
2738
|
}
|
|
2731
2739
|
.p-datatable .p-sortable-column.p-highlight:not(.p-sortable-disabled):hover {
|
|
2732
|
-
background: rgba(
|
|
2740
|
+
background: rgba(129, 140, 248, 0.16);
|
|
2733
2741
|
color: rgba(255, 255, 255, 0.87);
|
|
2734
2742
|
}
|
|
2735
2743
|
.p-datatable .p-sortable-column.p-highlight:not(.p-sortable-disabled):hover .p-sortable-column-icon {
|
|
2736
2744
|
color: rgba(255, 255, 255, 0.87);
|
|
2737
2745
|
}
|
|
2738
2746
|
.p-datatable .p-sortable-column:focus-visible {
|
|
2739
|
-
box-shadow: inset 0 0 0 0.15rem rgba(
|
|
2747
|
+
box-shadow: inset 0 0 0 0.15rem rgba(129, 140, 248, 0.2);
|
|
2740
2748
|
outline: 0 none;
|
|
2741
2749
|
}
|
|
2742
2750
|
.p-datatable .p-datatable-tbody > tr {
|
|
2743
|
-
background: #
|
|
2751
|
+
background: #1f2937;
|
|
2744
2752
|
color: rgba(255, 255, 255, 0.87);
|
|
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 #424b57;
|
|
2750
2758
|
border-width: 0 0 1px 0;
|
|
2751
2759
|
padding: 1rem 1rem;
|
|
2752
2760
|
}
|
|
@@ -2776,7 +2784,7 @@
|
|
|
2776
2784
|
.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible {
|
|
2777
2785
|
outline: 0 none;
|
|
2778
2786
|
outline-offset: 0;
|
|
2779
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
2787
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
2780
2788
|
}
|
|
2781
2789
|
.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save {
|
|
2782
2790
|
margin-right: 0.5rem;
|
|
@@ -2785,25 +2793,29 @@
|
|
|
2785
2793
|
font-weight: 700;
|
|
2786
2794
|
}
|
|
2787
2795
|
.p-datatable .p-datatable-tbody > tr > td.p-highlight {
|
|
2788
|
-
background: rgba(
|
|
2796
|
+
background: rgba(129, 140, 248, 0.16);
|
|
2789
2797
|
color: rgba(255, 255, 255, 0.87);
|
|
2790
2798
|
}
|
|
2791
2799
|
.p-datatable .p-datatable-tbody > tr.p-highlight {
|
|
2792
|
-
background: rgba(
|
|
2800
|
+
background: rgba(129, 140, 248, 0.16);
|
|
2793
2801
|
color: rgba(255, 255, 255, 0.87);
|
|
2794
2802
|
}
|
|
2803
|
+
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
|
|
2804
|
+
outline: 0.15rem solid rgba(129, 140, 248, 0.2);
|
|
2805
|
+
outline-offset: -0.15rem;
|
|
2806
|
+
}
|
|
2795
2807
|
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
|
|
2796
|
-
box-shadow: inset 0 2px 0 0 rgba(
|
|
2808
|
+
box-shadow: inset 0 2px 0 0 rgba(129, 140, 248, 0.16);
|
|
2797
2809
|
}
|
|
2798
2810
|
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
|
|
2799
|
-
box-shadow: inset 0 -2px 0 0 rgba(
|
|
2811
|
+
box-shadow: inset 0 -2px 0 0 rgba(129, 140, 248, 0.16);
|
|
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
2814
|
background: rgba(255, 255, 255, 0.03);
|
|
2803
2815
|
color: rgba(255, 255, 255, 0.87);
|
|
2804
2816
|
}
|
|
2805
2817
|
.p-datatable.p-datatable-selectable .p-datatable-tbody > tr.p-selectable-row:focus-visible {
|
|
2806
|
-
outline: 0.15rem solid rgba(
|
|
2818
|
+
outline: 0.15rem solid rgba(129, 140, 248, 0.2);
|
|
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 {
|
|
@@ -2811,7 +2823,7 @@
|
|
|
2811
2823
|
color: rgba(255, 255, 255, 0.87);
|
|
2812
2824
|
}
|
|
2813
2825
|
.p-datatable.p-datatable-selectable-cell .p-datatable-tbody > tr.p-selectable-row > td.p-selectable-cell:focus-visible {
|
|
2814
|
-
outline: 0.15rem solid rgba(
|
|
2826
|
+
outline: 0.15rem solid rgba(129, 140, 248, 0.2);
|
|
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 {
|
|
@@ -2819,16 +2831,16 @@
|
|
|
2819
2831
|
color: rgba(255, 255, 255, 0.87);
|
|
2820
2832
|
}
|
|
2821
2833
|
.p-datatable .p-column-resizer-helper {
|
|
2822
|
-
background: #
|
|
2834
|
+
background: #818cf8;
|
|
2823
2835
|
}
|
|
2824
2836
|
.p-datatable .p-datatable-scrollable-header,
|
|
2825
2837
|
.p-datatable .p-datatable-scrollable-footer {
|
|
2826
|
-
background: #
|
|
2838
|
+
background: #1f2937;
|
|
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: #1f2937;
|
|
2832
2844
|
}
|
|
2833
2845
|
.p-datatable .p-datatable-loading-icon {
|
|
2834
2846
|
font-size: 2rem;
|
|
@@ -2892,10 +2904,10 @@
|
|
|
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: #1c2532;
|
|
2896
2908
|
}
|
|
2897
2909
|
.p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd.p-highlight {
|
|
2898
|
-
background: rgba(
|
|
2910
|
+
background: rgba(129, 140, 248, 0.16);
|
|
2899
2911
|
color: rgba(255, 255, 255, 0.87);
|
|
2900
2912
|
}
|
|
2901
2913
|
.p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd.p-highlight .p-row-toggler {
|
|
@@ -2905,7 +2917,7 @@
|
|
|
2905
2917
|
color: rgba(255, 255, 255, 0.87);
|
|
2906
2918
|
}
|
|
2907
2919
|
.p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd + .p-row-expanded {
|
|
2908
|
-
background: #
|
|
2920
|
+
background: #1c2532;
|
|
2909
2921
|
}
|
|
2910
2922
|
.p-datatable.p-datatable-sm .p-datatable-header {
|
|
2911
2923
|
padding: 0.5rem 0.5rem;
|
|
@@ -2939,7 +2951,7 @@
|
|
|
2939
2951
|
}
|
|
2940
2952
|
|
|
2941
2953
|
.p-datatable-drag-selection-helper {
|
|
2942
|
-
background: rgba(
|
|
2954
|
+
background: rgba(129, 140, 248, 0.16);
|
|
2943
2955
|
}
|
|
2944
2956
|
|
|
2945
2957
|
.p-dataview .p-paginator-top {
|
|
@@ -2951,27 +2963,27 @@
|
|
|
2951
2963
|
border-radius: 0;
|
|
2952
2964
|
}
|
|
2953
2965
|
.p-dataview .p-dataview-header {
|
|
2954
|
-
background: #
|
|
2966
|
+
background: #1f2937;
|
|
2955
2967
|
color: rgba(255, 255, 255, 0.6);
|
|
2956
|
-
border: 1px solid #
|
|
2968
|
+
border: 1px solid #424b57;
|
|
2957
2969
|
border-width: 0 0 1px 0;
|
|
2958
2970
|
padding: 1rem 1rem;
|
|
2959
2971
|
font-weight: 700;
|
|
2960
2972
|
}
|
|
2961
2973
|
.p-dataview .p-dataview-content {
|
|
2962
|
-
background: #
|
|
2974
|
+
background: #1f2937;
|
|
2963
2975
|
color: rgba(255, 255, 255, 0.87);
|
|
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 #424b57;
|
|
2969
2981
|
border-width: 0 0 1px 0;
|
|
2970
2982
|
}
|
|
2971
2983
|
.p-dataview .p-dataview-footer {
|
|
2972
|
-
background: #
|
|
2984
|
+
background: #1f2937;
|
|
2973
2985
|
color: rgba(255, 255, 255, 0.87);
|
|
2974
|
-
border: 1px solid #
|
|
2986
|
+
border: 1px solid #424b57;
|
|
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: #
|
|
3010
|
+
background: #1f2937;
|
|
2999
3011
|
color: rgba(255, 255, 255, 0.6);
|
|
3000
|
-
border: 1px solid #
|
|
3012
|
+
border: 1px solid #424b57;
|
|
3001
3013
|
border-width: 0 0 1px 0;
|
|
3002
3014
|
padding: 1rem 1rem;
|
|
3003
3015
|
font-weight: 700;
|
|
3004
3016
|
}
|
|
3005
3017
|
.p-datascroller .p-datascroller-content {
|
|
3006
|
-
background: #
|
|
3018
|
+
background: #1f2937;
|
|
3007
3019
|
color: rgba(255, 255, 255, 0.87);
|
|
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 #424b57;
|
|
3013
3025
|
border-width: 0 0 1px 0;
|
|
3014
3026
|
}
|
|
3015
3027
|
.p-datascroller .p-datascroller-footer {
|
|
3016
|
-
background: #
|
|
3028
|
+
background: #1f2937;
|
|
3017
3029
|
color: rgba(255, 255, 255, 0.87);
|
|
3018
|
-
border: 1px solid #
|
|
3030
|
+
border: 1px solid #424b57;
|
|
3019
3031
|
border-width: 0 0 1px 0;
|
|
3020
3032
|
padding: 1rem 1rem;
|
|
3021
3033
|
font-weight: 700;
|
|
@@ -3047,13 +3059,13 @@
|
|
|
3047
3059
|
color: rgba(255, 255, 255, 0.87);
|
|
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
|
-
background: rgba(
|
|
3062
|
+
background: rgba(129, 140, 248, 0.16);
|
|
3051
3063
|
color: rgba(255, 255, 255, 0.87);
|
|
3052
3064
|
}
|
|
3053
3065
|
.p-column-filter-menu-button:focus-visible {
|
|
3054
3066
|
outline: 0 none;
|
|
3055
3067
|
outline-offset: 0;
|
|
3056
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
3068
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
3057
3069
|
}
|
|
3058
3070
|
|
|
3059
3071
|
.p-column-filter-clear-button {
|
|
@@ -3073,13 +3085,13 @@
|
|
|
3073
3085
|
.p-column-filter-clear-button:focus-visible {
|
|
3074
3086
|
outline: 0 none;
|
|
3075
3087
|
outline-offset: 0;
|
|
3076
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
3088
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
3077
3089
|
}
|
|
3078
3090
|
|
|
3079
3091
|
.p-column-filter-overlay {
|
|
3080
|
-
background: #
|
|
3092
|
+
background: #1f2937;
|
|
3081
3093
|
color: rgba(255, 255, 255, 0.87);
|
|
3082
|
-
border: 1px solid #
|
|
3094
|
+
border: 1px solid #424b57;
|
|
3083
3095
|
border-radius: 6px;
|
|
3084
3096
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
3085
3097
|
min-width: 12.5rem;
|
|
@@ -3098,7 +3110,7 @@
|
|
|
3098
3110
|
}
|
|
3099
3111
|
.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item.p-highlight {
|
|
3100
3112
|
color: rgba(255, 255, 255, 0.87);
|
|
3101
|
-
background: rgba(
|
|
3113
|
+
background: rgba(129, 140, 248, 0.16);
|
|
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
3116
|
color: rgba(255, 255, 255, 0.87);
|
|
@@ -3107,25 +3119,25 @@
|
|
|
3107
3119
|
.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:focus-visible {
|
|
3108
3120
|
outline: 0 none;
|
|
3109
3121
|
outline-offset: 0;
|
|
3110
|
-
box-shadow: inset 0 0 0 0.15rem rgba(
|
|
3122
|
+
box-shadow: inset 0 0 0 0.15rem rgba(129, 140, 248, 0.2);
|
|
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 #424b57;
|
|
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 #
|
|
3131
|
+
border-bottom: 1px solid #424b57;
|
|
3120
3132
|
color: rgba(255, 255, 255, 0.87);
|
|
3121
|
-
background: #
|
|
3133
|
+
background: #1f2937;
|
|
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 #424b57;
|
|
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: #
|
|
3165
|
+
background: #1f2937;
|
|
3154
3166
|
color: rgba(255, 255, 255, 0.87);
|
|
3155
|
-
border: 1px solid #
|
|
3167
|
+
border: 1px solid #424b57;
|
|
3156
3168
|
padding: 1.25rem;
|
|
3157
3169
|
font-weight: 700;
|
|
3158
3170
|
border-bottom: 0 none;
|
|
@@ -3161,8 +3173,8 @@
|
|
|
3161
3173
|
}
|
|
3162
3174
|
.p-orderlist .p-orderlist-filter-container {
|
|
3163
3175
|
padding: 1.25rem;
|
|
3164
|
-
background: #
|
|
3165
|
-
border: 1px solid #
|
|
3176
|
+
background: #1f2937;
|
|
3177
|
+
border: 1px solid #424b57;
|
|
3166
3178
|
border-bottom: 0 none;
|
|
3167
3179
|
}
|
|
3168
3180
|
.p-orderlist .p-orderlist-filter-container .p-orderlist-filter-input {
|
|
@@ -3173,8 +3185,8 @@
|
|
|
3173
3185
|
color: rgba(255, 255, 255, 0.6);
|
|
3174
3186
|
}
|
|
3175
3187
|
.p-orderlist .p-orderlist-list {
|
|
3176
|
-
border: 1px solid #
|
|
3177
|
-
background: #
|
|
3188
|
+
border: 1px solid #424b57;
|
|
3189
|
+
background: #1f2937;
|
|
3178
3190
|
color: rgba(255, 255, 255, 0.87);
|
|
3179
3191
|
padding: 0.75rem 0;
|
|
3180
3192
|
border-bottom-right-radius: 6px;
|
|
@@ -3195,14 +3207,14 @@
|
|
|
3195
3207
|
.p-orderlist .p-orderlist-list .p-orderlist-item:focus {
|
|
3196
3208
|
outline: 0 none;
|
|
3197
3209
|
outline-offset: 0;
|
|
3198
|
-
box-shadow: inset 0 0 0 0.15rem rgba(
|
|
3210
|
+
box-shadow: inset 0 0 0 0.15rem rgba(129, 140, 248, 0.2);
|
|
3199
3211
|
}
|
|
3200
3212
|
.p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight {
|
|
3201
3213
|
color: rgba(255, 255, 255, 0.87);
|
|
3202
|
-
background: rgba(
|
|
3214
|
+
background: rgba(129, 140, 248, 0.16);
|
|
3203
3215
|
}
|
|
3204
3216
|
.p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even) {
|
|
3205
|
-
background:
|
|
3217
|
+
background: #1c2532;
|
|
3206
3218
|
}
|
|
3207
3219
|
.p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover {
|
|
3208
3220
|
background: rgba(255, 255, 255, 0.03);
|
|
@@ -3213,26 +3225,26 @@
|
|
|
3213
3225
|
color: rgba(255, 255, 255, 0.87);
|
|
3214
3226
|
}
|
|
3215
3227
|
.p-organizationchart .p-organizationchart-node-content.p-highlight {
|
|
3216
|
-
background: rgba(
|
|
3228
|
+
background: rgba(129, 140, 248, 0.16);
|
|
3217
3229
|
color: rgba(255, 255, 255, 0.87);
|
|
3218
3230
|
}
|
|
3219
3231
|
.p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i {
|
|
3220
|
-
color: rgba(
|
|
3232
|
+
color: rgba(13, 34, 236, 0.16);
|
|
3221
3233
|
}
|
|
3222
3234
|
.p-organizationchart .p-organizationchart-line-down {
|
|
3223
|
-
background: #
|
|
3235
|
+
background: #424b57;
|
|
3224
3236
|
}
|
|
3225
3237
|
.p-organizationchart .p-organizationchart-line-left {
|
|
3226
|
-
border-right: 1px solid #
|
|
3227
|
-
border-color: #
|
|
3238
|
+
border-right: 1px solid #424b57;
|
|
3239
|
+
border-color: #424b57;
|
|
3228
3240
|
}
|
|
3229
3241
|
.p-organizationchart .p-organizationchart-line-top {
|
|
3230
|
-
border-top: 1px solid #
|
|
3231
|
-
border-color: #
|
|
3242
|
+
border-top: 1px solid #424b57;
|
|
3243
|
+
border-color: #424b57;
|
|
3232
3244
|
}
|
|
3233
3245
|
.p-organizationchart .p-organizationchart-node-content {
|
|
3234
|
-
border: 1px solid #
|
|
3235
|
-
background: #
|
|
3246
|
+
border: 1px solid #424b57;
|
|
3247
|
+
background: #1f2937;
|
|
3236
3248
|
color: rgba(255, 255, 255, 0.87);
|
|
3237
3249
|
padding: 1.25rem;
|
|
3238
3250
|
}
|
|
@@ -3244,13 +3256,13 @@
|
|
|
3244
3256
|
.p-organizationchart .p-organizationchart-node-content .p-node-toggler:focus-visible {
|
|
3245
3257
|
outline: 0 none;
|
|
3246
3258
|
outline-offset: 0;
|
|
3247
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
3259
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
3248
3260
|
}
|
|
3249
3261
|
|
|
3250
3262
|
.p-paginator {
|
|
3251
|
-
background: #
|
|
3263
|
+
background: #1f2937;
|
|
3252
3264
|
color: rgba(255, 255, 255, 0.6);
|
|
3253
|
-
border: solid #
|
|
3265
|
+
border: solid #424b57;
|
|
3254
3266
|
border-width: 1px;
|
|
3255
3267
|
padding: 0.5rem 1rem;
|
|
3256
3268
|
border-radius: 6px;
|
|
@@ -3318,8 +3330,8 @@
|
|
|
3318
3330
|
border-radius: 6px;
|
|
3319
3331
|
}
|
|
3320
3332
|
.p-paginator .p-paginator-pages .p-paginator-page.p-highlight {
|
|
3321
|
-
background: rgba(
|
|
3322
|
-
border-color: rgba(
|
|
3333
|
+
background: rgba(129, 140, 248, 0.16);
|
|
3334
|
+
border-color: rgba(129, 140, 248, 0.16);
|
|
3323
3335
|
color: rgba(255, 255, 255, 0.87);
|
|
3324
3336
|
}
|
|
3325
3337
|
.p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover {
|
|
@@ -3335,9 +3347,9 @@
|
|
|
3335
3347
|
margin-bottom: 0.5rem;
|
|
3336
3348
|
}
|
|
3337
3349
|
.p-picklist .p-picklist-header {
|
|
3338
|
-
background: #
|
|
3350
|
+
background: #1f2937;
|
|
3339
3351
|
color: rgba(255, 255, 255, 0.87);
|
|
3340
|
-
border: 1px solid #
|
|
3352
|
+
border: 1px solid #424b57;
|
|
3341
3353
|
padding: 1.25rem;
|
|
3342
3354
|
font-weight: 700;
|
|
3343
3355
|
border-bottom: 0 none;
|
|
@@ -3346,8 +3358,8 @@
|
|
|
3346
3358
|
}
|
|
3347
3359
|
.p-picklist .p-picklist-filter-container {
|
|
3348
3360
|
padding: 1.25rem;
|
|
3349
|
-
background: #
|
|
3350
|
-
border: 1px solid #
|
|
3361
|
+
background: #1f2937;
|
|
3362
|
+
border: 1px solid #424b57;
|
|
3351
3363
|
border-bottom: 0 none;
|
|
3352
3364
|
}
|
|
3353
3365
|
.p-picklist .p-picklist-filter-container .p-picklist-filter-input {
|
|
@@ -3358,8 +3370,8 @@
|
|
|
3358
3370
|
color: rgba(255, 255, 255, 0.6);
|
|
3359
3371
|
}
|
|
3360
3372
|
.p-picklist .p-picklist-list {
|
|
3361
|
-
border: 1px solid #
|
|
3362
|
-
background: #
|
|
3373
|
+
border: 1px solid #424b57;
|
|
3374
|
+
background: #1f2937;
|
|
3363
3375
|
color: rgba(255, 255, 255, 0.87);
|
|
3364
3376
|
padding: 0.75rem 0;
|
|
3365
3377
|
border-bottom-right-radius: 6px;
|
|
@@ -3380,16 +3392,16 @@
|
|
|
3380
3392
|
.p-picklist .p-picklist-list .p-picklist-item:focus {
|
|
3381
3393
|
outline: 0 none;
|
|
3382
3394
|
outline-offset: 0;
|
|
3383
|
-
box-shadow: inset 0 0 0 0.15rem rgba(
|
|
3395
|
+
box-shadow: inset 0 0 0 0.15rem rgba(129, 140, 248, 0.2);
|
|
3384
3396
|
}
|
|
3385
3397
|
.p-picklist .p-picklist-list .p-picklist-item.p-highlight {
|
|
3386
3398
|
color: rgba(255, 255, 255, 0.87);
|
|
3387
|
-
background: rgba(
|
|
3399
|
+
background: rgba(129, 140, 248, 0.16);
|
|
3388
3400
|
}
|
|
3389
3401
|
|
|
3390
3402
|
.p-tree {
|
|
3391
|
-
border: 1px solid #
|
|
3392
|
-
background: #
|
|
3403
|
+
border: 1px solid #424b57;
|
|
3404
|
+
background: #1f2937;
|
|
3393
3405
|
color: rgba(255, 255, 255, 0.87);
|
|
3394
3406
|
padding: 1.25rem;
|
|
3395
3407
|
border-radius: 6px;
|
|
@@ -3420,7 +3432,7 @@
|
|
|
3420
3432
|
.p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler:focus-visible {
|
|
3421
3433
|
outline: 0 none;
|
|
3422
3434
|
outline-offset: 0;
|
|
3423
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
3435
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
3424
3436
|
}
|
|
3425
3437
|
.p-tree .p-tree-container .p-treenode .p-treenode-content .p-treenode-icon {
|
|
3426
3438
|
margin-right: 0.5rem;
|
|
@@ -3435,10 +3447,10 @@
|
|
|
3435
3447
|
.p-tree .p-tree-container .p-treenode .p-treenode-content:focus {
|
|
3436
3448
|
outline: 0 none;
|
|
3437
3449
|
outline-offset: 0;
|
|
3438
|
-
box-shadow: inset 0 0 0 0.15rem rgba(
|
|
3450
|
+
box-shadow: inset 0 0 0 0.15rem rgba(129, 140, 248, 0.2);
|
|
3439
3451
|
}
|
|
3440
3452
|
.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight {
|
|
3441
|
-
background: rgba(
|
|
3453
|
+
background: rgba(129, 140, 248, 0.16);
|
|
3442
3454
|
color: rgba(255, 255, 255, 0.87);
|
|
3443
3455
|
}
|
|
3444
3456
|
.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler,
|
|
@@ -3482,7 +3494,7 @@
|
|
|
3482
3494
|
height: 0.5rem;
|
|
3483
3495
|
}
|
|
3484
3496
|
.p-tree .p-treenode-droppoint.p-treenode-droppoint-active {
|
|
3485
|
-
background: rgba(
|
|
3497
|
+
background: rgba(58, 75, 244, 0.16);
|
|
3486
3498
|
}
|
|
3487
3499
|
|
|
3488
3500
|
.p-treetable .p-paginator-top {
|
|
@@ -3494,17 +3506,17 @@
|
|
|
3494
3506
|
border-radius: 0;
|
|
3495
3507
|
}
|
|
3496
3508
|
.p-treetable .p-treetable-header {
|
|
3497
|
-
background: #
|
|
3509
|
+
background: #1f2937;
|
|
3498
3510
|
color: rgba(255, 255, 255, 0.6);
|
|
3499
|
-
border: 1px solid #
|
|
3511
|
+
border: 1px solid #424b57;
|
|
3500
3512
|
border-width: 0 0 1px 0;
|
|
3501
3513
|
padding: 1rem 1rem;
|
|
3502
3514
|
font-weight: 700;
|
|
3503
3515
|
}
|
|
3504
3516
|
.p-treetable .p-treetable-footer {
|
|
3505
|
-
background: #
|
|
3517
|
+
background: #1f2937;
|
|
3506
3518
|
color: rgba(255, 255, 255, 0.87);
|
|
3507
|
-
border: 1px solid #
|
|
3519
|
+
border: 1px solid #424b57;
|
|
3508
3520
|
border-width: 0 0 1px 0;
|
|
3509
3521
|
padding: 1rem 1rem;
|
|
3510
3522
|
font-weight: 700;
|
|
@@ -3512,24 +3524,24 @@
|
|
|
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 #424b57;
|
|
3516
3528
|
border-width: 0 0 1px 0;
|
|
3517
3529
|
font-weight: 700;
|
|
3518
3530
|
color: rgba(255, 255, 255, 0.87);
|
|
3519
|
-
background: #
|
|
3531
|
+
background: #1f2937;
|
|
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 #424b57;
|
|
3526
3538
|
border-width: 0 0 1px 0;
|
|
3527
3539
|
font-weight: 700;
|
|
3528
3540
|
color: rgba(255, 255, 255, 0.87);
|
|
3529
|
-
background: #
|
|
3541
|
+
background: #1f2937;
|
|
3530
3542
|
}
|
|
3531
3543
|
.p-treetable .p-sortable-column {
|
|
3532
|
-
outline-color: rgba(
|
|
3544
|
+
outline-color: rgba(129, 140, 248, 0.2);
|
|
3533
3545
|
}
|
|
3534
3546
|
.p-treetable .p-sortable-column .p-sortable-column-icon {
|
|
3535
3547
|
color: rgba(255, 255, 255, 0.6);
|
|
@@ -3541,7 +3553,7 @@
|
|
|
3541
3553
|
min-width: 1.143rem;
|
|
3542
3554
|
line-height: 1.143rem;
|
|
3543
3555
|
color: rgba(255, 255, 255, 0.87);
|
|
3544
|
-
background: rgba(
|
|
3556
|
+
background: rgba(129, 140, 248, 0.16);
|
|
3545
3557
|
margin-left: 0.5rem;
|
|
3546
3558
|
}
|
|
3547
3559
|
.p-treetable .p-sortable-column:not(.p-highlight):hover {
|
|
@@ -3552,20 +3564,20 @@
|
|
|
3552
3564
|
color: rgba(255, 255, 255, 0.87);
|
|
3553
3565
|
}
|
|
3554
3566
|
.p-treetable .p-sortable-column.p-highlight {
|
|
3555
|
-
background: rgba(
|
|
3567
|
+
background: rgba(129, 140, 248, 0.16);
|
|
3556
3568
|
color: rgba(255, 255, 255, 0.87);
|
|
3557
3569
|
}
|
|
3558
3570
|
.p-treetable .p-sortable-column.p-highlight .p-sortable-column-icon {
|
|
3559
3571
|
color: rgba(255, 255, 255, 0.87);
|
|
3560
3572
|
}
|
|
3561
3573
|
.p-treetable .p-treetable-tbody > tr {
|
|
3562
|
-
background: #
|
|
3574
|
+
background: #1f2937;
|
|
3563
3575
|
color: rgba(255, 255, 255, 0.87);
|
|
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 #424b57;
|
|
3569
3581
|
border-width: 0 0 1px 0;
|
|
3570
3582
|
padding: 1rem 1rem;
|
|
3571
3583
|
}
|
|
@@ -3587,7 +3599,7 @@
|
|
|
3587
3599
|
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler:focus-visible {
|
|
3588
3600
|
outline: 0 none;
|
|
3589
3601
|
outline-offset: 0;
|
|
3590
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
3602
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
3591
3603
|
}
|
|
3592
3604
|
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox {
|
|
3593
3605
|
margin-right: 0.5rem;
|
|
@@ -3596,11 +3608,11 @@
|
|
|
3596
3608
|
color: rgba(255, 255, 255, 0.87);
|
|
3597
3609
|
}
|
|
3598
3610
|
.p-treetable .p-treetable-tbody > tr:focus-visible {
|
|
3599
|
-
outline: 0.15rem solid rgba(
|
|
3611
|
+
outline: 0.15rem solid rgba(129, 140, 248, 0.2);
|
|
3600
3612
|
outline-offset: -0.15rem;
|
|
3601
3613
|
}
|
|
3602
3614
|
.p-treetable .p-treetable-tbody > tr.p-highlight {
|
|
3603
|
-
background: rgba(
|
|
3615
|
+
background: rgba(129, 140, 248, 0.16);
|
|
3604
3616
|
color: rgba(255, 255, 255, 0.87);
|
|
3605
3617
|
}
|
|
3606
3618
|
.p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler {
|
|
@@ -3617,11 +3629,11 @@
|
|
|
3617
3629
|
color: rgba(255, 255, 255, 0.87);
|
|
3618
3630
|
}
|
|
3619
3631
|
.p-treetable .p-column-resizer-helper {
|
|
3620
|
-
background: #
|
|
3632
|
+
background: #818cf8;
|
|
3621
3633
|
}
|
|
3622
3634
|
.p-treetable .p-treetable-scrollable-header,
|
|
3623
3635
|
.p-treetable .p-treetable-scrollable-footer {
|
|
3624
|
-
background: #
|
|
3636
|
+
background: #1f2937;
|
|
3625
3637
|
}
|
|
3626
3638
|
.p-treetable .p-treetable-loading-icon {
|
|
3627
3639
|
font-size: 2rem;
|
|
@@ -3652,10 +3664,10 @@
|
|
|
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: #1c2532;
|
|
3656
3668
|
}
|
|
3657
3669
|
.p-treetable.p-treetable-striped .p-treetable-tbody > tr.p-row-odd.p-highlight {
|
|
3658
|
-
background: rgba(
|
|
3670
|
+
background: rgba(129, 140, 248, 0.16);
|
|
3659
3671
|
color: rgba(255, 255, 255, 0.87);
|
|
3660
3672
|
}
|
|
3661
3673
|
.p-treetable.p-treetable-striped .p-treetable-tbody > tr.p-row-odd.p-highlight .p-row-toggler {
|
|
@@ -3665,7 +3677,7 @@
|
|
|
3665
3677
|
color: rgba(255, 255, 255, 0.87);
|
|
3666
3678
|
}
|
|
3667
3679
|
.p-treetable.p-treetable-striped .p-treetable-tbody > tr.p-row-odd + .p-row-expanded {
|
|
3668
|
-
background: #
|
|
3680
|
+
background: #1c2532;
|
|
3669
3681
|
}
|
|
3670
3682
|
.p-treetable.p-treetable-sm .p-treetable-header {
|
|
3671
3683
|
padding: 0.875rem 0.875rem;
|
|
@@ -3699,14 +3711,14 @@
|
|
|
3699
3711
|
}
|
|
3700
3712
|
|
|
3701
3713
|
.p-timeline .p-timeline-event-marker {
|
|
3702
|
-
border: 2px solid #
|
|
3714
|
+
border: 2px solid #818cf8;
|
|
3703
3715
|
border-radius: 50%;
|
|
3704
3716
|
width: 1rem;
|
|
3705
3717
|
height: 1rem;
|
|
3706
|
-
background-color: #
|
|
3718
|
+
background-color: #030712;
|
|
3707
3719
|
}
|
|
3708
3720
|
.p-timeline .p-timeline-event-connector {
|
|
3709
|
-
background-color: #
|
|
3721
|
+
background-color: #424b57;
|
|
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 #
|
|
3740
|
+
border: 1px solid #424b57;
|
|
3729
3741
|
color: rgba(255, 255, 255, 0.87);
|
|
3730
|
-
background: #
|
|
3742
|
+
background: #1f2937;
|
|
3731
3743
|
font-weight: 700;
|
|
3732
3744
|
border-radius: 6px;
|
|
3733
3745
|
transition: box-shadow 0.2s;
|
|
@@ -3738,29 +3750,29 @@
|
|
|
3738
3750
|
.p-accordion .p-accordion-header:not(.p-disabled) .p-accordion-header-link:focus-visible {
|
|
3739
3751
|
outline: 0 none;
|
|
3740
3752
|
outline-offset: 0;
|
|
3741
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
3753
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
3742
3754
|
}
|
|
3743
3755
|
.p-accordion .p-accordion-header:not(.p-highlight):not(.p-disabled):hover .p-accordion-header-link {
|
|
3744
3756
|
background: rgba(255, 255, 255, 0.03);
|
|
3745
|
-
border-color: #
|
|
3757
|
+
border-color: #424b57;
|
|
3746
3758
|
color: rgba(255, 255, 255, 0.87);
|
|
3747
3759
|
}
|
|
3748
3760
|
.p-accordion .p-accordion-header:not(.p-disabled).p-highlight .p-accordion-header-link {
|
|
3749
|
-
background: #
|
|
3750
|
-
border-color: #
|
|
3761
|
+
background: #1f2937;
|
|
3762
|
+
border-color: #424b57;
|
|
3751
3763
|
color: rgba(255, 255, 255, 0.87);
|
|
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: #
|
|
3768
|
+
border-color: #424b57;
|
|
3757
3769
|
background: rgba(255, 255, 255, 0.03);
|
|
3758
3770
|
color: rgba(255, 255, 255, 0.87);
|
|
3759
3771
|
}
|
|
3760
3772
|
.p-accordion .p-accordion-content {
|
|
3761
3773
|
padding: 1.25rem;
|
|
3762
|
-
border: 1px solid #
|
|
3763
|
-
background: #
|
|
3774
|
+
border: 1px solid #424b57;
|
|
3775
|
+
background: #1f2937;
|
|
3764
3776
|
color: rgba(255, 255, 255, 0.87);
|
|
3765
3777
|
border-top: 0;
|
|
3766
3778
|
border-top-right-radius: 0;
|
|
@@ -3773,7 +3785,7 @@
|
|
|
3773
3785
|
}
|
|
3774
3786
|
|
|
3775
3787
|
.p-card {
|
|
3776
|
-
background: #
|
|
3788
|
+
background: #1f2937;
|
|
3777
3789
|
color: rgba(255, 255, 255, 0.87);
|
|
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;
|
|
@@ -3799,16 +3811,16 @@
|
|
|
3799
3811
|
}
|
|
3800
3812
|
|
|
3801
3813
|
.p-fieldset {
|
|
3802
|
-
border: 1px solid #
|
|
3803
|
-
background: #
|
|
3814
|
+
border: 1px solid #424b57;
|
|
3815
|
+
background: #1f2937;
|
|
3804
3816
|
color: rgba(255, 255, 255, 0.87);
|
|
3805
3817
|
border-radius: 6px;
|
|
3806
3818
|
}
|
|
3807
3819
|
.p-fieldset .p-fieldset-legend {
|
|
3808
3820
|
padding: 1.25rem;
|
|
3809
|
-
border: 1px solid #
|
|
3821
|
+
border: 1px solid #424b57;
|
|
3810
3822
|
color: rgba(255, 255, 255, 0.87);
|
|
3811
|
-
background: #
|
|
3823
|
+
background: #1f2937;
|
|
3812
3824
|
font-weight: 700;
|
|
3813
3825
|
border-radius: 6px;
|
|
3814
3826
|
}
|
|
@@ -3828,11 +3840,11 @@
|
|
|
3828
3840
|
.p-fieldset.p-fieldset-toggleable .p-fieldset-legend a:focus-visible {
|
|
3829
3841
|
outline: 0 none;
|
|
3830
3842
|
outline-offset: 0;
|
|
3831
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
3843
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
3832
3844
|
}
|
|
3833
3845
|
.p-fieldset.p-fieldset-toggleable .p-fieldset-legend:hover {
|
|
3834
3846
|
background: rgba(255, 255, 255, 0.03);
|
|
3835
|
-
border-color: #
|
|
3847
|
+
border-color: #424b57;
|
|
3836
3848
|
color: rgba(255, 255, 255, 0.87);
|
|
3837
3849
|
}
|
|
3838
3850
|
.p-fieldset .p-fieldset-content {
|
|
@@ -3840,14 +3852,14 @@
|
|
|
3840
3852
|
}
|
|
3841
3853
|
|
|
3842
3854
|
.p-divider .p-divider-content {
|
|
3843
|
-
background-color: #
|
|
3855
|
+
background-color: #1f2937;
|
|
3844
3856
|
}
|
|
3845
3857
|
.p-divider.p-divider-horizontal {
|
|
3846
3858
|
margin: 1.25rem 0;
|
|
3847
3859
|
padding: 0 1.25rem;
|
|
3848
3860
|
}
|
|
3849
3861
|
.p-divider.p-divider-horizontal:before {
|
|
3850
|
-
border-top: 1px #
|
|
3862
|
+
border-top: 1px #424b57;
|
|
3851
3863
|
}
|
|
3852
3864
|
.p-divider.p-divider-horizontal .p-divider-content {
|
|
3853
3865
|
padding: 0 0.5rem;
|
|
@@ -3857,16 +3869,16 @@
|
|
|
3857
3869
|
padding: 1.25rem 0;
|
|
3858
3870
|
}
|
|
3859
3871
|
.p-divider.p-divider-vertical:before {
|
|
3860
|
-
border-left: 1px #
|
|
3872
|
+
border-left: 1px #424b57;
|
|
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 #424b57;
|
|
3868
3880
|
padding: 1.25rem;
|
|
3869
|
-
background: #
|
|
3881
|
+
background: #1f2937;
|
|
3870
3882
|
color: rgba(255, 255, 255, 0.87);
|
|
3871
3883
|
border-top-right-radius: 6px;
|
|
3872
3884
|
border-top-left-radius: 6px;
|
|
@@ -3891,15 +3903,15 @@
|
|
|
3891
3903
|
.p-panel .p-panel-header .p-panel-header-icon:focus-visible {
|
|
3892
3904
|
outline: 0 none;
|
|
3893
3905
|
outline-offset: 0;
|
|
3894
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
3906
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
3895
3907
|
}
|
|
3896
3908
|
.p-panel.p-panel-toggleable .p-panel-header {
|
|
3897
3909
|
padding: 0.75rem 1.25rem;
|
|
3898
3910
|
}
|
|
3899
3911
|
.p-panel .p-panel-content {
|
|
3900
3912
|
padding: 1.25rem;
|
|
3901
|
-
border: 1px solid #
|
|
3902
|
-
background: #
|
|
3913
|
+
border: 1px solid #424b57;
|
|
3914
|
+
background: #1f2937;
|
|
3903
3915
|
color: rgba(255, 255, 255, 0.87);
|
|
3904
3916
|
border-bottom-right-radius: 6px;
|
|
3905
3917
|
border-bottom-left-radius: 6px;
|
|
@@ -3907,15 +3919,15 @@
|
|
|
3907
3919
|
}
|
|
3908
3920
|
.p-panel .p-panel-footer {
|
|
3909
3921
|
padding: 0.75rem 1.25rem;
|
|
3910
|
-
border: 1px solid #
|
|
3911
|
-
background: #
|
|
3922
|
+
border: 1px solid #424b57;
|
|
3923
|
+
background: #1f2937;
|
|
3912
3924
|
color: rgba(255, 255, 255, 0.87);
|
|
3913
3925
|
border-top: 0 none;
|
|
3914
3926
|
}
|
|
3915
3927
|
|
|
3916
3928
|
.p-splitter {
|
|
3917
|
-
border: 1px solid #
|
|
3918
|
-
background: #
|
|
3929
|
+
border: 1px solid #424b57;
|
|
3930
|
+
background: #1f2937;
|
|
3919
3931
|
border-radius: 6px;
|
|
3920
3932
|
color: rgba(255, 255, 255, 0.87);
|
|
3921
3933
|
}
|
|
@@ -3924,30 +3936,30 @@
|
|
|
3924
3936
|
background: rgba(255, 255, 255, 0.03);
|
|
3925
3937
|
}
|
|
3926
3938
|
.p-splitter .p-splitter-gutter .p-splitter-gutter-handle {
|
|
3927
|
-
background: #
|
|
3939
|
+
background: #424b57;
|
|
3928
3940
|
}
|
|
3929
3941
|
.p-splitter .p-splitter-gutter-resizing {
|
|
3930
|
-
background: #
|
|
3942
|
+
background: #424b57;
|
|
3931
3943
|
}
|
|
3932
3944
|
|
|
3933
3945
|
.p-scrollpanel .p-scrollpanel-bar {
|
|
3934
|
-
background: #
|
|
3946
|
+
background: #424b57;
|
|
3935
3947
|
border: 0 none;
|
|
3936
3948
|
}
|
|
3937
3949
|
|
|
3938
3950
|
.p-tabview .p-tabview-nav {
|
|
3939
3951
|
background: transparent;
|
|
3940
|
-
border: 1px solid #
|
|
3952
|
+
border: 1px solid #424b57;
|
|
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 #424b57;
|
|
3948
3960
|
border-width: 0 0 2px 0;
|
|
3949
|
-
border-color: transparent transparent #
|
|
3950
|
-
background: #
|
|
3961
|
+
border-color: transparent transparent #424b57 transparent;
|
|
3962
|
+
background: #1f2937;
|
|
3951
3963
|
color: rgba(255, 255, 255, 0.6);
|
|
3952
3964
|
padding: 1.25rem;
|
|
3953
3965
|
font-weight: 700;
|
|
@@ -3959,24 +3971,24 @@
|
|
|
3959
3971
|
.p-tabview .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus-visible {
|
|
3960
3972
|
outline: 0 none;
|
|
3961
3973
|
outline-offset: 0;
|
|
3962
|
-
box-shadow: inset 0 0 0 0.2rem rgba(
|
|
3974
|
+
box-shadow: inset 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
3963
3975
|
}
|
|
3964
3976
|
.p-tabview .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-nav-link {
|
|
3965
|
-
background: #
|
|
3966
|
-
border-color: #
|
|
3977
|
+
background: #1f2937;
|
|
3978
|
+
border-color: #818cf8;
|
|
3967
3979
|
color: rgba(255, 255, 255, 0.87);
|
|
3968
3980
|
}
|
|
3969
3981
|
.p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link {
|
|
3970
|
-
background: #
|
|
3971
|
-
border-color: #
|
|
3972
|
-
color: #
|
|
3982
|
+
background: #1f2937;
|
|
3983
|
+
border-color: #818cf8;
|
|
3984
|
+
color: #818cf8;
|
|
3973
3985
|
}
|
|
3974
3986
|
.p-tabview .p-tabview-close {
|
|
3975
3987
|
margin-left: 0.5rem;
|
|
3976
3988
|
}
|
|
3977
3989
|
.p-tabview .p-tabview-nav-btn.p-link {
|
|
3978
|
-
background: #
|
|
3979
|
-
color: #
|
|
3990
|
+
background: #1f2937;
|
|
3991
|
+
color: #818cf8;
|
|
3980
3992
|
width: 3rem;
|
|
3981
3993
|
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
3982
3994
|
border-radius: 0;
|
|
@@ -3984,10 +3996,10 @@
|
|
|
3984
3996
|
.p-tabview .p-tabview-nav-btn.p-link:focus-visible {
|
|
3985
3997
|
outline: 0 none;
|
|
3986
3998
|
outline-offset: 0;
|
|
3987
|
-
box-shadow: inset 0 0 0 0.2rem rgba(
|
|
3999
|
+
box-shadow: inset 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
3988
4000
|
}
|
|
3989
4001
|
.p-tabview .p-tabview-panels {
|
|
3990
|
-
background: #
|
|
4002
|
+
background: #1f2937;
|
|
3991
4003
|
padding: 1.25rem;
|
|
3992
4004
|
border: 0 none;
|
|
3993
4005
|
color: rgba(255, 255, 255, 0.87);
|
|
@@ -3996,8 +4008,8 @@
|
|
|
3996
4008
|
}
|
|
3997
4009
|
|
|
3998
4010
|
.p-toolbar {
|
|
3999
|
-
background: #
|
|
4000
|
-
border: 1px solid #
|
|
4011
|
+
background: #1f2937;
|
|
4012
|
+
border: 1px solid #424b57;
|
|
4001
4013
|
padding: 1.25rem;
|
|
4002
4014
|
border-radius: 6px;
|
|
4003
4015
|
gap: 0.5rem;
|
|
@@ -4007,9 +4019,9 @@
|
|
|
4007
4019
|
}
|
|
4008
4020
|
|
|
4009
4021
|
.p-confirm-popup {
|
|
4010
|
-
background: #
|
|
4022
|
+
background: #1f2937;
|
|
4011
4023
|
color: rgba(255, 255, 255, 0.87);
|
|
4012
|
-
border: 1px solid #
|
|
4024
|
+
border: 1px solid #424b57;
|
|
4013
4025
|
border-radius: 6px;
|
|
4014
4026
|
box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
|
|
4015
4027
|
}
|
|
@@ -4029,19 +4041,19 @@
|
|
|
4029
4041
|
}
|
|
4030
4042
|
.p-confirm-popup:after {
|
|
4031
4043
|
border: solid transparent;
|
|
4032
|
-
border-color: rgba(
|
|
4033
|
-
border-bottom-color: #
|
|
4044
|
+
border-color: rgba(31, 41, 55, 0);
|
|
4045
|
+
border-bottom-color: #1f2937;
|
|
4034
4046
|
}
|
|
4035
4047
|
.p-confirm-popup:before {
|
|
4036
4048
|
border: solid transparent;
|
|
4037
|
-
border-color: rgba(
|
|
4038
|
-
border-bottom-color: #
|
|
4049
|
+
border-color: rgba(66, 75, 87, 0);
|
|
4050
|
+
border-bottom-color: #3f4753;
|
|
4039
4051
|
}
|
|
4040
4052
|
.p-confirm-popup.p-confirm-popup-flipped:after {
|
|
4041
|
-
border-top-color: #
|
|
4053
|
+
border-top-color: #1f2937;
|
|
4042
4054
|
}
|
|
4043
4055
|
.p-confirm-popup.p-confirm-popup-flipped:before {
|
|
4044
|
-
border-top-color: #
|
|
4056
|
+
border-top-color: #424b57;
|
|
4045
4057
|
}
|
|
4046
4058
|
.p-confirm-popup .p-confirm-popup-icon {
|
|
4047
4059
|
font-size: 1.5rem;
|
|
@@ -4057,11 +4069,11 @@
|
|
|
4057
4069
|
.p-dialog {
|
|
4058
4070
|
border-radius: 6px;
|
|
4059
4071
|
box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
|
|
4060
|
-
border: 1px solid #
|
|
4072
|
+
border: 1px solid #424b57;
|
|
4061
4073
|
}
|
|
4062
4074
|
.p-dialog .p-dialog-header {
|
|
4063
4075
|
border-bottom: 0 none;
|
|
4064
|
-
background: #
|
|
4076
|
+
background: #1f2937;
|
|
4065
4077
|
color: rgba(255, 255, 255, 0.87);
|
|
4066
4078
|
padding: 1.5rem;
|
|
4067
4079
|
border-top-right-radius: 6px;
|
|
@@ -4089,13 +4101,13 @@
|
|
|
4089
4101
|
.p-dialog .p-dialog-header .p-dialog-header-icon:focus-visible {
|
|
4090
4102
|
outline: 0 none;
|
|
4091
4103
|
outline-offset: 0;
|
|
4092
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
4104
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
4093
4105
|
}
|
|
4094
4106
|
.p-dialog .p-dialog-header .p-dialog-header-icon:last-child {
|
|
4095
4107
|
margin-right: 0;
|
|
4096
4108
|
}
|
|
4097
4109
|
.p-dialog .p-dialog-content {
|
|
4098
|
-
background: #
|
|
4110
|
+
background: #1f2937;
|
|
4099
4111
|
color: rgba(255, 255, 255, 0.87);
|
|
4100
4112
|
padding: 0 1.5rem 2rem 1.5rem;
|
|
4101
4113
|
}
|
|
@@ -4105,7 +4117,7 @@
|
|
|
4105
4117
|
}
|
|
4106
4118
|
.p-dialog .p-dialog-footer {
|
|
4107
4119
|
border-top: 0 none;
|
|
4108
|
-
background: #
|
|
4120
|
+
background: #1f2937;
|
|
4109
4121
|
color: rgba(255, 255, 255, 0.87);
|
|
4110
4122
|
padding: 0 1.5rem 1.5rem 1.5rem;
|
|
4111
4123
|
text-align: right;
|
|
@@ -4131,9 +4143,9 @@
|
|
|
4131
4143
|
}
|
|
4132
4144
|
|
|
4133
4145
|
.p-overlaypanel {
|
|
4134
|
-
background: #
|
|
4146
|
+
background: #1f2937;
|
|
4135
4147
|
color: rgba(255, 255, 255, 0.87);
|
|
4136
|
-
border: 1px solid #
|
|
4148
|
+
border: 1px solid #424b57;
|
|
4137
4149
|
border-radius: 6px;
|
|
4138
4150
|
box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
|
|
4139
4151
|
}
|
|
@@ -4141,8 +4153,8 @@
|
|
|
4141
4153
|
padding: 1.25rem;
|
|
4142
4154
|
}
|
|
4143
4155
|
.p-overlaypanel .p-overlaypanel-close {
|
|
4144
|
-
background: #
|
|
4145
|
-
color: #
|
|
4156
|
+
background: #818cf8;
|
|
4157
|
+
color: #030712;
|
|
4146
4158
|
width: 2rem;
|
|
4147
4159
|
height: 2rem;
|
|
4148
4160
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
@@ -4152,30 +4164,30 @@
|
|
|
4152
4164
|
right: -1rem;
|
|
4153
4165
|
}
|
|
4154
4166
|
.p-overlaypanel .p-overlaypanel-close:enabled:hover {
|
|
4155
|
-
background: #
|
|
4156
|
-
color: #
|
|
4167
|
+
background: #a5b4fc;
|
|
4168
|
+
color: #030712;
|
|
4157
4169
|
}
|
|
4158
4170
|
.p-overlaypanel:after {
|
|
4159
4171
|
border: solid transparent;
|
|
4160
|
-
border-color: rgba(
|
|
4161
|
-
border-bottom-color: #
|
|
4172
|
+
border-color: rgba(31, 41, 55, 0);
|
|
4173
|
+
border-bottom-color: #1f2937;
|
|
4162
4174
|
}
|
|
4163
4175
|
.p-overlaypanel:before {
|
|
4164
4176
|
border: solid transparent;
|
|
4165
|
-
border-color: rgba(
|
|
4166
|
-
border-bottom-color: #
|
|
4177
|
+
border-color: rgba(66, 75, 87, 0);
|
|
4178
|
+
border-bottom-color: #3f4753;
|
|
4167
4179
|
}
|
|
4168
4180
|
.p-overlaypanel.p-overlaypanel-flipped:after {
|
|
4169
|
-
border-top-color: #
|
|
4181
|
+
border-top-color: #1f2937;
|
|
4170
4182
|
}
|
|
4171
4183
|
.p-overlaypanel.p-overlaypanel-flipped:before {
|
|
4172
|
-
border-top-color: #
|
|
4184
|
+
border-top-color: #424b57;
|
|
4173
4185
|
}
|
|
4174
4186
|
|
|
4175
4187
|
.p-sidebar {
|
|
4176
|
-
background: #
|
|
4188
|
+
background: #1f2937;
|
|
4177
4189
|
color: rgba(255, 255, 255, 0.87);
|
|
4178
|
-
border: 1px solid #
|
|
4190
|
+
border: 1px solid #424b57;
|
|
4179
4191
|
box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
|
|
4180
4192
|
}
|
|
4181
4193
|
.p-sidebar .p-sidebar-header {
|
|
@@ -4201,7 +4213,7 @@
|
|
|
4201
4213
|
.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible {
|
|
4202
4214
|
outline: 0 none;
|
|
4203
4215
|
outline-offset: 0;
|
|
4204
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
4216
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
4205
4217
|
}
|
|
4206
4218
|
.p-sidebar .p-sidebar-header + .p-sidebar-content {
|
|
4207
4219
|
padding-top: 0;
|
|
@@ -4211,29 +4223,29 @@
|
|
|
4211
4223
|
}
|
|
4212
4224
|
|
|
4213
4225
|
.p-tooltip .p-tooltip-text {
|
|
4214
|
-
background: #
|
|
4226
|
+
background: #424b57;
|
|
4215
4227
|
color: rgba(255, 255, 255, 0.87);
|
|
4216
4228
|
padding: 0.75rem 0.75rem;
|
|
4217
4229
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
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: #424b57;
|
|
4222
4234
|
}
|
|
4223
4235
|
.p-tooltip.p-tooltip-left .p-tooltip-arrow {
|
|
4224
|
-
border-left-color: #
|
|
4236
|
+
border-left-color: #424b57;
|
|
4225
4237
|
}
|
|
4226
4238
|
.p-tooltip.p-tooltip-top .p-tooltip-arrow {
|
|
4227
|
-
border-top-color: #
|
|
4239
|
+
border-top-color: #424b57;
|
|
4228
4240
|
}
|
|
4229
4241
|
.p-tooltip.p-tooltip-bottom .p-tooltip-arrow {
|
|
4230
|
-
border-bottom-color: #
|
|
4242
|
+
border-bottom-color: #424b57;
|
|
4231
4243
|
}
|
|
4232
4244
|
|
|
4233
4245
|
.p-fileupload .p-fileupload-buttonbar {
|
|
4234
|
-
background: #
|
|
4246
|
+
background: #1f2937;
|
|
4235
4247
|
padding: 1.25rem;
|
|
4236
|
-
border: 1px solid #
|
|
4248
|
+
border: 1px solid #424b57;
|
|
4237
4249
|
color: rgba(255, 255, 255, 0.87);
|
|
4238
4250
|
border-bottom: 0 none;
|
|
4239
4251
|
border-top-right-radius: 6px;
|
|
@@ -4244,9 +4256,9 @@
|
|
|
4244
4256
|
margin-right: 0.5rem;
|
|
4245
4257
|
}
|
|
4246
4258
|
.p-fileupload .p-fileupload-content {
|
|
4247
|
-
background: #
|
|
4259
|
+
background: #1f2937;
|
|
4248
4260
|
padding: 2rem 1rem;
|
|
4249
|
-
border: 1px solid #
|
|
4261
|
+
border: 1px solid #424b57;
|
|
4250
4262
|
color: rgba(255, 255, 255, 0.87);
|
|
4251
4263
|
border-bottom-right-radius: 6px;
|
|
4252
4264
|
border-bottom-left-radius: 6px;
|
|
@@ -4262,8 +4274,8 @@
|
|
|
4262
4274
|
}
|
|
4263
4275
|
|
|
4264
4276
|
.p-breadcrumb {
|
|
4265
|
-
background: #
|
|
4266
|
-
border: 1px solid #
|
|
4277
|
+
background: #374151;
|
|
4278
|
+
border: 1px solid #424b57;
|
|
4267
4279
|
border-radius: 6px;
|
|
4268
4280
|
padding: 1rem;
|
|
4269
4281
|
}
|
|
@@ -4274,7 +4286,7 @@
|
|
|
4274
4286
|
.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link:focus-visible {
|
|
4275
4287
|
outline: 0 none;
|
|
4276
4288
|
outline-offset: 0;
|
|
4277
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
4289
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
4278
4290
|
}
|
|
4279
4291
|
.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link .p-menuitem-text {
|
|
4280
4292
|
color: rgba(255, 255, 255, 0.87);
|
|
@@ -4295,9 +4307,9 @@
|
|
|
4295
4307
|
|
|
4296
4308
|
.p-contextmenu {
|
|
4297
4309
|
padding: 0.25rem 0;
|
|
4298
|
-
background: #
|
|
4310
|
+
background: #374151;
|
|
4299
4311
|
color: rgba(255, 255, 255, 0.87);
|
|
4300
|
-
border: 1px solid #
|
|
4312
|
+
border: 1px solid #424b57;
|
|
4301
4313
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
4302
4314
|
border-radius: 6px;
|
|
4303
4315
|
width: 12.5rem;
|
|
@@ -4334,17 +4346,17 @@
|
|
|
4334
4346
|
.p-contextmenu .p-menuitem-link:focus {
|
|
4335
4347
|
outline: 0 none;
|
|
4336
4348
|
outline-offset: 0;
|
|
4337
|
-
box-shadow: inset 0 0 0 0.15rem rgba(
|
|
4349
|
+
box-shadow: inset 0 0 0 0.15rem rgba(129, 140, 248, 0.2);
|
|
4338
4350
|
}
|
|
4339
4351
|
.p-contextmenu .p-submenu-list {
|
|
4340
4352
|
padding: 0.25rem 0;
|
|
4341
|
-
background: #
|
|
4342
|
-
border: 1px solid #
|
|
4353
|
+
background: #374151;
|
|
4354
|
+
border: 1px solid #424b57;
|
|
4343
4355
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
4344
4356
|
border-radius: 6px;
|
|
4345
4357
|
}
|
|
4346
4358
|
.p-contextmenu .p-menuitem.p-menuitem-active > .p-menuitem-link {
|
|
4347
|
-
background: rgba(
|
|
4359
|
+
background: rgba(129, 140, 248, 0.16);
|
|
4348
4360
|
}
|
|
4349
4361
|
.p-contextmenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text {
|
|
4350
4362
|
color: rgba(255, 255, 255, 0.87);
|
|
@@ -4353,7 +4365,7 @@
|
|
|
4353
4365
|
color: rgba(255, 255, 255, 0.87);
|
|
4354
4366
|
}
|
|
4355
4367
|
.p-contextmenu .p-menu-separator {
|
|
4356
|
-
border-top: 1px solid #
|
|
4368
|
+
border-top: 1px solid #424b57;
|
|
4357
4369
|
margin: 0.25rem 0;
|
|
4358
4370
|
}
|
|
4359
4371
|
.p-contextmenu .p-submenu-icon {
|
|
@@ -4443,9 +4455,9 @@
|
|
|
4443
4455
|
}
|
|
4444
4456
|
.p-megamenu {
|
|
4445
4457
|
padding: 0.5rem;
|
|
4446
|
-
background: #
|
|
4458
|
+
background: #374151;
|
|
4447
4459
|
color: rgba(255, 255, 255, 0.87);
|
|
4448
|
-
border: 1px solid #
|
|
4460
|
+
border: 1px solid #424b57;
|
|
4449
4461
|
border-radius: 6px;
|
|
4450
4462
|
}
|
|
4451
4463
|
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link {
|
|
@@ -4481,14 +4493,14 @@
|
|
|
4481
4493
|
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:focus {
|
|
4482
4494
|
outline: 0 none;
|
|
4483
4495
|
outline-offset: 0;
|
|
4484
|
-
box-shadow: inset 0 0 0 0.15rem rgba(
|
|
4496
|
+
box-shadow: inset 0 0 0 0.15rem rgba(129, 140, 248, 0.2);
|
|
4485
4497
|
}
|
|
4486
4498
|
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
|
4487
4499
|
margin-left: auto;
|
|
4488
4500
|
}
|
|
4489
4501
|
.p-megamenu .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link,
|
|
4490
4502
|
.p-megamenu .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link:not(.p-disabled):hover {
|
|
4491
|
-
background: rgba(
|
|
4503
|
+
background: rgba(129, 140, 248, 0.16);
|
|
4492
4504
|
}
|
|
4493
4505
|
.p-megamenu .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text,
|
|
4494
4506
|
.p-megamenu .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
|
@@ -4534,19 +4546,19 @@
|
|
|
4534
4546
|
.p-megamenu .p-menuitem-link:focus {
|
|
4535
4547
|
outline: 0 none;
|
|
4536
4548
|
outline-offset: 0;
|
|
4537
|
-
box-shadow: inset 0 0 0 0.15rem rgba(
|
|
4549
|
+
box-shadow: inset 0 0 0 0.15rem rgba(129, 140, 248, 0.2);
|
|
4538
4550
|
}
|
|
4539
4551
|
.p-megamenu .p-megamenu-panel {
|
|
4540
|
-
background: #
|
|
4552
|
+
background: #374151;
|
|
4541
4553
|
color: rgba(255, 255, 255, 0.87);
|
|
4542
|
-
border: 1px solid #
|
|
4554
|
+
border: 1px solid #424b57;
|
|
4543
4555
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
4544
4556
|
}
|
|
4545
4557
|
.p-megamenu .p-megamenu-submenu-header {
|
|
4546
4558
|
margin: 0;
|
|
4547
4559
|
padding: 0.75rem 1.25rem;
|
|
4548
4560
|
color: rgba(255, 255, 255, 0.87);
|
|
4549
|
-
background: #
|
|
4561
|
+
background: #374151;
|
|
4550
4562
|
font-weight: 700;
|
|
4551
4563
|
border-top-right-radius: 6px;
|
|
4552
4564
|
border-top-left-radius: 6px;
|
|
@@ -4556,11 +4568,11 @@
|
|
|
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 #424b57;
|
|
4560
4572
|
margin: 0.25rem 0;
|
|
4561
4573
|
}
|
|
4562
4574
|
.p-megamenu .p-menuitem.p-menuitem-active > .p-menuitem-link {
|
|
4563
|
-
background: rgba(
|
|
4575
|
+
background: rgba(129, 140, 248, 0.16);
|
|
4564
4576
|
}
|
|
4565
4577
|
.p-megamenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text {
|
|
4566
4578
|
color: rgba(255, 255, 255, 0.87);
|
|
@@ -4586,19 +4598,19 @@
|
|
|
4586
4598
|
.p-megamenu .p-megamenu-button:focus {
|
|
4587
4599
|
outline: 0 none;
|
|
4588
4600
|
outline-offset: 0;
|
|
4589
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
4601
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
4590
4602
|
}
|
|
4591
4603
|
.p-megamenu .p-submenu-icon {
|
|
4592
4604
|
transition: transform 0.2s;
|
|
4593
4605
|
}
|
|
4594
4606
|
.p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list {
|
|
4595
4607
|
padding: 0.25rem 0;
|
|
4596
|
-
background: #
|
|
4597
|
-
border: 1px solid #
|
|
4608
|
+
background: #374151;
|
|
4609
|
+
border: 1px solid #424b57;
|
|
4598
4610
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
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 #424b57;
|
|
4602
4614
|
margin: 0.25rem 0;
|
|
4603
4615
|
}
|
|
4604
4616
|
.p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list .p-submenu-icon {
|
|
@@ -4644,7 +4656,7 @@
|
|
|
4644
4656
|
.p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:focus {
|
|
4645
4657
|
outline: 0 none;
|
|
4646
4658
|
outline-offset: 0;
|
|
4647
|
-
box-shadow: inset 0 0 0 0.15rem rgba(
|
|
4659
|
+
box-shadow: inset 0 0 0 0.15rem rgba(129, 140, 248, 0.2);
|
|
4648
4660
|
}
|
|
4649
4661
|
.p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
|
4650
4662
|
margin-left: auto;
|
|
@@ -4672,9 +4684,9 @@
|
|
|
4672
4684
|
|
|
4673
4685
|
.p-menu {
|
|
4674
4686
|
padding: 0.25rem 0;
|
|
4675
|
-
background: #
|
|
4687
|
+
background: #374151;
|
|
4676
4688
|
color: rgba(255, 255, 255, 0.87);
|
|
4677
|
-
border: 1px solid #
|
|
4689
|
+
border: 1px solid #424b57;
|
|
4678
4690
|
border-radius: 6px;
|
|
4679
4691
|
width: 12.5rem;
|
|
4680
4692
|
}
|
|
@@ -4710,32 +4722,32 @@
|
|
|
4710
4722
|
.p-menu .p-menuitem-link:focus {
|
|
4711
4723
|
outline: 0 none;
|
|
4712
4724
|
outline-offset: 0;
|
|
4713
|
-
box-shadow: inset 0 0 0 0.15rem rgba(
|
|
4725
|
+
box-shadow: inset 0 0 0 0.15rem rgba(129, 140, 248, 0.2);
|
|
4714
4726
|
}
|
|
4715
4727
|
.p-menu.p-menu-overlay {
|
|
4716
|
-
background: #
|
|
4717
|
-
border: 1px solid #
|
|
4728
|
+
background: #374151;
|
|
4729
|
+
border: 1px solid #424b57;
|
|
4718
4730
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
4719
4731
|
}
|
|
4720
4732
|
.p-menu .p-submenu-header {
|
|
4721
4733
|
margin: 0;
|
|
4722
4734
|
padding: 0.75rem 1.25rem;
|
|
4723
4735
|
color: rgba(255, 255, 255, 0.87);
|
|
4724
|
-
background: #
|
|
4736
|
+
background: #374151;
|
|
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 #424b57;
|
|
4731
4743
|
margin: 0.25rem 0;
|
|
4732
4744
|
}
|
|
4733
4745
|
|
|
4734
4746
|
.p-menubar {
|
|
4735
4747
|
padding: 0.5rem;
|
|
4736
|
-
background: #
|
|
4748
|
+
background: #374151;
|
|
4737
4749
|
color: rgba(255, 255, 255, 0.87);
|
|
4738
|
-
border: 1px solid #
|
|
4750
|
+
border: 1px solid #424b57;
|
|
4739
4751
|
border-radius: 6px;
|
|
4740
4752
|
}
|
|
4741
4753
|
.p-menubar .p-menuitem-link {
|
|
@@ -4770,7 +4782,7 @@
|
|
|
4770
4782
|
.p-menubar .p-menuitem-link:focus {
|
|
4771
4783
|
outline: 0 none;
|
|
4772
4784
|
outline-offset: 0;
|
|
4773
|
-
box-shadow: inset 0 0 0 0.15rem rgba(
|
|
4785
|
+
box-shadow: inset 0 0 0 0.15rem rgba(129, 140, 248, 0.2);
|
|
4774
4786
|
}
|
|
4775
4787
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
|
4776
4788
|
padding: 0.75rem 1.25rem;
|
|
@@ -4805,11 +4817,11 @@
|
|
|
4805
4817
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
|
4806
4818
|
outline: 0 none;
|
|
4807
4819
|
outline-offset: 0;
|
|
4808
|
-
box-shadow: inset 0 0 0 0.15rem rgba(
|
|
4820
|
+
box-shadow: inset 0 0 0 0.15rem rgba(129, 140, 248, 0.2);
|
|
4809
4821
|
}
|
|
4810
4822
|
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link,
|
|
4811
4823
|
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link:not(.p-disabled):hover {
|
|
4812
|
-
background: rgba(
|
|
4824
|
+
background: rgba(129, 140, 248, 0.16);
|
|
4813
4825
|
}
|
|
4814
4826
|
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text,
|
|
4815
4827
|
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
|
@@ -4825,13 +4837,13 @@
|
|
|
4825
4837
|
}
|
|
4826
4838
|
.p-menubar .p-submenu-list {
|
|
4827
4839
|
padding: 0.25rem 0;
|
|
4828
|
-
background: #
|
|
4829
|
-
border: 1px solid #
|
|
4840
|
+
background: #374151;
|
|
4841
|
+
border: 1px solid #424b57;
|
|
4830
4842
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
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 #424b57;
|
|
4835
4847
|
margin: 0.25rem 0;
|
|
4836
4848
|
}
|
|
4837
4849
|
.p-menubar .p-submenu-list .p-submenu-icon {
|
|
@@ -4842,7 +4854,7 @@
|
|
|
4842
4854
|
height: 0.875rem;
|
|
4843
4855
|
}
|
|
4844
4856
|
.p-menubar .p-menuitem.p-menuitem-active > .p-menuitem-link {
|
|
4845
|
-
background: rgba(
|
|
4857
|
+
background: rgba(129, 140, 248, 0.16);
|
|
4846
4858
|
}
|
|
4847
4859
|
.p-menubar .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text {
|
|
4848
4860
|
color: rgba(255, 255, 255, 0.87);
|
|
@@ -4870,19 +4882,19 @@
|
|
|
4870
4882
|
.p-menubar .p-menubar-button:focus {
|
|
4871
4883
|
outline: 0 none;
|
|
4872
4884
|
outline-offset: 0;
|
|
4873
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
4885
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
4874
4886
|
}
|
|
4875
4887
|
.p-menubar .p-menubar-root-list {
|
|
4876
4888
|
position: absolute;
|
|
4877
4889
|
display: none;
|
|
4878
4890
|
padding: 0.25rem 0;
|
|
4879
|
-
background: #
|
|
4880
|
-
border: 1px solid #
|
|
4891
|
+
background: #374151;
|
|
4892
|
+
border: 1px solid #424b57;
|
|
4881
4893
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
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 #424b57;
|
|
4886
4898
|
margin: 0.25rem 0;
|
|
4887
4899
|
}
|
|
4888
4900
|
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
|
@@ -4928,7 +4940,7 @@
|
|
|
4928
4940
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
|
4929
4941
|
outline: 0 none;
|
|
4930
4942
|
outline-offset: 0;
|
|
4931
|
-
box-shadow: inset 0 0 0 0.15rem rgba(
|
|
4943
|
+
box-shadow: inset 0 0 0 0.15rem rgba(129, 140, 248, 0.2);
|
|
4932
4944
|
}
|
|
4933
4945
|
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
|
4934
4946
|
margin-left: auto;
|
|
@@ -4979,9 +4991,9 @@
|
|
|
4979
4991
|
}
|
|
4980
4992
|
.p-panelmenu .p-panelmenu-header > a {
|
|
4981
4993
|
padding: 1.25rem;
|
|
4982
|
-
border: 1px solid #
|
|
4994
|
+
border: 1px solid #424b57;
|
|
4983
4995
|
color: rgba(255, 255, 255, 0.87);
|
|
4984
|
-
background: #
|
|
4996
|
+
background: #1f2937;
|
|
4985
4997
|
font-weight: 700;
|
|
4986
4998
|
border-radius: 6px;
|
|
4987
4999
|
transition: box-shadow 0.2s;
|
|
@@ -4995,32 +5007,32 @@
|
|
|
4995
5007
|
.p-panelmenu .p-panelmenu-header > a:focus-visible {
|
|
4996
5008
|
outline: 0 none;
|
|
4997
5009
|
outline-offset: 0;
|
|
4998
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
5010
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
4999
5011
|
}
|
|
5000
5012
|
.p-panelmenu .p-panelmenu-header:not(.p-highlight):not(.p-disabled) > a:hover {
|
|
5001
5013
|
background: rgba(255, 255, 255, 0.03);
|
|
5002
|
-
border-color: #
|
|
5014
|
+
border-color: #424b57;
|
|
5003
5015
|
color: rgba(255, 255, 255, 0.87);
|
|
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: #
|
|
5021
|
+
background: #1f2937;
|
|
5022
|
+
border-color: #424b57;
|
|
5011
5023
|
color: rgba(255, 255, 255, 0.87);
|
|
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: #
|
|
5028
|
+
border-color: #424b57;
|
|
5017
5029
|
background: rgba(255, 255, 255, 0.03);
|
|
5018
5030
|
color: rgba(255, 255, 255, 0.87);
|
|
5019
5031
|
}
|
|
5020
5032
|
.p-panelmenu .p-panelmenu-content {
|
|
5021
5033
|
padding: 0.25rem 0;
|
|
5022
|
-
border: 1px solid #
|
|
5023
|
-
background: #
|
|
5034
|
+
border: 1px solid #424b57;
|
|
5035
|
+
background: #1f2937;
|
|
5024
5036
|
color: rgba(255, 255, 255, 0.87);
|
|
5025
5037
|
border-top: 0;
|
|
5026
5038
|
border-top-right-radius: 0;
|
|
@@ -5060,7 +5072,7 @@
|
|
|
5060
5072
|
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:focus {
|
|
5061
5073
|
outline: 0 none;
|
|
5062
5074
|
outline-offset: 0;
|
|
5063
|
-
box-shadow: inset 0 0 0 0.15rem rgba(
|
|
5075
|
+
box-shadow: inset 0 0 0 0.15rem rgba(129, 140, 248, 0.2);
|
|
5064
5076
|
}
|
|
5065
5077
|
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-panelmenu-icon {
|
|
5066
5078
|
margin-right: 0.5rem;
|
|
@@ -5074,9 +5086,9 @@
|
|
|
5074
5086
|
|
|
5075
5087
|
.p-slidemenu {
|
|
5076
5088
|
padding: 0.25rem 0;
|
|
5077
|
-
background: #
|
|
5089
|
+
background: #374151;
|
|
5078
5090
|
color: rgba(255, 255, 255, 0.87);
|
|
5079
|
-
border: 1px solid #
|
|
5091
|
+
border: 1px solid #424b57;
|
|
5080
5092
|
border-radius: 6px;
|
|
5081
5093
|
width: 12.5rem;
|
|
5082
5094
|
}
|
|
@@ -5112,21 +5124,21 @@
|
|
|
5112
5124
|
.p-slidemenu .p-menuitem-link:focus {
|
|
5113
5125
|
outline: 0 none;
|
|
5114
5126
|
outline-offset: 0;
|
|
5115
|
-
box-shadow: inset 0 0 0 0.15rem rgba(
|
|
5127
|
+
box-shadow: inset 0 0 0 0.15rem rgba(129, 140, 248, 0.2);
|
|
5116
5128
|
}
|
|
5117
5129
|
.p-slidemenu.p-slidemenu-overlay {
|
|
5118
|
-
background: #
|
|
5119
|
-
border: 1px solid #
|
|
5130
|
+
background: #374151;
|
|
5131
|
+
border: 1px solid #424b57;
|
|
5120
5132
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
5121
5133
|
}
|
|
5122
5134
|
.p-slidemenu .p-slidemenu-list {
|
|
5123
5135
|
padding: 0.25rem 0;
|
|
5124
|
-
background: #
|
|
5125
|
-
border: 1px solid #
|
|
5136
|
+
background: #374151;
|
|
5137
|
+
border: 1px solid #424b57;
|
|
5126
5138
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
5127
5139
|
}
|
|
5128
5140
|
.p-slidemenu .p-slidemenu.p-slidemenu-active > .p-slidemenu-link {
|
|
5129
|
-
background: rgba(
|
|
5141
|
+
background: rgba(129, 140, 248, 0.16);
|
|
5130
5142
|
}
|
|
5131
5143
|
.p-slidemenu .p-slidemenu.p-slidemenu-active > .p-slidemenu-link .p-slidemenu-text {
|
|
5132
5144
|
color: rgba(255, 255, 255, 0.87);
|
|
@@ -5135,7 +5147,7 @@
|
|
|
5135
5147
|
color: rgba(255, 255, 255, 0.87);
|
|
5136
5148
|
}
|
|
5137
5149
|
.p-slidemenu .p-slidemenu-separator {
|
|
5138
|
-
border-top: 1px solid #
|
|
5150
|
+
border-top: 1px solid #424b57;
|
|
5139
5151
|
margin: 0.25rem 0;
|
|
5140
5152
|
}
|
|
5141
5153
|
.p-slidemenu .p-slidemenu-icon {
|
|
@@ -5174,10 +5186,10 @@
|
|
|
5174
5186
|
.p-steps .p-steps-item .p-menuitem-link:not(.p-disabled):focus-visible {
|
|
5175
5187
|
outline: 0 none;
|
|
5176
5188
|
outline-offset: 0;
|
|
5177
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
5189
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
5178
5190
|
}
|
|
5179
5191
|
.p-steps .p-steps-item.p-highlight .p-steps-number {
|
|
5180
|
-
background: rgba(
|
|
5192
|
+
background: rgba(129, 140, 248, 0.16);
|
|
5181
5193
|
color: rgba(255, 255, 255, 0.87);
|
|
5182
5194
|
}
|
|
5183
5195
|
.p-steps .p-steps-item.p-highlight .p-steps-title {
|
|
@@ -5186,7 +5198,7 @@
|
|
|
5186
5198
|
}
|
|
5187
5199
|
.p-steps .p-steps-item:before {
|
|
5188
5200
|
content: " ";
|
|
5189
|
-
border-top: 1px solid #
|
|
5201
|
+
border-top: 1px solid #424b57;
|
|
5190
5202
|
width: 100%;
|
|
5191
5203
|
top: 50%;
|
|
5192
5204
|
left: 0;
|
|
@@ -5197,17 +5209,17 @@
|
|
|
5197
5209
|
|
|
5198
5210
|
.p-tabmenu .p-tabmenu-nav {
|
|
5199
5211
|
background: transparent;
|
|
5200
|
-
border: 1px solid #
|
|
5212
|
+
border: 1px solid #424b57;
|
|
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 #424b57;
|
|
5208
5220
|
border-width: 0 0 2px 0;
|
|
5209
|
-
border-color: transparent transparent #
|
|
5210
|
-
background: #
|
|
5221
|
+
border-color: transparent transparent #424b57 transparent;
|
|
5222
|
+
background: #1f2937;
|
|
5211
5223
|
color: rgba(255, 255, 255, 0.6);
|
|
5212
5224
|
padding: 1.25rem;
|
|
5213
5225
|
font-weight: 700;
|
|
@@ -5223,24 +5235,24 @@
|
|
|
5223
5235
|
.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link:not(.p-disabled):focus-visible {
|
|
5224
5236
|
outline: 0 none;
|
|
5225
5237
|
outline-offset: 0;
|
|
5226
|
-
box-shadow: inset 0 0 0 0.2rem rgba(
|
|
5238
|
+
box-shadow: inset 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
5227
5239
|
}
|
|
5228
5240
|
.p-tabmenu .p-tabmenu-nav .p-tabmenuitem:not(.p-highlight):not(.p-disabled):hover .p-menuitem-link {
|
|
5229
|
-
background: #
|
|
5230
|
-
border-color: #
|
|
5241
|
+
background: #1f2937;
|
|
5242
|
+
border-color: #818cf8;
|
|
5231
5243
|
color: rgba(255, 255, 255, 0.87);
|
|
5232
5244
|
}
|
|
5233
5245
|
.p-tabmenu .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link {
|
|
5234
|
-
background: #
|
|
5235
|
-
border-color: #
|
|
5236
|
-
color: #
|
|
5246
|
+
background: #1f2937;
|
|
5247
|
+
border-color: #818cf8;
|
|
5248
|
+
color: #818cf8;
|
|
5237
5249
|
}
|
|
5238
5250
|
|
|
5239
5251
|
.p-tieredmenu {
|
|
5240
5252
|
padding: 0.25rem 0;
|
|
5241
|
-
background: #
|
|
5253
|
+
background: #374151;
|
|
5242
5254
|
color: rgba(255, 255, 255, 0.87);
|
|
5243
|
-
border: 1px solid #
|
|
5255
|
+
border: 1px solid #424b57;
|
|
5244
5256
|
border-radius: 6px;
|
|
5245
5257
|
width: 12.5rem;
|
|
5246
5258
|
}
|
|
@@ -5276,21 +5288,21 @@
|
|
|
5276
5288
|
.p-tieredmenu .p-menuitem-link:focus {
|
|
5277
5289
|
outline: 0 none;
|
|
5278
5290
|
outline-offset: 0;
|
|
5279
|
-
box-shadow: inset 0 0 0 0.15rem rgba(
|
|
5291
|
+
box-shadow: inset 0 0 0 0.15rem rgba(129, 140, 248, 0.2);
|
|
5280
5292
|
}
|
|
5281
5293
|
.p-tieredmenu.p-tieredmenu-overlay {
|
|
5282
|
-
background: #
|
|
5283
|
-
border: 1px solid #
|
|
5294
|
+
background: #374151;
|
|
5295
|
+
border: 1px solid #424b57;
|
|
5284
5296
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
5285
5297
|
}
|
|
5286
5298
|
.p-tieredmenu .p-submenu-list {
|
|
5287
5299
|
padding: 0.25rem 0;
|
|
5288
|
-
background: #
|
|
5289
|
-
border: 1px solid #
|
|
5300
|
+
background: #374151;
|
|
5301
|
+
border: 1px solid #424b57;
|
|
5290
5302
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
5291
5303
|
}
|
|
5292
5304
|
.p-tieredmenu .p-menuitem.p-menuitem-active > .p-menuitem-link {
|
|
5293
|
-
background: rgba(
|
|
5305
|
+
background: rgba(129, 140, 248, 0.16);
|
|
5294
5306
|
}
|
|
5295
5307
|
.p-tieredmenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text {
|
|
5296
5308
|
color: rgba(255, 255, 255, 0.87);
|
|
@@ -5299,7 +5311,7 @@
|
|
|
5299
5311
|
color: rgba(255, 255, 255, 0.87);
|
|
5300
5312
|
}
|
|
5301
5313
|
.p-tieredmenu .p-menu-separator {
|
|
5302
|
-
border-top: 1px solid #
|
|
5314
|
+
border-top: 1px solid #424b57;
|
|
5303
5315
|
margin: 0.25rem 0;
|
|
5304
5316
|
}
|
|
5305
5317
|
.p-tieredmenu .p-submenu-icon {
|
|
@@ -5317,40 +5329,40 @@
|
|
|
5317
5329
|
border-radius: 6px;
|
|
5318
5330
|
}
|
|
5319
5331
|
.p-inline-message.p-inline-message-info {
|
|
5320
|
-
background:
|
|
5321
|
-
border: solid #
|
|
5332
|
+
background: rgba(59, 130, 246, 0.2);
|
|
5333
|
+
border: solid #3b82f6;
|
|
5322
5334
|
border-width: 1px;
|
|
5323
|
-
color: #
|
|
5335
|
+
color: #93c5fd;
|
|
5324
5336
|
}
|
|
5325
5337
|
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
|
5326
|
-
color: #
|
|
5338
|
+
color: #93c5fd;
|
|
5327
5339
|
}
|
|
5328
5340
|
.p-inline-message.p-inline-message-success {
|
|
5329
|
-
background:
|
|
5330
|
-
border: solid #
|
|
5341
|
+
background: rgba(16, 185, 129, 0.2);
|
|
5342
|
+
border: solid #10b981;
|
|
5331
5343
|
border-width: 1px;
|
|
5332
|
-
color: #
|
|
5344
|
+
color: #6ee7b7;
|
|
5333
5345
|
}
|
|
5334
5346
|
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
|
5335
|
-
color: #
|
|
5347
|
+
color: #6ee7b7;
|
|
5336
5348
|
}
|
|
5337
5349
|
.p-inline-message.p-inline-message-warn {
|
|
5338
|
-
background:
|
|
5339
|
-
border: solid #
|
|
5350
|
+
background: rgba(234, 179, 8, 0.2);
|
|
5351
|
+
border: solid #eab308;
|
|
5340
5352
|
border-width: 1px;
|
|
5341
|
-
color: #
|
|
5353
|
+
color: #fde047;
|
|
5342
5354
|
}
|
|
5343
5355
|
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
|
5344
|
-
color: #
|
|
5356
|
+
color: #fde047;
|
|
5345
5357
|
}
|
|
5346
5358
|
.p-inline-message.p-inline-message-error {
|
|
5347
|
-
background:
|
|
5348
|
-
border: solid #
|
|
5359
|
+
background: rgba(239, 68, 68, 0.2);
|
|
5360
|
+
border: solid #ef4444;
|
|
5349
5361
|
border-width: 1px;
|
|
5350
|
-
color: #
|
|
5362
|
+
color: #fca5a5;
|
|
5351
5363
|
}
|
|
5352
5364
|
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
|
5353
|
-
color: #
|
|
5365
|
+
color: #fca5a5;
|
|
5354
5366
|
}
|
|
5355
5367
|
.p-inline-message .p-inline-message-icon {
|
|
5356
5368
|
font-size: 1rem;
|
|
@@ -5382,64 +5394,64 @@
|
|
|
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;
|
|
5389
5401
|
outline-offset: 0;
|
|
5390
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
5402
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
5391
5403
|
}
|
|
5392
5404
|
.p-message.p-message-info {
|
|
5393
|
-
background:
|
|
5394
|
-
border: solid #
|
|
5405
|
+
background: rgba(59, 130, 246, 0.2);
|
|
5406
|
+
border: solid #3b82f6;
|
|
5395
5407
|
border-width: 0 0 0 6px;
|
|
5396
|
-
color: #
|
|
5408
|
+
color: #93c5fd;
|
|
5397
5409
|
}
|
|
5398
5410
|
.p-message.p-message-info .p-message-icon {
|
|
5399
|
-
color: #
|
|
5411
|
+
color: #93c5fd;
|
|
5400
5412
|
}
|
|
5401
5413
|
.p-message.p-message-info .p-message-close {
|
|
5402
|
-
color: #
|
|
5414
|
+
color: #93c5fd;
|
|
5403
5415
|
}
|
|
5404
5416
|
.p-message.p-message-success {
|
|
5405
|
-
background:
|
|
5406
|
-
border: solid #
|
|
5417
|
+
background: rgba(16, 185, 129, 0.2);
|
|
5418
|
+
border: solid #10b981;
|
|
5407
5419
|
border-width: 0 0 0 6px;
|
|
5408
|
-
color: #
|
|
5420
|
+
color: #6ee7b7;
|
|
5409
5421
|
}
|
|
5410
5422
|
.p-message.p-message-success .p-message-icon {
|
|
5411
|
-
color: #
|
|
5423
|
+
color: #6ee7b7;
|
|
5412
5424
|
}
|
|
5413
5425
|
.p-message.p-message-success .p-message-close {
|
|
5414
|
-
color: #
|
|
5426
|
+
color: #6ee7b7;
|
|
5415
5427
|
}
|
|
5416
5428
|
.p-message.p-message-warn {
|
|
5417
|
-
background:
|
|
5418
|
-
border: solid #
|
|
5429
|
+
background: rgba(234, 179, 8, 0.2);
|
|
5430
|
+
border: solid #eab308;
|
|
5419
5431
|
border-width: 0 0 0 6px;
|
|
5420
|
-
color: #
|
|
5432
|
+
color: #fde047;
|
|
5421
5433
|
}
|
|
5422
5434
|
.p-message.p-message-warn .p-message-icon {
|
|
5423
|
-
color: #
|
|
5435
|
+
color: #fde047;
|
|
5424
5436
|
}
|
|
5425
5437
|
.p-message.p-message-warn .p-message-close {
|
|
5426
|
-
color: #
|
|
5438
|
+
color: #fde047;
|
|
5427
5439
|
}
|
|
5428
5440
|
.p-message.p-message-error {
|
|
5429
|
-
background:
|
|
5430
|
-
border: solid #
|
|
5441
|
+
background: rgba(239, 68, 68, 0.2);
|
|
5442
|
+
border: solid #ef4444;
|
|
5431
5443
|
border-width: 0 0 0 6px;
|
|
5432
|
-
color: #
|
|
5444
|
+
color: #fca5a5;
|
|
5433
5445
|
}
|
|
5434
5446
|
.p-message.p-message-error .p-message-icon {
|
|
5435
|
-
color: #
|
|
5447
|
+
color: #fca5a5;
|
|
5436
5448
|
}
|
|
5437
5449
|
.p-message.p-message-error .p-message-close {
|
|
5438
|
-
color: #
|
|
5450
|
+
color: #fca5a5;
|
|
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,52 +5504,52 @@
|
|
|
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;
|
|
5499
5511
|
outline-offset: 0;
|
|
5500
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
5512
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
5501
5513
|
}
|
|
5502
5514
|
.p-toast .p-toast-message.p-toast-message-info {
|
|
5503
|
-
background:
|
|
5504
|
-
border: solid #
|
|
5515
|
+
background: rgba(59, 130, 246, 0.2);
|
|
5516
|
+
border: solid #3b82f6;
|
|
5505
5517
|
border-width: 0 0 0 6px;
|
|
5506
|
-
color: #
|
|
5518
|
+
color: #93c5fd;
|
|
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: #93c5fd;
|
|
5511
5523
|
}
|
|
5512
5524
|
.p-toast .p-toast-message.p-toast-message-success {
|
|
5513
|
-
background:
|
|
5514
|
-
border: solid #
|
|
5525
|
+
background: rgba(16, 185, 129, 0.2);
|
|
5526
|
+
border: solid #10b981;
|
|
5515
5527
|
border-width: 0 0 0 6px;
|
|
5516
|
-
color: #
|
|
5528
|
+
color: #6ee7b7;
|
|
5517
5529
|
}
|
|
5518
5530
|
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
|
5519
5531
|
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
|
5520
|
-
color: #
|
|
5532
|
+
color: #6ee7b7;
|
|
5521
5533
|
}
|
|
5522
5534
|
.p-toast .p-toast-message.p-toast-message-warn {
|
|
5523
|
-
background:
|
|
5524
|
-
border: solid #
|
|
5535
|
+
background: rgba(234, 179, 8, 0.2);
|
|
5536
|
+
border: solid #eab308;
|
|
5525
5537
|
border-width: 0 0 0 6px;
|
|
5526
|
-
color: #
|
|
5538
|
+
color: #fde047;
|
|
5527
5539
|
}
|
|
5528
5540
|
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
|
5529
5541
|
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
|
5530
|
-
color: #
|
|
5542
|
+
color: #fde047;
|
|
5531
5543
|
}
|
|
5532
5544
|
.p-toast .p-toast-message.p-toast-message-error {
|
|
5533
|
-
background:
|
|
5534
|
-
border: solid #
|
|
5545
|
+
background: rgba(239, 68, 68, 0.2);
|
|
5546
|
+
border: solid #ef4444;
|
|
5535
5547
|
border-width: 0 0 0 6px;
|
|
5536
|
-
color: #
|
|
5548
|
+
color: #fca5a5;
|
|
5537
5549
|
}
|
|
5538
5550
|
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
|
5539
5551
|
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
|
5540
|
-
color: #
|
|
5552
|
+
color: #fca5a5;
|
|
5541
5553
|
}
|
|
5542
5554
|
|
|
5543
5555
|
.p-galleria .p-galleria-close {
|
|
@@ -5591,7 +5603,7 @@
|
|
|
5591
5603
|
padding: 1rem;
|
|
5592
5604
|
}
|
|
5593
5605
|
.p-galleria .p-galleria-indicators .p-galleria-indicator button {
|
|
5594
|
-
background-color: #
|
|
5606
|
+
background-color: #424b57;
|
|
5595
5607
|
width: 1rem;
|
|
5596
5608
|
height: 1rem;
|
|
5597
5609
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
@@ -5601,7 +5613,7 @@
|
|
|
5601
5613
|
background: rgba(255, 255, 255, 0.1);
|
|
5602
5614
|
}
|
|
5603
5615
|
.p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button {
|
|
5604
|
-
background: rgba(
|
|
5616
|
+
background: rgba(129, 140, 248, 0.16);
|
|
5605
5617
|
color: rgba(255, 255, 255, 0.87);
|
|
5606
5618
|
}
|
|
5607
5619
|
.p-galleria.p-galleria-indicators-bottom .p-galleria-indicator, .p-galleria.p-galleria-indicators-top .p-galleria-indicator {
|
|
@@ -5620,7 +5632,7 @@
|
|
|
5620
5632
|
background: rgba(255, 255, 255, 0.6);
|
|
5621
5633
|
}
|
|
5622
5634
|
.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button {
|
|
5623
|
-
background: rgba(
|
|
5635
|
+
background: rgba(129, 140, 248, 0.16);
|
|
5624
5636
|
color: rgba(255, 255, 255, 0.87);
|
|
5625
5637
|
}
|
|
5626
5638
|
.p-galleria .p-galleria-thumbnail-container {
|
|
@@ -5648,7 +5660,7 @@
|
|
|
5648
5660
|
.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-item-content:focus-visible {
|
|
5649
5661
|
outline: 0 none;
|
|
5650
5662
|
outline-offset: 0;
|
|
5651
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
5663
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
5652
5664
|
}
|
|
5653
5665
|
|
|
5654
5666
|
.p-galleria-mask {
|
|
@@ -5702,7 +5714,7 @@
|
|
|
5702
5714
|
}
|
|
5703
5715
|
|
|
5704
5716
|
.p-avatar {
|
|
5705
|
-
background-color: #
|
|
5717
|
+
background-color: #424b57;
|
|
5706
5718
|
border-radius: 6px;
|
|
5707
5719
|
}
|
|
5708
5720
|
.p-avatar.p-avatar-lg {
|
|
@@ -5727,11 +5739,11 @@
|
|
|
5727
5739
|
}
|
|
5728
5740
|
|
|
5729
5741
|
.p-avatar-group .p-avatar {
|
|
5730
|
-
border: 2px solid #
|
|
5742
|
+
border: 2px solid #1f2937;
|
|
5731
5743
|
}
|
|
5732
5744
|
|
|
5733
5745
|
.p-chip {
|
|
5734
|
-
background-color: #
|
|
5746
|
+
background-color: #424b57;
|
|
5735
5747
|
color: rgba(255, 255, 255, 0.87);
|
|
5736
5748
|
border-radius: 16px;
|
|
5737
5749
|
padding: 0 0.75rem;
|
|
@@ -5758,7 +5770,7 @@
|
|
|
5758
5770
|
.p-chip .p-chip-remove-icon:focus-visible {
|
|
5759
5771
|
outline: 0 none;
|
|
5760
5772
|
outline-offset: 0;
|
|
5761
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
5773
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
5762
5774
|
}
|
|
5763
5775
|
.p-chip .p-chip-remove-icon:focus {
|
|
5764
5776
|
outline: 0 none;
|
|
@@ -5772,10 +5784,10 @@
|
|
|
5772
5784
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
5773
5785
|
}
|
|
5774
5786
|
.p-scrolltop.p-link {
|
|
5775
|
-
background: rgba(
|
|
5787
|
+
background: rgba(129, 140, 248, 0.16);
|
|
5776
5788
|
}
|
|
5777
5789
|
.p-scrolltop.p-link:hover {
|
|
5778
|
-
background: rgba(
|
|
5790
|
+
background: rgba(129, 140, 248, 0.3616);
|
|
5779
5791
|
}
|
|
5780
5792
|
.p-scrolltop .p-scrolltop-icon {
|
|
5781
5793
|
font-size: 1.5rem;
|
|
@@ -5795,28 +5807,28 @@
|
|
|
5795
5807
|
}
|
|
5796
5808
|
|
|
5797
5809
|
.p-tag {
|
|
5798
|
-
background: #
|
|
5799
|
-
color: #
|
|
5810
|
+
background: #818cf8;
|
|
5811
|
+
color: #030712;
|
|
5800
5812
|
font-size: 0.75rem;
|
|
5801
5813
|
font-weight: 700;
|
|
5802
5814
|
padding: 0.25rem 0.4rem;
|
|
5803
5815
|
border-radius: 6px;
|
|
5804
5816
|
}
|
|
5805
5817
|
.p-tag.p-tag-success {
|
|
5806
|
-
background-color: #
|
|
5807
|
-
color: #
|
|
5818
|
+
background-color: #4ade80;
|
|
5819
|
+
color: #052e16;
|
|
5808
5820
|
}
|
|
5809
5821
|
.p-tag.p-tag-info {
|
|
5810
|
-
background-color: #
|
|
5811
|
-
color: #
|
|
5822
|
+
background-color: #38bdf8;
|
|
5823
|
+
color: #082f49;
|
|
5812
5824
|
}
|
|
5813
5825
|
.p-tag.p-tag-warning {
|
|
5814
|
-
background-color: #
|
|
5815
|
-
color: #
|
|
5826
|
+
background-color: #fb923c;
|
|
5827
|
+
color: #431407;
|
|
5816
5828
|
}
|
|
5817
5829
|
.p-tag.p-tag-danger {
|
|
5818
|
-
background-color: #
|
|
5819
|
-
color: #
|
|
5830
|
+
background-color: #f87171;
|
|
5831
|
+
color: #450a0a;
|
|
5820
5832
|
}
|
|
5821
5833
|
.p-tag .p-tag-icon {
|
|
5822
5834
|
margin-right: 0.25rem;
|
|
@@ -5839,29 +5851,29 @@
|
|
|
5839
5851
|
.p-inplace .p-inplace-display:focus {
|
|
5840
5852
|
outline: 0 none;
|
|
5841
5853
|
outline-offset: 0;
|
|
5842
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
5854
|
+
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
|
5843
5855
|
}
|
|
5844
5856
|
|
|
5845
5857
|
.p-progressbar {
|
|
5846
5858
|
border: 0 none;
|
|
5847
5859
|
height: 1.5rem;
|
|
5848
|
-
background: #
|
|
5860
|
+
background: #424b57;
|
|
5849
5861
|
border-radius: 6px;
|
|
5850
5862
|
}
|
|
5851
5863
|
.p-progressbar .p-progressbar-value {
|
|
5852
5864
|
border: 0 none;
|
|
5853
5865
|
margin: 0;
|
|
5854
|
-
background: #
|
|
5866
|
+
background: #818cf8;
|
|
5855
5867
|
}
|
|
5856
5868
|
.p-progressbar .p-progressbar-label {
|
|
5857
|
-
color: #
|
|
5869
|
+
color: #030712;
|
|
5858
5870
|
line-height: 1.5rem;
|
|
5859
5871
|
}
|
|
5860
5872
|
|
|
5861
5873
|
.p-terminal {
|
|
5862
|
-
background: #
|
|
5874
|
+
background: #1f2937;
|
|
5863
5875
|
color: rgba(255, 255, 255, 0.87);
|
|
5864
|
-
border: 1px solid #
|
|
5876
|
+
border: 1px solid #424b57;
|
|
5865
5877
|
padding: 1.25rem;
|
|
5866
5878
|
}
|
|
5867
5879
|
.p-terminal .p-terminal-input {
|
|
@@ -5871,8 +5883,8 @@
|
|
|
5871
5883
|
}
|
|
5872
5884
|
|
|
5873
5885
|
.p-badge {
|
|
5874
|
-
background: #
|
|
5875
|
-
color: #
|
|
5886
|
+
background: #818cf8;
|
|
5887
|
+
color: #030712;
|
|
5876
5888
|
font-size: 0.75rem;
|
|
5877
5889
|
font-weight: 700;
|
|
5878
5890
|
min-width: 1.5rem;
|
|
@@ -5880,24 +5892,24 @@
|
|
|
5880
5892
|
line-height: 1.5rem;
|
|
5881
5893
|
}
|
|
5882
5894
|
.p-badge.p-badge-secondary {
|
|
5883
|
-
background-color: #
|
|
5884
|
-
color: #
|
|
5895
|
+
background-color: #94a3b8;
|
|
5896
|
+
color: #020617;
|
|
5885
5897
|
}
|
|
5886
5898
|
.p-badge.p-badge-success {
|
|
5887
|
-
background-color: #
|
|
5888
|
-
color: #
|
|
5899
|
+
background-color: #4ade80;
|
|
5900
|
+
color: #052e16;
|
|
5889
5901
|
}
|
|
5890
5902
|
.p-badge.p-badge-info {
|
|
5891
|
-
background-color: #
|
|
5892
|
-
color: #
|
|
5903
|
+
background-color: #38bdf8;
|
|
5904
|
+
color: #082f49;
|
|
5893
5905
|
}
|
|
5894
5906
|
.p-badge.p-badge-warning {
|
|
5895
|
-
background-color: #
|
|
5896
|
-
color: #
|
|
5907
|
+
background-color: #fb923c;
|
|
5908
|
+
color: #431407;
|
|
5897
5909
|
}
|
|
5898
5910
|
.p-badge.p-badge-danger {
|
|
5899
|
-
background-color: #
|
|
5900
|
-
color: #
|
|
5911
|
+
background-color: #f87171;
|
|
5912
|
+
color: #450a0a;
|
|
5901
5913
|
}
|
|
5902
5914
|
.p-badge.p-badge-lg {
|
|
5903
5915
|
font-size: 1.125rem;
|
|
@@ -5913,28 +5925,28 @@
|
|
|
5913
5925
|
}
|
|
5914
5926
|
|
|
5915
5927
|
.p-tag {
|
|
5916
|
-
background: #
|
|
5917
|
-
color: #
|
|
5928
|
+
background: #818cf8;
|
|
5929
|
+
color: #030712;
|
|
5918
5930
|
font-size: 0.75rem;
|
|
5919
5931
|
font-weight: 700;
|
|
5920
5932
|
padding: 0.25rem 0.4rem;
|
|
5921
5933
|
border-radius: 6px;
|
|
5922
5934
|
}
|
|
5923
5935
|
.p-tag.p-tag-success {
|
|
5924
|
-
background-color: #
|
|
5925
|
-
color: #
|
|
5936
|
+
background-color: #4ade80;
|
|
5937
|
+
color: #052e16;
|
|
5926
5938
|
}
|
|
5927
5939
|
.p-tag.p-tag-info {
|
|
5928
|
-
background-color: #
|
|
5929
|
-
color: #
|
|
5940
|
+
background-color: #38bdf8;
|
|
5941
|
+
color: #082f49;
|
|
5930
5942
|
}
|
|
5931
5943
|
.p-tag.p-tag-warning {
|
|
5932
|
-
background-color: #
|
|
5933
|
-
color: #
|
|
5944
|
+
background-color: #fb923c;
|
|
5945
|
+
color: #431407;
|
|
5934
5946
|
}
|
|
5935
5947
|
.p-tag.p-tag-danger {
|
|
5936
|
-
background-color: #
|
|
5937
|
-
color: #
|
|
5948
|
+
background-color: #f87171;
|
|
5949
|
+
color: #450a0a;
|
|
5938
5950
|
}
|
|
5939
5951
|
}
|
|
5940
5952
|
@layer primereact {
|
|
@@ -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
|
}
|
|
@@ -5955,44 +5972,78 @@
|
|
|
5955
5972
|
position: absolute;
|
|
5956
5973
|
bottom: 0;
|
|
5957
5974
|
height: 2px;
|
|
5958
|
-
background-color: #
|
|
5975
|
+
background-color: #818cf8;
|
|
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
|
-
background-color: #
|
|
5984
|
+
background-color: #818cf8;
|
|
5964
5985
|
}
|
|
5965
5986
|
|
|
5966
5987
|
.p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button {
|
|
5967
|
-
background-color: #
|
|
5988
|
+
background-color: #818cf8;
|
|
5968
5989
|
}
|
|
5969
5990
|
|
|
5970
5991
|
.p-button:focus {
|
|
5971
|
-
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(
|
|
5992
|
+
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(129, 140, 248, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0);
|
|
5972
5993
|
}
|
|
5973
5994
|
.p-button.p-button-secondary:enabled:focus {
|
|
5974
|
-
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(
|
|
5995
|
+
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(148, 163, 184, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0);
|
|
5975
5996
|
}
|
|
5976
5997
|
.p-button.p-button-success:enabled:focus {
|
|
5977
|
-
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(
|
|
5998
|
+
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(74, 222, 128, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0);
|
|
5978
5999
|
}
|
|
5979
6000
|
.p-button.p-button-info:enabled:focus {
|
|
5980
|
-
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(
|
|
6001
|
+
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(56, 189, 248, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0);
|
|
5981
6002
|
}
|
|
5982
6003
|
.p-button.p-button-warning:enabled:focus {
|
|
5983
|
-
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(
|
|
6004
|
+
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(251, 146, 60, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0);
|
|
5984
6005
|
}
|
|
5985
6006
|
.p-button.p-button-help:enabled:focus {
|
|
5986
|
-
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(
|
|
6007
|
+
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(192, 132, 252, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0);
|
|
5987
6008
|
}
|
|
5988
6009
|
.p-button.p-button-danger:enabled:focus {
|
|
5989
|
-
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(
|
|
6010
|
+
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(248, 113, 113, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0);
|
|
5990
6011
|
}
|
|
5991
6012
|
|
|
5992
6013
|
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
|
|
5993
|
-
box-shadow: inset 0 2px 0 0 #
|
|
6014
|
+
box-shadow: inset 0 2px 0 0 #818cf8;
|
|
5994
6015
|
}
|
|
5995
6016
|
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
|
|
5996
|
-
box-shadow: inset 0 -2px 0 0 #
|
|
6017
|
+
box-shadow: inset 0 -2px 0 0 #818cf8;
|
|
6018
|
+
}
|
|
6019
|
+
|
|
6020
|
+
.p-speeddial-item.p-focus > .p-speeddial-action {
|
|
6021
|
+
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(129, 140, 248, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0);
|
|
6022
|
+
}
|
|
6023
|
+
|
|
6024
|
+
.p-toast-message {
|
|
6025
|
+
backdrop-filter: blur(10px);
|
|
6026
|
+
}
|
|
6027
|
+
|
|
6028
|
+
.p-message .p-message-close:hover {
|
|
6029
|
+
background: rgba(255, 255, 255, 0.1);
|
|
6030
|
+
}
|
|
6031
|
+
|
|
6032
|
+
.p-toast .p-toast-message .p-toast-icon-close:hover {
|
|
6033
|
+
background: rgba(255, 255, 255, 0.1);
|
|
6034
|
+
}
|
|
6035
|
+
|
|
6036
|
+
.p-inline-message-text {
|
|
6037
|
+
font-weight: 500;
|
|
6038
|
+
}
|
|
6039
|
+
|
|
6040
|
+
.p-picklist-buttons .p-button,
|
|
6041
|
+
.p-orderlist-controls .p-button {
|
|
6042
|
+
transition: opacity 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
6043
|
+
}
|
|
6044
|
+
|
|
6045
|
+
.p-steps .p-steps-item.p-highlight .p-steps-number {
|
|
6046
|
+
background: #818cf8;
|
|
6047
|
+
color: #030712;
|
|
5997
6048
|
}
|
|
5998
6049
|
}
|