@alpaca-headless/alpaca-headless-nextjs 1.0.26 → 1.0.128
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 +22 -18
- 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 +44 -13
- 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 +552 -74
- 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 +32 -17
- 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 -41
- 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 -54
- 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
|
@@ -1678,6 +1678,9 @@
|
|
|
1678
1678
|
box-shadow: 0 0 0 1px #9eade6;
|
|
1679
1679
|
border-color: #9eade6;
|
|
1680
1680
|
}
|
|
1681
|
+
.p-treeselect.p-treeselect-clearable .p-treeselect-label {
|
|
1682
|
+
padding-right: 1.75rem;
|
|
1683
|
+
}
|
|
1681
1684
|
.p-treeselect .p-treeselect-label {
|
|
1682
1685
|
padding: 0.5rem 0.75rem;
|
|
1683
1686
|
transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
|
|
@@ -1699,6 +1702,10 @@
|
|
|
1699
1702
|
border-top-right-radius: 6px;
|
|
1700
1703
|
border-bottom-right-radius: 6px;
|
|
1701
1704
|
}
|
|
1705
|
+
.p-treeselect .p-treeselect-clear-icon {
|
|
1706
|
+
color: rgba(255, 255, 255, 0.6);
|
|
1707
|
+
right: 2.857rem;
|
|
1708
|
+
}
|
|
1702
1709
|
.p-treeselect.p-invalid.p-component {
|
|
1703
1710
|
border-color: #f78c79;
|
|
1704
1711
|
}
|
|
@@ -1827,12 +1834,12 @@
|
|
|
1827
1834
|
transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
|
|
1828
1835
|
border-radius: 6px;
|
|
1829
1836
|
}
|
|
1830
|
-
.p-button:
|
|
1837
|
+
.p-button:not(:disabled):hover {
|
|
1831
1838
|
background: #8fa0e2;
|
|
1832
1839
|
color: #121212;
|
|
1833
1840
|
border-color: #8fa0e2;
|
|
1834
1841
|
}
|
|
1835
|
-
.p-button:
|
|
1842
|
+
.p-button:not(:disabled):active {
|
|
1836
1843
|
background: #7f93de;
|
|
1837
1844
|
color: #121212;
|
|
1838
1845
|
border-color: #7f93de;
|
|
@@ -1842,12 +1849,12 @@
|
|
|
1842
1849
|
color: #9eade6;
|
|
1843
1850
|
border: 2px solid;
|
|
1844
1851
|
}
|
|
1845
|
-
.p-button.p-button-outlined:
|
|
1852
|
+
.p-button.p-button-outlined:not(:disabled):hover {
|
|
1846
1853
|
background: rgba(158, 173, 230, 0.04);
|
|
1847
1854
|
color: #9eade6;
|
|
1848
1855
|
border: 2px solid;
|
|
1849
1856
|
}
|
|
1850
|
-
.p-button.p-button-outlined:
|
|
1857
|
+
.p-button.p-button-outlined:not(:disabled):active {
|
|
1851
1858
|
background: rgba(158, 173, 230, 0.16);
|
|
1852
1859
|
color: #9eade6;
|
|
1853
1860
|
border: 2px solid;
|
|
@@ -1856,11 +1863,11 @@
|
|
|
1856
1863
|
color: rgba(255, 255, 255, 0.6);
|
|
1857
1864
|
border-color: rgba(255, 255, 255, 0.6);
|
|
1858
1865
|
}
|
|
1859
|
-
.p-button.p-button-outlined.p-button-plain:
|
|
1866
|
+
.p-button.p-button-outlined.p-button-plain:not(:disabled):hover {
|
|
1860
1867
|
background: rgba(158, 173, 230, 0.08);
|
|
1861
1868
|
color: rgba(255, 255, 255, 0.6);
|
|
1862
1869
|
}
|
|
1863
|
-
.p-button.p-button-outlined.p-button-plain:
|
|
1870
|
+
.p-button.p-button-outlined.p-button-plain:not(:disabled):active {
|
|
1864
1871
|
background: rgba(255, 255, 255, 0.16);
|
|
1865
1872
|
color: rgba(255, 255, 255, 0.6);
|
|
1866
1873
|
}
|
|
@@ -1869,12 +1876,12 @@
|
|
|
1869
1876
|
color: #9eade6;
|
|
1870
1877
|
border-color: transparent;
|
|
1871
1878
|
}
|
|
1872
|
-
.p-button.p-button-text:
|
|
1879
|
+
.p-button.p-button-text:not(:disabled):hover {
|
|
1873
1880
|
background: rgba(158, 173, 230, 0.04);
|
|
1874
1881
|
color: #9eade6;
|
|
1875
1882
|
border-color: transparent;
|
|
1876
1883
|
}
|
|
1877
|
-
.p-button.p-button-text:
|
|
1884
|
+
.p-button.p-button-text:not(:disabled):active {
|
|
1878
1885
|
background: rgba(158, 173, 230, 0.16);
|
|
1879
1886
|
color: #9eade6;
|
|
1880
1887
|
border-color: transparent;
|
|
@@ -1882,11 +1889,11 @@
|
|
|
1882
1889
|
.p-button.p-button-text.p-button-plain {
|
|
1883
1890
|
color: rgba(255, 255, 255, 0.6);
|
|
1884
1891
|
}
|
|
1885
|
-
.p-button.p-button-text.p-button-plain:
|
|
1892
|
+
.p-button.p-button-text.p-button-plain:not(:disabled):hover {
|
|
1886
1893
|
background: rgba(158, 173, 230, 0.08);
|
|
1887
1894
|
color: rgba(255, 255, 255, 0.6);
|
|
1888
1895
|
}
|
|
1889
|
-
.p-button.p-button-text.p-button-plain:
|
|
1896
|
+
.p-button.p-button-text.p-button-plain:not(:disabled):active {
|
|
1890
1897
|
background: rgba(255, 255, 255, 0.16);
|
|
1891
1898
|
color: rgba(255, 255, 255, 0.6);
|
|
1892
1899
|
}
|
|
@@ -1984,15 +1991,15 @@
|
|
|
1984
1991
|
background: #b4bfcd;
|
|
1985
1992
|
border: 1px solid #b4bfcd;
|
|
1986
1993
|
}
|
|
1987
|
-
.p-button.p-button-secondary:
|
|
1994
|
+
.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 {
|
|
1988
1995
|
background: #9dabbe;
|
|
1989
1996
|
color: #0e1315;
|
|
1990
1997
|
border-color: #9dabbe;
|
|
1991
1998
|
}
|
|
1992
|
-
.p-button.p-button-secondary:
|
|
1999
|
+
.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 {
|
|
1993
2000
|
box-shadow: 1px #e1e5eb;
|
|
1994
2001
|
}
|
|
1995
|
-
.p-button.p-button-secondary:
|
|
2002
|
+
.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 {
|
|
1996
2003
|
background: #8698ae;
|
|
1997
2004
|
color: #0e1315;
|
|
1998
2005
|
border-color: #8698ae;
|
|
@@ -2002,12 +2009,12 @@
|
|
|
2002
2009
|
color: #b4bfcd;
|
|
2003
2010
|
border: 2px solid;
|
|
2004
2011
|
}
|
|
2005
|
-
.p-button.p-button-secondary.p-button-outlined:
|
|
2012
|
+
.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 {
|
|
2006
2013
|
background: rgba(180, 191, 205, 0.04);
|
|
2007
2014
|
color: #b4bfcd;
|
|
2008
2015
|
border: 2px solid;
|
|
2009
2016
|
}
|
|
2010
|
-
.p-button.p-button-secondary.p-button-outlined:
|
|
2017
|
+
.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 {
|
|
2011
2018
|
background: rgba(180, 191, 205, 0.16);
|
|
2012
2019
|
color: #b4bfcd;
|
|
2013
2020
|
border: 2px solid;
|
|
@@ -2017,12 +2024,12 @@
|
|
|
2017
2024
|
color: #b4bfcd;
|
|
2018
2025
|
border-color: transparent;
|
|
2019
2026
|
}
|
|
2020
|
-
.p-button.p-button-secondary.p-button-text:
|
|
2027
|
+
.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 {
|
|
2021
2028
|
background: rgba(180, 191, 205, 0.04);
|
|
2022
2029
|
border-color: transparent;
|
|
2023
2030
|
color: #b4bfcd;
|
|
2024
2031
|
}
|
|
2025
|
-
.p-button.p-button-secondary.p-button-text:
|
|
2032
|
+
.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 {
|
|
2026
2033
|
background: rgba(180, 191, 205, 0.16);
|
|
2027
2034
|
border-color: transparent;
|
|
2028
2035
|
color: #b4bfcd;
|
|
@@ -2033,15 +2040,15 @@
|
|
|
2033
2040
|
background: #35a4cc;
|
|
2034
2041
|
border: 1px solid #35a4cc;
|
|
2035
2042
|
}
|
|
2036
|
-
.p-button.p-button-info:
|
|
2043
|
+
.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 {
|
|
2037
2044
|
background: #2f94b9;
|
|
2038
2045
|
color: #ffffff;
|
|
2039
2046
|
border-color: #2f94b9;
|
|
2040
2047
|
}
|
|
2041
|
-
.p-button.p-button-info:
|
|
2048
|
+
.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 {
|
|
2042
2049
|
box-shadow: 0 0 0 1px #aedbeb;
|
|
2043
2050
|
}
|
|
2044
|
-
.p-button.p-button-info:
|
|
2051
|
+
.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 {
|
|
2045
2052
|
background: #2984a4;
|
|
2046
2053
|
color: #ffffff;
|
|
2047
2054
|
border-color: #2984a4;
|
|
@@ -2051,12 +2058,12 @@
|
|
|
2051
2058
|
color: #35a4cc;
|
|
2052
2059
|
border: 2px solid;
|
|
2053
2060
|
}
|
|
2054
|
-
.p-button.p-button-info.p-button-outlined:
|
|
2061
|
+
.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 {
|
|
2055
2062
|
background: rgba(53, 164, 204, 0.04);
|
|
2056
2063
|
color: #35a4cc;
|
|
2057
2064
|
border: 2px solid;
|
|
2058
2065
|
}
|
|
2059
|
-
.p-button.p-button-info.p-button-outlined:
|
|
2066
|
+
.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 {
|
|
2060
2067
|
background: rgba(53, 164, 204, 0.16);
|
|
2061
2068
|
color: #35a4cc;
|
|
2062
2069
|
border: 2px solid;
|
|
@@ -2066,12 +2073,12 @@
|
|
|
2066
2073
|
color: #35a4cc;
|
|
2067
2074
|
border-color: transparent;
|
|
2068
2075
|
}
|
|
2069
|
-
.p-button.p-button-info.p-button-text:
|
|
2076
|
+
.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 {
|
|
2070
2077
|
background: rgba(53, 164, 204, 0.04);
|
|
2071
2078
|
border-color: transparent;
|
|
2072
2079
|
color: #35a4cc;
|
|
2073
2080
|
}
|
|
2074
|
-
.p-button.p-button-info.p-button-text:
|
|
2081
|
+
.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 {
|
|
2075
2082
|
background: rgba(53, 164, 204, 0.16);
|
|
2076
2083
|
border-color: transparent;
|
|
2077
2084
|
color: #35a4cc;
|
|
@@ -2082,15 +2089,15 @@
|
|
|
2082
2089
|
background: #cede9c;
|
|
2083
2090
|
border: 1px solid #cede9c;
|
|
2084
2091
|
}
|
|
2085
|
-
.p-button.p-button-success:
|
|
2092
|
+
.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 {
|
|
2086
2093
|
background: #c0d580;
|
|
2087
2094
|
color: #0e1315;
|
|
2088
2095
|
border-color: #c0d580;
|
|
2089
2096
|
}
|
|
2090
|
-
.p-button.p-button-success:
|
|
2097
|
+
.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 {
|
|
2091
2098
|
box-shadow: 0 0 0 1px #ebf2d7;
|
|
2092
2099
|
}
|
|
2093
|
-
.p-button.p-button-success:
|
|
2100
|
+
.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 {
|
|
2094
2101
|
background: #b2cb63;
|
|
2095
2102
|
color: #0e1315;
|
|
2096
2103
|
border-color: #b2cb63;
|
|
@@ -2100,12 +2107,12 @@
|
|
|
2100
2107
|
color: #cede9c;
|
|
2101
2108
|
border: 2px solid;
|
|
2102
2109
|
}
|
|
2103
|
-
.p-button.p-button-success.p-button-outlined:
|
|
2110
|
+
.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 {
|
|
2104
2111
|
background: rgba(206, 222, 156, 0.04);
|
|
2105
2112
|
color: #cede9c;
|
|
2106
2113
|
border: 2px solid;
|
|
2107
2114
|
}
|
|
2108
|
-
.p-button.p-button-success.p-button-outlined:
|
|
2115
|
+
.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 {
|
|
2109
2116
|
background: rgba(206, 222, 156, 0.16);
|
|
2110
2117
|
color: #cede9c;
|
|
2111
2118
|
border: 2px solid;
|
|
@@ -2115,12 +2122,12 @@
|
|
|
2115
2122
|
color: #cede9c;
|
|
2116
2123
|
border-color: transparent;
|
|
2117
2124
|
}
|
|
2118
|
-
.p-button.p-button-success.p-button-text:
|
|
2125
|
+
.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 {
|
|
2119
2126
|
background: rgba(206, 222, 156, 0.04);
|
|
2120
2127
|
border-color: transparent;
|
|
2121
2128
|
color: #cede9c;
|
|
2122
2129
|
}
|
|
2123
|
-
.p-button.p-button-success.p-button-text:
|
|
2130
|
+
.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 {
|
|
2124
2131
|
background: rgba(206, 222, 156, 0.16);
|
|
2125
2132
|
border-color: transparent;
|
|
2126
2133
|
color: #cede9c;
|
|
@@ -2131,15 +2138,15 @@
|
|
|
2131
2138
|
background: #ffe08a;
|
|
2132
2139
|
border: 1px solid #ffe08a;
|
|
2133
2140
|
}
|
|
2134
|
-
.p-button.p-button-warning:
|
|
2141
|
+
.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 {
|
|
2135
2142
|
background: #ffd663;
|
|
2136
2143
|
color: #0e1315;
|
|
2137
2144
|
border-color: #ffd663;
|
|
2138
2145
|
}
|
|
2139
|
-
.p-button.p-button-warning:
|
|
2146
|
+
.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 {
|
|
2140
2147
|
box-shadow: 0 0 0 1px #fff3d0;
|
|
2141
2148
|
}
|
|
2142
|
-
.p-button.p-button-warning:
|
|
2149
|
+
.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 {
|
|
2143
2150
|
background: #ffcb3b;
|
|
2144
2151
|
color: #0e1315;
|
|
2145
2152
|
border-color: #ffcb3b;
|
|
@@ -2149,12 +2156,12 @@
|
|
|
2149
2156
|
color: #ffe08a;
|
|
2150
2157
|
border: 2px solid;
|
|
2151
2158
|
}
|
|
2152
|
-
.p-button.p-button-warning.p-button-outlined:
|
|
2159
|
+
.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 {
|
|
2153
2160
|
background: rgba(255, 224, 138, 0.04);
|
|
2154
2161
|
color: #ffe08a;
|
|
2155
2162
|
border: 2px solid;
|
|
2156
2163
|
}
|
|
2157
|
-
.p-button.p-button-warning.p-button-outlined:
|
|
2164
|
+
.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 {
|
|
2158
2165
|
background: rgba(255, 224, 138, 0.16);
|
|
2159
2166
|
color: #ffe08a;
|
|
2160
2167
|
border: 2px solid;
|
|
@@ -2164,12 +2171,12 @@
|
|
|
2164
2171
|
color: #ffe08a;
|
|
2165
2172
|
border-color: transparent;
|
|
2166
2173
|
}
|
|
2167
|
-
.p-button.p-button-warning.p-button-text:
|
|
2174
|
+
.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 {
|
|
2168
2175
|
background: rgba(255, 224, 138, 0.04);
|
|
2169
2176
|
border-color: transparent;
|
|
2170
2177
|
color: #ffe08a;
|
|
2171
2178
|
}
|
|
2172
|
-
.p-button.p-button-warning.p-button-text:
|
|
2179
|
+
.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 {
|
|
2173
2180
|
background: rgba(255, 224, 138, 0.16);
|
|
2174
2181
|
border-color: transparent;
|
|
2175
2182
|
color: #ffe08a;
|
|
@@ -2180,15 +2187,15 @@
|
|
|
2180
2187
|
background: #b09ce5;
|
|
2181
2188
|
border: 1px solid #b09ce5;
|
|
2182
2189
|
}
|
|
2183
|
-
.p-button.p-button-help:
|
|
2190
|
+
.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 {
|
|
2184
2191
|
background: #987edd;
|
|
2185
2192
|
color: #0e1315;
|
|
2186
2193
|
border-color: #987edd;
|
|
2187
2194
|
}
|
|
2188
|
-
.p-button.p-button-help:
|
|
2195
|
+
.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 {
|
|
2189
2196
|
box-shadow: 0 0 0 1px #dfd7f5;
|
|
2190
2197
|
}
|
|
2191
|
-
.p-button.p-button-help:
|
|
2198
|
+
.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 {
|
|
2192
2199
|
background: #7f5fd5;
|
|
2193
2200
|
color: #0e1315;
|
|
2194
2201
|
border-color: #7f5fd5;
|
|
@@ -2198,12 +2205,12 @@
|
|
|
2198
2205
|
color: #b09ce5;
|
|
2199
2206
|
border: 2px solid;
|
|
2200
2207
|
}
|
|
2201
|
-
.p-button.p-button-help.p-button-outlined:
|
|
2208
|
+
.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 {
|
|
2202
2209
|
background: rgba(176, 156, 229, 0.04);
|
|
2203
2210
|
color: #b09ce5;
|
|
2204
2211
|
border: 2px solid;
|
|
2205
2212
|
}
|
|
2206
|
-
.p-button.p-button-help.p-button-outlined:
|
|
2213
|
+
.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 {
|
|
2207
2214
|
background: rgba(176, 156, 229, 0.16);
|
|
2208
2215
|
color: #b09ce5;
|
|
2209
2216
|
border: 2px solid;
|
|
@@ -2213,12 +2220,12 @@
|
|
|
2213
2220
|
color: #b09ce5;
|
|
2214
2221
|
border-color: transparent;
|
|
2215
2222
|
}
|
|
2216
|
-
.p-button.p-button-help.p-button-text:
|
|
2223
|
+
.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 {
|
|
2217
2224
|
background: rgba(176, 156, 229, 0.04);
|
|
2218
2225
|
border-color: transparent;
|
|
2219
2226
|
color: #b09ce5;
|
|
2220
2227
|
}
|
|
2221
|
-
.p-button.p-button-help.p-button-text:
|
|
2228
|
+
.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 {
|
|
2222
2229
|
background: rgba(176, 156, 229, 0.16);
|
|
2223
2230
|
border-color: transparent;
|
|
2224
2231
|
color: #b09ce5;
|
|
@@ -2229,15 +2236,15 @@
|
|
|
2229
2236
|
background: #e693a9;
|
|
2230
2237
|
border: 1px solid #e693a9;
|
|
2231
2238
|
}
|
|
2232
|
-
.p-button.p-button-danger:
|
|
2239
|
+
.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 {
|
|
2233
2240
|
background: #df7491;
|
|
2234
2241
|
color: #0e1315;
|
|
2235
2242
|
border-color: #df7491;
|
|
2236
2243
|
}
|
|
2237
|
-
.p-button.p-button-danger:
|
|
2244
|
+
.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 {
|
|
2238
2245
|
box-shadow: 0 0 0 1px #f5d4dd;
|
|
2239
2246
|
}
|
|
2240
|
-
.p-button.p-button-danger:
|
|
2247
|
+
.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 {
|
|
2241
2248
|
background: #d85678;
|
|
2242
2249
|
color: #0e1315;
|
|
2243
2250
|
border-color: #d85678;
|
|
@@ -2247,12 +2254,12 @@
|
|
|
2247
2254
|
color: #e693a9;
|
|
2248
2255
|
border: 2px solid;
|
|
2249
2256
|
}
|
|
2250
|
-
.p-button.p-button-danger.p-button-outlined:
|
|
2257
|
+
.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 {
|
|
2251
2258
|
background: rgba(230, 147, 169, 0.04);
|
|
2252
2259
|
color: #e693a9;
|
|
2253
2260
|
border: 2px solid;
|
|
2254
2261
|
}
|
|
2255
|
-
.p-button.p-button-danger.p-button-outlined:
|
|
2262
|
+
.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 {
|
|
2256
2263
|
background: rgba(230, 147, 169, 0.16);
|
|
2257
2264
|
color: #e693a9;
|
|
2258
2265
|
border: 2px solid;
|
|
@@ -2262,12 +2269,12 @@
|
|
|
2262
2269
|
color: #e693a9;
|
|
2263
2270
|
border-color: transparent;
|
|
2264
2271
|
}
|
|
2265
|
-
.p-button.p-button-danger.p-button-text:
|
|
2272
|
+
.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 {
|
|
2266
2273
|
background: rgba(230, 147, 169, 0.04);
|
|
2267
2274
|
border-color: transparent;
|
|
2268
2275
|
color: #e693a9;
|
|
2269
2276
|
}
|
|
2270
|
-
.p-button.p-button-danger.p-button-text:
|
|
2277
|
+
.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 {
|
|
2271
2278
|
background: rgba(230, 147, 169, 0.16);
|
|
2272
2279
|
border-color: transparent;
|
|
2273
2280
|
color: #e693a9;
|
|
@@ -2278,20 +2285,20 @@
|
|
|
2278
2285
|
background: transparent;
|
|
2279
2286
|
border: transparent;
|
|
2280
2287
|
}
|
|
2281
|
-
.p-button.p-button-link:
|
|
2288
|
+
.p-button.p-button-link:not(:disabled):hover {
|
|
2282
2289
|
background: transparent;
|
|
2283
2290
|
color: #7f93de;
|
|
2284
2291
|
border-color: transparent;
|
|
2285
2292
|
}
|
|
2286
|
-
.p-button.p-button-link:
|
|
2293
|
+
.p-button.p-button-link:not(:disabled):hover .p-button-label {
|
|
2287
2294
|
text-decoration: underline;
|
|
2288
2295
|
}
|
|
2289
|
-
.p-button.p-button-link:
|
|
2296
|
+
.p-button.p-button-link:not(:disabled):focus {
|
|
2290
2297
|
background: transparent;
|
|
2291
2298
|
box-shadow: 0 0 0 1px #9eade6;
|
|
2292
2299
|
border-color: transparent;
|
|
2293
2300
|
}
|
|
2294
|
-
.p-button.p-button-link:
|
|
2301
|
+
.p-button.p-button-link:not(:disabled):active {
|
|
2295
2302
|
background: transparent;
|
|
2296
2303
|
color: #7f93de;
|
|
2297
2304
|
border-color: transparent;
|
|
@@ -2305,11 +2312,11 @@
|
|
|
2305
2312
|
color: #9eade6;
|
|
2306
2313
|
border: 2px solid;
|
|
2307
2314
|
}
|
|
2308
|
-
.p-splitbutton.p-button-outlined > .p-button:
|
|
2315
|
+
.p-splitbutton.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2309
2316
|
background: rgba(158, 173, 230, 0.04);
|
|
2310
2317
|
color: #9eade6;
|
|
2311
2318
|
}
|
|
2312
|
-
.p-splitbutton.p-button-outlined > .p-button:
|
|
2319
|
+
.p-splitbutton.p-button-outlined > .p-button:not(:disabled):active {
|
|
2313
2320
|
background: rgba(158, 173, 230, 0.16);
|
|
2314
2321
|
color: #9eade6;
|
|
2315
2322
|
}
|
|
@@ -2317,11 +2324,11 @@
|
|
|
2317
2324
|
color: rgba(255, 255, 255, 0.6);
|
|
2318
2325
|
border-color: rgba(255, 255, 255, 0.6);
|
|
2319
2326
|
}
|
|
2320
|
-
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:
|
|
2327
|
+
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:not(:disabled):hover {
|
|
2321
2328
|
background: rgba(158, 173, 230, 0.08);
|
|
2322
2329
|
color: rgba(255, 255, 255, 0.6);
|
|
2323
2330
|
}
|
|
2324
|
-
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:
|
|
2331
|
+
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:not(:disabled):active {
|
|
2325
2332
|
background: rgba(255, 255, 255, 0.16);
|
|
2326
2333
|
color: rgba(255, 255, 255, 0.6);
|
|
2327
2334
|
}
|
|
@@ -2330,12 +2337,12 @@
|
|
|
2330
2337
|
color: #9eade6;
|
|
2331
2338
|
border-color: transparent;
|
|
2332
2339
|
}
|
|
2333
|
-
.p-splitbutton.p-button-text > .p-button:
|
|
2340
|
+
.p-splitbutton.p-button-text > .p-button:not(:disabled):hover {
|
|
2334
2341
|
background: rgba(158, 173, 230, 0.04);
|
|
2335
2342
|
color: #9eade6;
|
|
2336
2343
|
border-color: transparent;
|
|
2337
2344
|
}
|
|
2338
|
-
.p-splitbutton.p-button-text > .p-button:
|
|
2345
|
+
.p-splitbutton.p-button-text > .p-button:not(:disabled):active {
|
|
2339
2346
|
background: rgba(158, 173, 230, 0.16);
|
|
2340
2347
|
color: #9eade6;
|
|
2341
2348
|
border-color: transparent;
|
|
@@ -2343,11 +2350,11 @@
|
|
|
2343
2350
|
.p-splitbutton.p-button-text.p-button-plain > .p-button {
|
|
2344
2351
|
color: rgba(255, 255, 255, 0.6);
|
|
2345
2352
|
}
|
|
2346
|
-
.p-splitbutton.p-button-text.p-button-plain > .p-button:
|
|
2353
|
+
.p-splitbutton.p-button-text.p-button-plain > .p-button:not(:disabled):hover {
|
|
2347
2354
|
background: rgba(158, 173, 230, 0.08);
|
|
2348
2355
|
color: rgba(255, 255, 255, 0.6);
|
|
2349
2356
|
}
|
|
2350
|
-
.p-splitbutton.p-button-text.p-button-plain > .p-button:
|
|
2357
|
+
.p-splitbutton.p-button-text.p-button-plain > .p-button:not(:disabled):active {
|
|
2351
2358
|
background: rgba(255, 255, 255, 0.16);
|
|
2352
2359
|
color: rgba(255, 255, 255, 0.6);
|
|
2353
2360
|
}
|
|
@@ -2389,11 +2396,11 @@
|
|
|
2389
2396
|
color: #b4bfcd;
|
|
2390
2397
|
border: 2px solid;
|
|
2391
2398
|
}
|
|
2392
|
-
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:
|
|
2399
|
+
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2393
2400
|
background: rgba(180, 191, 205, 0.04);
|
|
2394
2401
|
color: #b4bfcd;
|
|
2395
2402
|
}
|
|
2396
|
-
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:
|
|
2403
|
+
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):active {
|
|
2397
2404
|
background: rgba(180, 191, 205, 0.16);
|
|
2398
2405
|
color: #b4bfcd;
|
|
2399
2406
|
}
|
|
@@ -2402,12 +2409,12 @@
|
|
|
2402
2409
|
color: #b4bfcd;
|
|
2403
2410
|
border-color: transparent;
|
|
2404
2411
|
}
|
|
2405
|
-
.p-splitbutton.p-button-secondary.p-button-text > .p-button:
|
|
2412
|
+
.p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):hover {
|
|
2406
2413
|
background: rgba(180, 191, 205, 0.04);
|
|
2407
2414
|
border-color: transparent;
|
|
2408
2415
|
color: #b4bfcd;
|
|
2409
2416
|
}
|
|
2410
|
-
.p-splitbutton.p-button-secondary.p-button-text > .p-button:
|
|
2417
|
+
.p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):active {
|
|
2411
2418
|
background: rgba(180, 191, 205, 0.16);
|
|
2412
2419
|
border-color: transparent;
|
|
2413
2420
|
color: #b4bfcd;
|
|
@@ -2418,11 +2425,11 @@
|
|
|
2418
2425
|
color: #35a4cc;
|
|
2419
2426
|
border: 2px solid;
|
|
2420
2427
|
}
|
|
2421
|
-
.p-splitbutton.p-button-info.p-button-outlined > .p-button:
|
|
2428
|
+
.p-splitbutton.p-button-info.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2422
2429
|
background: rgba(53, 164, 204, 0.04);
|
|
2423
2430
|
color: #35a4cc;
|
|
2424
2431
|
}
|
|
2425
|
-
.p-splitbutton.p-button-info.p-button-outlined > .p-button:
|
|
2432
|
+
.p-splitbutton.p-button-info.p-button-outlined > .p-button:not(:disabled):active {
|
|
2426
2433
|
background: rgba(53, 164, 204, 0.16);
|
|
2427
2434
|
color: #35a4cc;
|
|
2428
2435
|
}
|
|
@@ -2431,12 +2438,12 @@
|
|
|
2431
2438
|
color: #35a4cc;
|
|
2432
2439
|
border-color: transparent;
|
|
2433
2440
|
}
|
|
2434
|
-
.p-splitbutton.p-button-info.p-button-text > .p-button:
|
|
2441
|
+
.p-splitbutton.p-button-info.p-button-text > .p-button:not(:disabled):hover {
|
|
2435
2442
|
background: rgba(53, 164, 204, 0.04);
|
|
2436
2443
|
border-color: transparent;
|
|
2437
2444
|
color: #35a4cc;
|
|
2438
2445
|
}
|
|
2439
|
-
.p-splitbutton.p-button-info.p-button-text > .p-button:
|
|
2446
|
+
.p-splitbutton.p-button-info.p-button-text > .p-button:not(:disabled):active {
|
|
2440
2447
|
background: rgba(53, 164, 204, 0.16);
|
|
2441
2448
|
border-color: transparent;
|
|
2442
2449
|
color: #35a4cc;
|
|
@@ -2447,11 +2454,11 @@
|
|
|
2447
2454
|
color: #cede9c;
|
|
2448
2455
|
border: 2px solid;
|
|
2449
2456
|
}
|
|
2450
|
-
.p-splitbutton.p-button-success.p-button-outlined > .p-button:
|
|
2457
|
+
.p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2451
2458
|
background: rgba(206, 222, 156, 0.04);
|
|
2452
2459
|
color: #cede9c;
|
|
2453
2460
|
}
|
|
2454
|
-
.p-splitbutton.p-button-success.p-button-outlined > .p-button:
|
|
2461
|
+
.p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):active {
|
|
2455
2462
|
background: rgba(206, 222, 156, 0.16);
|
|
2456
2463
|
color: #cede9c;
|
|
2457
2464
|
}
|
|
@@ -2460,12 +2467,12 @@
|
|
|
2460
2467
|
color: #cede9c;
|
|
2461
2468
|
border-color: transparent;
|
|
2462
2469
|
}
|
|
2463
|
-
.p-splitbutton.p-button-success.p-button-text > .p-button:
|
|
2470
|
+
.p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):hover {
|
|
2464
2471
|
background: rgba(206, 222, 156, 0.04);
|
|
2465
2472
|
border-color: transparent;
|
|
2466
2473
|
color: #cede9c;
|
|
2467
2474
|
}
|
|
2468
|
-
.p-splitbutton.p-button-success.p-button-text > .p-button:
|
|
2475
|
+
.p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):active {
|
|
2469
2476
|
background: rgba(206, 222, 156, 0.16);
|
|
2470
2477
|
border-color: transparent;
|
|
2471
2478
|
color: #cede9c;
|
|
@@ -2476,11 +2483,11 @@
|
|
|
2476
2483
|
color: #ffe08a;
|
|
2477
2484
|
border: 2px solid;
|
|
2478
2485
|
}
|
|
2479
|
-
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:
|
|
2486
|
+
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2480
2487
|
background: rgba(255, 224, 138, 0.04);
|
|
2481
2488
|
color: #ffe08a;
|
|
2482
2489
|
}
|
|
2483
|
-
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:
|
|
2490
|
+
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):active {
|
|
2484
2491
|
background: rgba(255, 224, 138, 0.16);
|
|
2485
2492
|
color: #ffe08a;
|
|
2486
2493
|
}
|
|
@@ -2489,12 +2496,12 @@
|
|
|
2489
2496
|
color: #ffe08a;
|
|
2490
2497
|
border-color: transparent;
|
|
2491
2498
|
}
|
|
2492
|
-
.p-splitbutton.p-button-warning.p-button-text > .p-button:
|
|
2499
|
+
.p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):hover {
|
|
2493
2500
|
background: rgba(255, 224, 138, 0.04);
|
|
2494
2501
|
border-color: transparent;
|
|
2495
2502
|
color: #ffe08a;
|
|
2496
2503
|
}
|
|
2497
|
-
.p-splitbutton.p-button-warning.p-button-text > .p-button:
|
|
2504
|
+
.p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):active {
|
|
2498
2505
|
background: rgba(255, 224, 138, 0.16);
|
|
2499
2506
|
border-color: transparent;
|
|
2500
2507
|
color: #ffe08a;
|
|
@@ -2505,11 +2512,11 @@
|
|
|
2505
2512
|
color: #b09ce5;
|
|
2506
2513
|
border: 2px solid;
|
|
2507
2514
|
}
|
|
2508
|
-
.p-splitbutton.p-button-help.p-button-outlined > .p-button:
|
|
2515
|
+
.p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2509
2516
|
background: rgba(176, 156, 229, 0.04);
|
|
2510
2517
|
color: #b09ce5;
|
|
2511
2518
|
}
|
|
2512
|
-
.p-splitbutton.p-button-help.p-button-outlined > .p-button:
|
|
2519
|
+
.p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):active {
|
|
2513
2520
|
background: rgba(176, 156, 229, 0.16);
|
|
2514
2521
|
color: #b09ce5;
|
|
2515
2522
|
}
|
|
@@ -2518,12 +2525,12 @@
|
|
|
2518
2525
|
color: #b09ce5;
|
|
2519
2526
|
border-color: transparent;
|
|
2520
2527
|
}
|
|
2521
|
-
.p-splitbutton.p-button-help.p-button-text > .p-button:
|
|
2528
|
+
.p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):hover {
|
|
2522
2529
|
background: rgba(176, 156, 229, 0.04);
|
|
2523
2530
|
border-color: transparent;
|
|
2524
2531
|
color: #b09ce5;
|
|
2525
2532
|
}
|
|
2526
|
-
.p-splitbutton.p-button-help.p-button-text > .p-button:
|
|
2533
|
+
.p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):active {
|
|
2527
2534
|
background: rgba(176, 156, 229, 0.16);
|
|
2528
2535
|
border-color: transparent;
|
|
2529
2536
|
color: #b09ce5;
|
|
@@ -2534,11 +2541,11 @@
|
|
|
2534
2541
|
color: #e693a9;
|
|
2535
2542
|
border: 2px solid;
|
|
2536
2543
|
}
|
|
2537
|
-
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:
|
|
2544
|
+
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2538
2545
|
background: rgba(230, 147, 169, 0.04);
|
|
2539
2546
|
color: #e693a9;
|
|
2540
2547
|
}
|
|
2541
|
-
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:
|
|
2548
|
+
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):active {
|
|
2542
2549
|
background: rgba(230, 147, 169, 0.16);
|
|
2543
2550
|
color: #e693a9;
|
|
2544
2551
|
}
|
|
@@ -2547,12 +2554,12 @@
|
|
|
2547
2554
|
color: #e693a9;
|
|
2548
2555
|
border-color: transparent;
|
|
2549
2556
|
}
|
|
2550
|
-
.p-splitbutton.p-button-danger.p-button-text > .p-button:
|
|
2557
|
+
.p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):hover {
|
|
2551
2558
|
background: rgba(230, 147, 169, 0.04);
|
|
2552
2559
|
border-color: transparent;
|
|
2553
2560
|
color: #e693a9;
|
|
2554
2561
|
}
|
|
2555
|
-
.p-splitbutton.p-button-danger.p-button-text > .p-button:
|
|
2562
|
+
.p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):active {
|
|
2556
2563
|
background: rgba(230, 147, 169, 0.16);
|
|
2557
2564
|
border-color: transparent;
|
|
2558
2565
|
color: #e693a9;
|
|
@@ -2624,6 +2631,7 @@
|
|
|
2624
2631
|
|
|
2625
2632
|
.p-speeddial-mask {
|
|
2626
2633
|
background-color: rgba(0, 0, 0, 0.4);
|
|
2634
|
+
border-radius: 6px;
|
|
2627
2635
|
}
|
|
2628
2636
|
|
|
2629
2637
|
.p-carousel .p-carousel-content .p-carousel-prev,
|
|
@@ -2805,6 +2813,10 @@
|
|
|
2805
2813
|
background: rgba(158, 173, 230, 0.16);
|
|
2806
2814
|
color: #9eade6;
|
|
2807
2815
|
}
|
|
2816
|
+
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
|
|
2817
|
+
outline: 0.15rem solid #9eade6;
|
|
2818
|
+
outline-offset: -0.15rem;
|
|
2819
|
+
}
|
|
2808
2820
|
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
|
|
2809
2821
|
box-shadow: inset 0 2px 0 0 rgba(158, 173, 230, 0.16);
|
|
2810
2822
|
}
|
|
@@ -4073,7 +4085,7 @@
|
|
|
4073
4085
|
.p-confirm-popup:before {
|
|
4074
4086
|
border: solid transparent;
|
|
4075
4087
|
border-color: rgba(38, 50, 56, 0);
|
|
4076
|
-
border-bottom-color: #
|
|
4088
|
+
border-bottom-color: #243035;
|
|
4077
4089
|
}
|
|
4078
4090
|
.p-confirm-popup.p-confirm-popup-flipped:after {
|
|
4079
4091
|
border-top-color: #161d21;
|
|
@@ -5444,7 +5456,7 @@
|
|
|
5444
5456
|
transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
|
|
5445
5457
|
}
|
|
5446
5458
|
.p-message .p-message-close:hover {
|
|
5447
|
-
background: rgba(255, 255, 255, 0.
|
|
5459
|
+
background: rgba(255, 255, 255, 0.5);
|
|
5448
5460
|
}
|
|
5449
5461
|
.p-message .p-message-close:focus-visible {
|
|
5450
5462
|
outline: 0 none;
|
|
@@ -5554,7 +5566,7 @@
|
|
|
5554
5566
|
transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
|
|
5555
5567
|
}
|
|
5556
5568
|
.p-toast .p-toast-message .p-toast-icon-close:hover {
|
|
5557
|
-
background: rgba(255, 255, 255, 0.
|
|
5569
|
+
background: rgba(255, 255, 255, 0.5);
|
|
5558
5570
|
}
|
|
5559
5571
|
.p-toast .p-toast-message .p-toast-icon-close:focus-visible {
|
|
5560
5572
|
outline: 0 none;
|