@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
|
@@ -1670,6 +1670,9 @@
|
|
|
1670
1670
|
box-shadow: 0 0 0 1px #e0d8fc;
|
|
1671
1671
|
border-color: #b19df7;
|
|
1672
1672
|
}
|
|
1673
|
+
.p-treeselect.p-treeselect-clearable .p-treeselect-label {
|
|
1674
|
+
padding-right: 1.75rem;
|
|
1675
|
+
}
|
|
1673
1676
|
.p-treeselect .p-treeselect-label {
|
|
1674
1677
|
padding: 0.75rem 0.75rem;
|
|
1675
1678
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
@@ -1691,6 +1694,10 @@
|
|
|
1691
1694
|
border-top-right-radius: 6px;
|
|
1692
1695
|
border-bottom-right-radius: 6px;
|
|
1693
1696
|
}
|
|
1697
|
+
.p-treeselect .p-treeselect-clear-icon {
|
|
1698
|
+
color: rgba(255, 255, 255, 0.6);
|
|
1699
|
+
right: 3rem;
|
|
1700
|
+
}
|
|
1694
1701
|
.p-treeselect.p-invalid.p-component {
|
|
1695
1702
|
border-color: #ff9a9a;
|
|
1696
1703
|
}
|
|
@@ -1819,12 +1826,12 @@
|
|
|
1819
1826
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
1820
1827
|
border-radius: 6px;
|
|
1821
1828
|
}
|
|
1822
|
-
.p-button:
|
|
1829
|
+
.p-button:not(:disabled):hover {
|
|
1823
1830
|
background: #a28af5;
|
|
1824
1831
|
color: #1c1d26;
|
|
1825
1832
|
border-color: #a28af5;
|
|
1826
1833
|
}
|
|
1827
|
-
.p-button:
|
|
1834
|
+
.p-button:not(:disabled):active {
|
|
1828
1835
|
background: #9378f4;
|
|
1829
1836
|
color: #1c1d26;
|
|
1830
1837
|
border-color: #9378f4;
|
|
@@ -1834,12 +1841,12 @@
|
|
|
1834
1841
|
color: #b19df7;
|
|
1835
1842
|
border: 1px solid;
|
|
1836
1843
|
}
|
|
1837
|
-
.p-button.p-button-outlined:
|
|
1844
|
+
.p-button.p-button-outlined:not(:disabled):hover {
|
|
1838
1845
|
background: rgba(177, 157, 247, 0.04);
|
|
1839
1846
|
color: #b19df7;
|
|
1840
1847
|
border: 1px solid;
|
|
1841
1848
|
}
|
|
1842
|
-
.p-button.p-button-outlined:
|
|
1849
|
+
.p-button.p-button-outlined:not(:disabled):active {
|
|
1843
1850
|
background: rgba(177, 157, 247, 0.16);
|
|
1844
1851
|
color: #b19df7;
|
|
1845
1852
|
border: 1px solid;
|
|
@@ -1848,11 +1855,11 @@
|
|
|
1848
1855
|
color: rgba(255, 255, 255, 0.6);
|
|
1849
1856
|
border-color: rgba(255, 255, 255, 0.6);
|
|
1850
1857
|
}
|
|
1851
|
-
.p-button.p-button-outlined.p-button-plain:
|
|
1858
|
+
.p-button.p-button-outlined.p-button-plain:not(:disabled):hover {
|
|
1852
1859
|
background: rgba(255, 255, 255, 0.03);
|
|
1853
1860
|
color: rgba(255, 255, 255, 0.6);
|
|
1854
1861
|
}
|
|
1855
|
-
.p-button.p-button-outlined.p-button-plain:
|
|
1862
|
+
.p-button.p-button-outlined.p-button-plain:not(:disabled):active {
|
|
1856
1863
|
background: rgba(255, 255, 255, 0.16);
|
|
1857
1864
|
color: rgba(255, 255, 255, 0.6);
|
|
1858
1865
|
}
|
|
@@ -1861,12 +1868,12 @@
|
|
|
1861
1868
|
color: #b19df7;
|
|
1862
1869
|
border-color: transparent;
|
|
1863
1870
|
}
|
|
1864
|
-
.p-button.p-button-text:
|
|
1871
|
+
.p-button.p-button-text:not(:disabled):hover {
|
|
1865
1872
|
background: rgba(177, 157, 247, 0.04);
|
|
1866
1873
|
color: #b19df7;
|
|
1867
1874
|
border-color: transparent;
|
|
1868
1875
|
}
|
|
1869
|
-
.p-button.p-button-text:
|
|
1876
|
+
.p-button.p-button-text:not(:disabled):active {
|
|
1870
1877
|
background: rgba(177, 157, 247, 0.16);
|
|
1871
1878
|
color: #b19df7;
|
|
1872
1879
|
border-color: transparent;
|
|
@@ -1874,11 +1881,11 @@
|
|
|
1874
1881
|
.p-button.p-button-text.p-button-plain {
|
|
1875
1882
|
color: rgba(255, 255, 255, 0.6);
|
|
1876
1883
|
}
|
|
1877
|
-
.p-button.p-button-text.p-button-plain:
|
|
1884
|
+
.p-button.p-button-text.p-button-plain:not(:disabled):hover {
|
|
1878
1885
|
background: rgba(255, 255, 255, 0.03);
|
|
1879
1886
|
color: rgba(255, 255, 255, 0.6);
|
|
1880
1887
|
}
|
|
1881
|
-
.p-button.p-button-text.p-button-plain:
|
|
1888
|
+
.p-button.p-button-text.p-button-plain:not(:disabled):active {
|
|
1882
1889
|
background: rgba(255, 255, 255, 0.16);
|
|
1883
1890
|
color: rgba(255, 255, 255, 0.6);
|
|
1884
1891
|
}
|
|
@@ -1976,15 +1983,15 @@
|
|
|
1976
1983
|
background: #d4ea93;
|
|
1977
1984
|
border: 1px solid #d4ea93;
|
|
1978
1985
|
}
|
|
1979
|
-
.p-button.p-button-secondary:
|
|
1986
|
+
.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 {
|
|
1980
1987
|
background: #c7e473;
|
|
1981
1988
|
color: #1d1e27;
|
|
1982
1989
|
border-color: #c7e473;
|
|
1983
1990
|
}
|
|
1984
|
-
.p-button.p-button-secondary:
|
|
1991
|
+
.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 {
|
|
1985
1992
|
box-shadow: 0 0 0 1px #e1f0b3;
|
|
1986
1993
|
}
|
|
1987
|
-
.p-button.p-button-secondary:
|
|
1994
|
+
.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 {
|
|
1988
1995
|
background: #bbde53;
|
|
1989
1996
|
color: #1d1e27;
|
|
1990
1997
|
border-color: #bbde53;
|
|
@@ -1994,12 +2001,12 @@
|
|
|
1994
2001
|
color: #d4ea93;
|
|
1995
2002
|
border: 1px solid;
|
|
1996
2003
|
}
|
|
1997
|
-
.p-button.p-button-secondary.p-button-outlined:
|
|
2004
|
+
.p-button.p-button-secondary.p-button-outlined:not(:disabled):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 {
|
|
1998
2005
|
background: rgba(212, 234, 147, 0.04);
|
|
1999
2006
|
color: #d4ea93;
|
|
2000
2007
|
border: 1px solid;
|
|
2001
2008
|
}
|
|
2002
|
-
.p-button.p-button-secondary.p-button-outlined:
|
|
2009
|
+
.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 {
|
|
2003
2010
|
background: rgba(212, 234, 147, 0.16);
|
|
2004
2011
|
color: #d4ea93;
|
|
2005
2012
|
border: 1px solid;
|
|
@@ -2009,12 +2016,12 @@
|
|
|
2009
2016
|
color: #d4ea93;
|
|
2010
2017
|
border-color: transparent;
|
|
2011
2018
|
}
|
|
2012
|
-
.p-button.p-button-secondary.p-button-text:
|
|
2019
|
+
.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 {
|
|
2013
2020
|
background: rgba(212, 234, 147, 0.04);
|
|
2014
2021
|
border-color: transparent;
|
|
2015
2022
|
color: #d4ea93;
|
|
2016
2023
|
}
|
|
2017
|
-
.p-button.p-button-secondary.p-button-text:
|
|
2024
|
+
.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 {
|
|
2018
2025
|
background: rgba(212, 234, 147, 0.16);
|
|
2019
2026
|
border-color: transparent;
|
|
2020
2027
|
color: #d4ea93;
|
|
@@ -2025,15 +2032,15 @@
|
|
|
2025
2032
|
background: #9bcaff;
|
|
2026
2033
|
border: 1px solid #9bcaff;
|
|
2027
2034
|
}
|
|
2028
|
-
.p-button.p-button-info:
|
|
2035
|
+
.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 {
|
|
2029
2036
|
background: #72b4ff;
|
|
2030
2037
|
color: #1d1e27;
|
|
2031
2038
|
border-color: #72b4ff;
|
|
2032
2039
|
}
|
|
2033
|
-
.p-button.p-button-info:
|
|
2040
|
+
.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 {
|
|
2034
2041
|
box-shadow: 0 0 0 1px #b9daff;
|
|
2035
2042
|
}
|
|
2036
|
-
.p-button.p-button-info:
|
|
2043
|
+
.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 {
|
|
2037
2044
|
background: #499fff;
|
|
2038
2045
|
color: #1d1e27;
|
|
2039
2046
|
border-color: #499fff;
|
|
@@ -2043,12 +2050,12 @@
|
|
|
2043
2050
|
color: #9bcaff;
|
|
2044
2051
|
border: 1px solid;
|
|
2045
2052
|
}
|
|
2046
|
-
.p-button.p-button-info.p-button-outlined:
|
|
2053
|
+
.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 {
|
|
2047
2054
|
background: rgba(155, 202, 255, 0.04);
|
|
2048
2055
|
color: #9bcaff;
|
|
2049
2056
|
border: 1px solid;
|
|
2050
2057
|
}
|
|
2051
|
-
.p-button.p-button-info.p-button-outlined:
|
|
2058
|
+
.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 {
|
|
2052
2059
|
background: rgba(155, 202, 255, 0.16);
|
|
2053
2060
|
color: #9bcaff;
|
|
2054
2061
|
border: 1px solid;
|
|
@@ -2058,12 +2065,12 @@
|
|
|
2058
2065
|
color: #9bcaff;
|
|
2059
2066
|
border-color: transparent;
|
|
2060
2067
|
}
|
|
2061
|
-
.p-button.p-button-info.p-button-text:
|
|
2068
|
+
.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 {
|
|
2062
2069
|
background: rgba(155, 202, 255, 0.04);
|
|
2063
2070
|
border-color: transparent;
|
|
2064
2071
|
color: #9bcaff;
|
|
2065
2072
|
}
|
|
2066
|
-
.p-button.p-button-info.p-button-text:
|
|
2073
|
+
.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 {
|
|
2067
2074
|
background: rgba(155, 202, 255, 0.16);
|
|
2068
2075
|
border-color: transparent;
|
|
2069
2076
|
color: #9bcaff;
|
|
@@ -2074,15 +2081,15 @@
|
|
|
2074
2081
|
background: #93deac;
|
|
2075
2082
|
border: 1px solid #93deac;
|
|
2076
2083
|
}
|
|
2077
|
-
.p-button.p-button-success:
|
|
2084
|
+
.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 {
|
|
2078
2085
|
background: #77d596;
|
|
2079
2086
|
color: #1d1e27;
|
|
2080
2087
|
border-color: #77d596;
|
|
2081
2088
|
}
|
|
2082
|
-
.p-button.p-button-success:
|
|
2089
|
+
.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 {
|
|
2083
2090
|
box-shadow: 0 0 0 1px #b3e8c5;
|
|
2084
2091
|
}
|
|
2085
|
-
.p-button.p-button-success:
|
|
2092
|
+
.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 {
|
|
2086
2093
|
background: #5acd81;
|
|
2087
2094
|
color: #1d1e27;
|
|
2088
2095
|
border-color: #5acd81;
|
|
@@ -2092,12 +2099,12 @@
|
|
|
2092
2099
|
color: #93deac;
|
|
2093
2100
|
border: 1px solid;
|
|
2094
2101
|
}
|
|
2095
|
-
.p-button.p-button-success.p-button-outlined:
|
|
2102
|
+
.p-button.p-button-success.p-button-outlined:not(:disabled):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 {
|
|
2096
2103
|
background: rgba(147, 222, 172, 0.04);
|
|
2097
2104
|
color: #93deac;
|
|
2098
2105
|
border: 1px solid;
|
|
2099
2106
|
}
|
|
2100
|
-
.p-button.p-button-success.p-button-outlined:
|
|
2107
|
+
.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 {
|
|
2101
2108
|
background: rgba(147, 222, 172, 0.16);
|
|
2102
2109
|
color: #93deac;
|
|
2103
2110
|
border: 1px solid;
|
|
@@ -2107,12 +2114,12 @@
|
|
|
2107
2114
|
color: #93deac;
|
|
2108
2115
|
border-color: transparent;
|
|
2109
2116
|
}
|
|
2110
|
-
.p-button.p-button-success.p-button-text:
|
|
2117
|
+
.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 {
|
|
2111
2118
|
background: rgba(147, 222, 172, 0.04);
|
|
2112
2119
|
border-color: transparent;
|
|
2113
2120
|
color: #93deac;
|
|
2114
2121
|
}
|
|
2115
|
-
.p-button.p-button-success.p-button-text:
|
|
2122
|
+
.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 {
|
|
2116
2123
|
background: rgba(147, 222, 172, 0.16);
|
|
2117
2124
|
border-color: transparent;
|
|
2118
2125
|
color: #93deac;
|
|
@@ -2123,15 +2130,15 @@
|
|
|
2123
2130
|
background: #ffcf91;
|
|
2124
2131
|
border: 1px solid #ffcf91;
|
|
2125
2132
|
}
|
|
2126
|
-
.p-button.p-button-warning:
|
|
2133
|
+
.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 {
|
|
2127
2134
|
background: #ffbe69;
|
|
2128
2135
|
color: #1d1e27;
|
|
2129
2136
|
border-color: #ffbe69;
|
|
2130
2137
|
}
|
|
2131
|
-
.p-button.p-button-warning:
|
|
2138
|
+
.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 {
|
|
2132
2139
|
box-shadow: 0 0 0 1px #ffddb2;
|
|
2133
2140
|
}
|
|
2134
|
-
.p-button.p-button-warning:
|
|
2141
|
+
.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 {
|
|
2135
2142
|
background: #ffac41;
|
|
2136
2143
|
color: #1d1e27;
|
|
2137
2144
|
border-color: #ffac41;
|
|
@@ -2141,12 +2148,12 @@
|
|
|
2141
2148
|
color: #ffcf91;
|
|
2142
2149
|
border: 1px solid;
|
|
2143
2150
|
}
|
|
2144
|
-
.p-button.p-button-warning.p-button-outlined:
|
|
2151
|
+
.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 {
|
|
2145
2152
|
background: rgba(255, 207, 145, 0.04);
|
|
2146
2153
|
color: #ffcf91;
|
|
2147
2154
|
border: 1px solid;
|
|
2148
2155
|
}
|
|
2149
|
-
.p-button.p-button-warning.p-button-outlined:
|
|
2156
|
+
.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 {
|
|
2150
2157
|
background: rgba(255, 207, 145, 0.16);
|
|
2151
2158
|
color: #ffcf91;
|
|
2152
2159
|
border: 1px solid;
|
|
@@ -2156,12 +2163,12 @@
|
|
|
2156
2163
|
color: #ffcf91;
|
|
2157
2164
|
border-color: transparent;
|
|
2158
2165
|
}
|
|
2159
|
-
.p-button.p-button-warning.p-button-text:
|
|
2166
|
+
.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 {
|
|
2160
2167
|
background: rgba(255, 207, 145, 0.04);
|
|
2161
2168
|
border-color: transparent;
|
|
2162
2169
|
color: #ffcf91;
|
|
2163
2170
|
}
|
|
2164
|
-
.p-button.p-button-warning.p-button-text:
|
|
2171
|
+
.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 {
|
|
2165
2172
|
background: rgba(255, 207, 145, 0.16);
|
|
2166
2173
|
border-color: transparent;
|
|
2167
2174
|
color: #ffcf91;
|
|
@@ -2172,15 +2179,15 @@
|
|
|
2172
2179
|
background: #86e0e7;
|
|
2173
2180
|
border: 1px solid #86e0e7;
|
|
2174
2181
|
}
|
|
2175
|
-
.p-button.p-button-help:
|
|
2182
|
+
.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 {
|
|
2176
2183
|
background: #68d8e1;
|
|
2177
2184
|
color: #1d1e27;
|
|
2178
2185
|
border-color: #68d8e1;
|
|
2179
2186
|
}
|
|
2180
|
-
.p-button.p-button-help:
|
|
2187
|
+
.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 {
|
|
2181
2188
|
box-shadow: 0 0 0 1px #aae9ee;
|
|
2182
2189
|
}
|
|
2183
|
-
.p-button.p-button-help:
|
|
2190
|
+
.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 {
|
|
2184
2191
|
background: #49d0db;
|
|
2185
2192
|
color: #1d1e27;
|
|
2186
2193
|
border-color: #49d0db;
|
|
@@ -2190,12 +2197,12 @@
|
|
|
2190
2197
|
color: #86e0e7;
|
|
2191
2198
|
border: 1px solid;
|
|
2192
2199
|
}
|
|
2193
|
-
.p-button.p-button-help.p-button-outlined:
|
|
2200
|
+
.p-button.p-button-help.p-button-outlined:not(:disabled):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 {
|
|
2194
2201
|
background: rgba(134, 224, 231, 0.04);
|
|
2195
2202
|
color: #86e0e7;
|
|
2196
2203
|
border: 1px solid;
|
|
2197
2204
|
}
|
|
2198
|
-
.p-button.p-button-help.p-button-outlined:
|
|
2205
|
+
.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 {
|
|
2199
2206
|
background: rgba(134, 224, 231, 0.16);
|
|
2200
2207
|
color: #86e0e7;
|
|
2201
2208
|
border: 1px solid;
|
|
@@ -2205,12 +2212,12 @@
|
|
|
2205
2212
|
color: #86e0e7;
|
|
2206
2213
|
border-color: transparent;
|
|
2207
2214
|
}
|
|
2208
|
-
.p-button.p-button-help.p-button-text:
|
|
2215
|
+
.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 {
|
|
2209
2216
|
background: rgba(134, 224, 231, 0.04);
|
|
2210
2217
|
border-color: transparent;
|
|
2211
2218
|
color: #86e0e7;
|
|
2212
2219
|
}
|
|
2213
|
-
.p-button.p-button-help.p-button-text:
|
|
2220
|
+
.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 {
|
|
2214
2221
|
background: rgba(134, 224, 231, 0.16);
|
|
2215
2222
|
border-color: transparent;
|
|
2216
2223
|
color: #86e0e7;
|
|
@@ -2221,15 +2228,15 @@
|
|
|
2221
2228
|
background: #eb9a9c;
|
|
2222
2229
|
border: 1px solid #eb9a9c;
|
|
2223
2230
|
}
|
|
2224
|
-
.p-button.p-button-danger:
|
|
2231
|
+
.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 {
|
|
2225
2232
|
background: #e57a7c;
|
|
2226
2233
|
color: #1d1e27;
|
|
2227
2234
|
border-color: #e57a7c;
|
|
2228
2235
|
}
|
|
2229
|
-
.p-button.p-button-danger:
|
|
2236
|
+
.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 {
|
|
2230
2237
|
box-shadow: 0 0 0 1px #f1b8ba;
|
|
2231
2238
|
}
|
|
2232
|
-
.p-button.p-button-danger:
|
|
2239
|
+
.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 {
|
|
2233
2240
|
background: #de595c;
|
|
2234
2241
|
color: #1d1e27;
|
|
2235
2242
|
border-color: #de595c;
|
|
@@ -2239,12 +2246,12 @@
|
|
|
2239
2246
|
color: #eb9a9c;
|
|
2240
2247
|
border: 1px solid;
|
|
2241
2248
|
}
|
|
2242
|
-
.p-button.p-button-danger.p-button-outlined:
|
|
2249
|
+
.p-button.p-button-danger.p-button-outlined:not(:disabled):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 {
|
|
2243
2250
|
background: rgba(235, 154, 156, 0.04);
|
|
2244
2251
|
color: #eb9a9c;
|
|
2245
2252
|
border: 1px solid;
|
|
2246
2253
|
}
|
|
2247
|
-
.p-button.p-button-danger.p-button-outlined:
|
|
2254
|
+
.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 {
|
|
2248
2255
|
background: rgba(235, 154, 156, 0.16);
|
|
2249
2256
|
color: #eb9a9c;
|
|
2250
2257
|
border: 1px solid;
|
|
@@ -2254,12 +2261,12 @@
|
|
|
2254
2261
|
color: #eb9a9c;
|
|
2255
2262
|
border-color: transparent;
|
|
2256
2263
|
}
|
|
2257
|
-
.p-button.p-button-danger.p-button-text:
|
|
2264
|
+
.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 {
|
|
2258
2265
|
background: rgba(235, 154, 156, 0.04);
|
|
2259
2266
|
border-color: transparent;
|
|
2260
2267
|
color: #eb9a9c;
|
|
2261
2268
|
}
|
|
2262
|
-
.p-button.p-button-danger.p-button-text:
|
|
2269
|
+
.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 {
|
|
2263
2270
|
background: rgba(235, 154, 156, 0.16);
|
|
2264
2271
|
border-color: transparent;
|
|
2265
2272
|
color: #eb9a9c;
|
|
@@ -2270,20 +2277,20 @@
|
|
|
2270
2277
|
background: transparent;
|
|
2271
2278
|
border: transparent;
|
|
2272
2279
|
}
|
|
2273
|
-
.p-button.p-button-link:
|
|
2280
|
+
.p-button.p-button-link:not(:disabled):hover {
|
|
2274
2281
|
background: transparent;
|
|
2275
2282
|
color: #b19df7;
|
|
2276
2283
|
border-color: transparent;
|
|
2277
2284
|
}
|
|
2278
|
-
.p-button.p-button-link:
|
|
2285
|
+
.p-button.p-button-link:not(:disabled):hover .p-button-label {
|
|
2279
2286
|
text-decoration: underline;
|
|
2280
2287
|
}
|
|
2281
|
-
.p-button.p-button-link:
|
|
2288
|
+
.p-button.p-button-link:not(:disabled):focus {
|
|
2282
2289
|
background: transparent;
|
|
2283
2290
|
box-shadow: 0 0 0 1px #e0d8fc;
|
|
2284
2291
|
border-color: transparent;
|
|
2285
2292
|
}
|
|
2286
|
-
.p-button.p-button-link:
|
|
2293
|
+
.p-button.p-button-link:not(:disabled):active {
|
|
2287
2294
|
background: transparent;
|
|
2288
2295
|
color: #b19df7;
|
|
2289
2296
|
border-color: transparent;
|
|
@@ -2297,11 +2304,11 @@
|
|
|
2297
2304
|
color: #b19df7;
|
|
2298
2305
|
border: 1px solid;
|
|
2299
2306
|
}
|
|
2300
|
-
.p-splitbutton.p-button-outlined > .p-button:
|
|
2307
|
+
.p-splitbutton.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2301
2308
|
background: rgba(177, 157, 247, 0.04);
|
|
2302
2309
|
color: #b19df7;
|
|
2303
2310
|
}
|
|
2304
|
-
.p-splitbutton.p-button-outlined > .p-button:
|
|
2311
|
+
.p-splitbutton.p-button-outlined > .p-button:not(:disabled):active {
|
|
2305
2312
|
background: rgba(177, 157, 247, 0.16);
|
|
2306
2313
|
color: #b19df7;
|
|
2307
2314
|
}
|
|
@@ -2309,11 +2316,11 @@
|
|
|
2309
2316
|
color: rgba(255, 255, 255, 0.6);
|
|
2310
2317
|
border-color: rgba(255, 255, 255, 0.6);
|
|
2311
2318
|
}
|
|
2312
|
-
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:
|
|
2319
|
+
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:not(:disabled):hover {
|
|
2313
2320
|
background: rgba(255, 255, 255, 0.03);
|
|
2314
2321
|
color: rgba(255, 255, 255, 0.6);
|
|
2315
2322
|
}
|
|
2316
|
-
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:
|
|
2323
|
+
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:not(:disabled):active {
|
|
2317
2324
|
background: rgba(255, 255, 255, 0.16);
|
|
2318
2325
|
color: rgba(255, 255, 255, 0.6);
|
|
2319
2326
|
}
|
|
@@ -2322,12 +2329,12 @@
|
|
|
2322
2329
|
color: #b19df7;
|
|
2323
2330
|
border-color: transparent;
|
|
2324
2331
|
}
|
|
2325
|
-
.p-splitbutton.p-button-text > .p-button:
|
|
2332
|
+
.p-splitbutton.p-button-text > .p-button:not(:disabled):hover {
|
|
2326
2333
|
background: rgba(177, 157, 247, 0.04);
|
|
2327
2334
|
color: #b19df7;
|
|
2328
2335
|
border-color: transparent;
|
|
2329
2336
|
}
|
|
2330
|
-
.p-splitbutton.p-button-text > .p-button:
|
|
2337
|
+
.p-splitbutton.p-button-text > .p-button:not(:disabled):active {
|
|
2331
2338
|
background: rgba(177, 157, 247, 0.16);
|
|
2332
2339
|
color: #b19df7;
|
|
2333
2340
|
border-color: transparent;
|
|
@@ -2335,11 +2342,11 @@
|
|
|
2335
2342
|
.p-splitbutton.p-button-text.p-button-plain > .p-button {
|
|
2336
2343
|
color: rgba(255, 255, 255, 0.6);
|
|
2337
2344
|
}
|
|
2338
|
-
.p-splitbutton.p-button-text.p-button-plain > .p-button:
|
|
2345
|
+
.p-splitbutton.p-button-text.p-button-plain > .p-button:not(:disabled):hover {
|
|
2339
2346
|
background: rgba(255, 255, 255, 0.03);
|
|
2340
2347
|
color: rgba(255, 255, 255, 0.6);
|
|
2341
2348
|
}
|
|
2342
|
-
.p-splitbutton.p-button-text.p-button-plain > .p-button:
|
|
2349
|
+
.p-splitbutton.p-button-text.p-button-plain > .p-button:not(:disabled):active {
|
|
2343
2350
|
background: rgba(255, 255, 255, 0.16);
|
|
2344
2351
|
color: rgba(255, 255, 255, 0.6);
|
|
2345
2352
|
}
|
|
@@ -2381,11 +2388,11 @@
|
|
|
2381
2388
|
color: #d4ea93;
|
|
2382
2389
|
border: 1px solid;
|
|
2383
2390
|
}
|
|
2384
|
-
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:
|
|
2391
|
+
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2385
2392
|
background: rgba(212, 234, 147, 0.04);
|
|
2386
2393
|
color: #d4ea93;
|
|
2387
2394
|
}
|
|
2388
|
-
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:
|
|
2395
|
+
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):active {
|
|
2389
2396
|
background: rgba(212, 234, 147, 0.16);
|
|
2390
2397
|
color: #d4ea93;
|
|
2391
2398
|
}
|
|
@@ -2394,12 +2401,12 @@
|
|
|
2394
2401
|
color: #d4ea93;
|
|
2395
2402
|
border-color: transparent;
|
|
2396
2403
|
}
|
|
2397
|
-
.p-splitbutton.p-button-secondary.p-button-text > .p-button:
|
|
2404
|
+
.p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):hover {
|
|
2398
2405
|
background: rgba(212, 234, 147, 0.04);
|
|
2399
2406
|
border-color: transparent;
|
|
2400
2407
|
color: #d4ea93;
|
|
2401
2408
|
}
|
|
2402
|
-
.p-splitbutton.p-button-secondary.p-button-text > .p-button:
|
|
2409
|
+
.p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):active {
|
|
2403
2410
|
background: rgba(212, 234, 147, 0.16);
|
|
2404
2411
|
border-color: transparent;
|
|
2405
2412
|
color: #d4ea93;
|
|
@@ -2410,11 +2417,11 @@
|
|
|
2410
2417
|
color: #9bcaff;
|
|
2411
2418
|
border: 1px solid;
|
|
2412
2419
|
}
|
|
2413
|
-
.p-splitbutton.p-button-info.p-button-outlined > .p-button:
|
|
2420
|
+
.p-splitbutton.p-button-info.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2414
2421
|
background: rgba(155, 202, 255, 0.04);
|
|
2415
2422
|
color: #9bcaff;
|
|
2416
2423
|
}
|
|
2417
|
-
.p-splitbutton.p-button-info.p-button-outlined > .p-button:
|
|
2424
|
+
.p-splitbutton.p-button-info.p-button-outlined > .p-button:not(:disabled):active {
|
|
2418
2425
|
background: rgba(155, 202, 255, 0.16);
|
|
2419
2426
|
color: #9bcaff;
|
|
2420
2427
|
}
|
|
@@ -2423,12 +2430,12 @@
|
|
|
2423
2430
|
color: #9bcaff;
|
|
2424
2431
|
border-color: transparent;
|
|
2425
2432
|
}
|
|
2426
|
-
.p-splitbutton.p-button-info.p-button-text > .p-button:
|
|
2433
|
+
.p-splitbutton.p-button-info.p-button-text > .p-button:not(:disabled):hover {
|
|
2427
2434
|
background: rgba(155, 202, 255, 0.04);
|
|
2428
2435
|
border-color: transparent;
|
|
2429
2436
|
color: #9bcaff;
|
|
2430
2437
|
}
|
|
2431
|
-
.p-splitbutton.p-button-info.p-button-text > .p-button:
|
|
2438
|
+
.p-splitbutton.p-button-info.p-button-text > .p-button:not(:disabled):active {
|
|
2432
2439
|
background: rgba(155, 202, 255, 0.16);
|
|
2433
2440
|
border-color: transparent;
|
|
2434
2441
|
color: #9bcaff;
|
|
@@ -2439,11 +2446,11 @@
|
|
|
2439
2446
|
color: #93deac;
|
|
2440
2447
|
border: 1px solid;
|
|
2441
2448
|
}
|
|
2442
|
-
.p-splitbutton.p-button-success.p-button-outlined > .p-button:
|
|
2449
|
+
.p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2443
2450
|
background: rgba(147, 222, 172, 0.04);
|
|
2444
2451
|
color: #93deac;
|
|
2445
2452
|
}
|
|
2446
|
-
.p-splitbutton.p-button-success.p-button-outlined > .p-button:
|
|
2453
|
+
.p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):active {
|
|
2447
2454
|
background: rgba(147, 222, 172, 0.16);
|
|
2448
2455
|
color: #93deac;
|
|
2449
2456
|
}
|
|
@@ -2452,12 +2459,12 @@
|
|
|
2452
2459
|
color: #93deac;
|
|
2453
2460
|
border-color: transparent;
|
|
2454
2461
|
}
|
|
2455
|
-
.p-splitbutton.p-button-success.p-button-text > .p-button:
|
|
2462
|
+
.p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):hover {
|
|
2456
2463
|
background: rgba(147, 222, 172, 0.04);
|
|
2457
2464
|
border-color: transparent;
|
|
2458
2465
|
color: #93deac;
|
|
2459
2466
|
}
|
|
2460
|
-
.p-splitbutton.p-button-success.p-button-text > .p-button:
|
|
2467
|
+
.p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):active {
|
|
2461
2468
|
background: rgba(147, 222, 172, 0.16);
|
|
2462
2469
|
border-color: transparent;
|
|
2463
2470
|
color: #93deac;
|
|
@@ -2468,11 +2475,11 @@
|
|
|
2468
2475
|
color: #ffcf91;
|
|
2469
2476
|
border: 1px solid;
|
|
2470
2477
|
}
|
|
2471
|
-
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:
|
|
2478
|
+
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2472
2479
|
background: rgba(255, 207, 145, 0.04);
|
|
2473
2480
|
color: #ffcf91;
|
|
2474
2481
|
}
|
|
2475
|
-
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:
|
|
2482
|
+
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):active {
|
|
2476
2483
|
background: rgba(255, 207, 145, 0.16);
|
|
2477
2484
|
color: #ffcf91;
|
|
2478
2485
|
}
|
|
@@ -2481,12 +2488,12 @@
|
|
|
2481
2488
|
color: #ffcf91;
|
|
2482
2489
|
border-color: transparent;
|
|
2483
2490
|
}
|
|
2484
|
-
.p-splitbutton.p-button-warning.p-button-text > .p-button:
|
|
2491
|
+
.p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):hover {
|
|
2485
2492
|
background: rgba(255, 207, 145, 0.04);
|
|
2486
2493
|
border-color: transparent;
|
|
2487
2494
|
color: #ffcf91;
|
|
2488
2495
|
}
|
|
2489
|
-
.p-splitbutton.p-button-warning.p-button-text > .p-button:
|
|
2496
|
+
.p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):active {
|
|
2490
2497
|
background: rgba(255, 207, 145, 0.16);
|
|
2491
2498
|
border-color: transparent;
|
|
2492
2499
|
color: #ffcf91;
|
|
@@ -2497,11 +2504,11 @@
|
|
|
2497
2504
|
color: #86e0e7;
|
|
2498
2505
|
border: 1px solid;
|
|
2499
2506
|
}
|
|
2500
|
-
.p-splitbutton.p-button-help.p-button-outlined > .p-button:
|
|
2507
|
+
.p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2501
2508
|
background: rgba(134, 224, 231, 0.04);
|
|
2502
2509
|
color: #86e0e7;
|
|
2503
2510
|
}
|
|
2504
|
-
.p-splitbutton.p-button-help.p-button-outlined > .p-button:
|
|
2511
|
+
.p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):active {
|
|
2505
2512
|
background: rgba(134, 224, 231, 0.16);
|
|
2506
2513
|
color: #86e0e7;
|
|
2507
2514
|
}
|
|
@@ -2510,12 +2517,12 @@
|
|
|
2510
2517
|
color: #86e0e7;
|
|
2511
2518
|
border-color: transparent;
|
|
2512
2519
|
}
|
|
2513
|
-
.p-splitbutton.p-button-help.p-button-text > .p-button:
|
|
2520
|
+
.p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):hover {
|
|
2514
2521
|
background: rgba(134, 224, 231, 0.04);
|
|
2515
2522
|
border-color: transparent;
|
|
2516
2523
|
color: #86e0e7;
|
|
2517
2524
|
}
|
|
2518
|
-
.p-splitbutton.p-button-help.p-button-text > .p-button:
|
|
2525
|
+
.p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):active {
|
|
2519
2526
|
background: rgba(134, 224, 231, 0.16);
|
|
2520
2527
|
border-color: transparent;
|
|
2521
2528
|
color: #86e0e7;
|
|
@@ -2526,11 +2533,11 @@
|
|
|
2526
2533
|
color: #eb9a9c;
|
|
2527
2534
|
border: 1px solid;
|
|
2528
2535
|
}
|
|
2529
|
-
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:
|
|
2536
|
+
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2530
2537
|
background: rgba(235, 154, 156, 0.04);
|
|
2531
2538
|
color: #eb9a9c;
|
|
2532
2539
|
}
|
|
2533
|
-
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:
|
|
2540
|
+
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):active {
|
|
2534
2541
|
background: rgba(235, 154, 156, 0.16);
|
|
2535
2542
|
color: #eb9a9c;
|
|
2536
2543
|
}
|
|
@@ -2539,12 +2546,12 @@
|
|
|
2539
2546
|
color: #eb9a9c;
|
|
2540
2547
|
border-color: transparent;
|
|
2541
2548
|
}
|
|
2542
|
-
.p-splitbutton.p-button-danger.p-button-text > .p-button:
|
|
2549
|
+
.p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):hover {
|
|
2543
2550
|
background: rgba(235, 154, 156, 0.04);
|
|
2544
2551
|
border-color: transparent;
|
|
2545
2552
|
color: #eb9a9c;
|
|
2546
2553
|
}
|
|
2547
|
-
.p-splitbutton.p-button-danger.p-button-text > .p-button:
|
|
2554
|
+
.p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):active {
|
|
2548
2555
|
background: rgba(235, 154, 156, 0.16);
|
|
2549
2556
|
border-color: transparent;
|
|
2550
2557
|
color: #eb9a9c;
|
|
@@ -2616,6 +2623,7 @@
|
|
|
2616
2623
|
|
|
2617
2624
|
.p-speeddial-mask {
|
|
2618
2625
|
background-color: rgba(0, 0, 0, 0.4);
|
|
2626
|
+
border-radius: 6px;
|
|
2619
2627
|
}
|
|
2620
2628
|
|
|
2621
2629
|
.p-carousel .p-carousel-content .p-carousel-prev,
|
|
@@ -2797,6 +2805,10 @@
|
|
|
2797
2805
|
background: rgba(177, 157, 247, 0.16);
|
|
2798
2806
|
color: #b19df7;
|
|
2799
2807
|
}
|
|
2808
|
+
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
|
|
2809
|
+
outline: 0.15rem solid #e0d8fc;
|
|
2810
|
+
outline-offset: -0.15rem;
|
|
2811
|
+
}
|
|
2800
2812
|
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
|
|
2801
2813
|
box-shadow: inset 0 2px 0 0 rgba(177, 157, 247, 0.16);
|
|
2802
2814
|
}
|
|
@@ -4040,7 +4052,7 @@
|
|
|
4040
4052
|
.p-confirm-popup:before {
|
|
4041
4053
|
border: solid transparent;
|
|
4042
4054
|
border-color: rgba(62, 64, 83, 0);
|
|
4043
|
-
border-bottom-color: #
|
|
4055
|
+
border-bottom-color: #3b3d4f;
|
|
4044
4056
|
}
|
|
4045
4057
|
.p-confirm-popup.p-confirm-popup-flipped:after {
|
|
4046
4058
|
border-top-color: #282936;
|
|
@@ -5387,7 +5399,7 @@
|
|
|
5387
5399
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
5388
5400
|
}
|
|
5389
5401
|
.p-message .p-message-close:hover {
|
|
5390
|
-
background: rgba(255, 255, 255, 0.
|
|
5402
|
+
background: rgba(255, 255, 255, 0.5);
|
|
5391
5403
|
}
|
|
5392
5404
|
.p-message .p-message-close:focus-visible {
|
|
5393
5405
|
outline: 0 none;
|
|
@@ -5497,7 +5509,7 @@
|
|
|
5497
5509
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
5498
5510
|
}
|
|
5499
5511
|
.p-toast .p-toast-message .p-toast-icon-close:hover {
|
|
5500
|
-
background: rgba(255, 255, 255, 0.
|
|
5512
|
+
background: rgba(255, 255, 255, 0.5);
|
|
5501
5513
|
}
|
|
5502
5514
|
.p-toast .p-toast-message .p-toast-icon-close:focus-visible {
|
|
5503
5515
|
outline: 0 none;
|
|
@@ -5960,4 +5972,9 @@
|
|
|
5960
5972
|
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
|
|
5961
5973
|
box-shadow: inset 0 -2px 0 0 #b19df7;
|
|
5962
5974
|
}
|
|
5975
|
+
|
|
5976
|
+
.p-selectbutton > .p-button,
|
|
5977
|
+
.p-togglebutton.p-button {
|
|
5978
|
+
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
5979
|
+
}
|
|
5963
5980
|
}
|