@alpaca-headless/alpaca-headless-nextjs 1.0.27 → 1.0.129
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/client-components/ClientLink.js +36 -0
- package/dist/cjs/client-components/MultiComponentEditor.js +26 -0
- package/dist/cjs/client-components/index.js +19 -0
- package/dist/cjs/components/Link.js +1 -1
- package/dist/cjs/components/LinkEditor.js +47 -1
- package/dist/cjs/components/Picture.js +14 -12
- package/dist/cjs/components/PictureEditor.js +20 -39
- package/dist/cjs/components/Placeholder.js +51 -9
- package/dist/cjs/components/RichText.js +1 -1
- package/dist/cjs/components/RichTextEditor.js +17 -2
- package/dist/cjs/components/TextEditor.js +15 -3
- package/dist/cjs/components/Translate.js +1 -1
- package/dist/cjs/{editor → components}/TranslateEditor.js +5 -2
- package/dist/cjs/editor/AiPopup.js +33 -0
- package/dist/cjs/editor/AiTerminal.js +42 -18
- package/dist/cjs/editor/ComponentInfo.js +4 -3
- package/dist/cjs/editor/ComponentPalette.js +12 -68
- package/dist/cjs/editor/ComponentTree.js +76 -59
- package/dist/cjs/editor/ConfirmationDialog.js +31 -0
- package/dist/cjs/editor/ContentTree.js +144 -49
- package/dist/cjs/editor/Debug.js +12 -2
- package/dist/cjs/editor/DialogButtons.js +7 -0
- package/dist/cjs/editor/DictionaryEditor.js +14 -8
- package/dist/cjs/editor/EditFrame.js +88 -20
- package/dist/cjs/editor/EditHistory.js +17 -4
- package/dist/cjs/editor/Editor.js +1 -1
- package/dist/cjs/editor/EditorClient.js +506 -237
- package/dist/cjs/editor/EditorClientHost.js +2 -2
- package/dist/cjs/editor/FieldList.js +30 -43
- package/dist/cjs/editor/FieldListField.js +75 -0
- package/dist/cjs/editor/FloatingToolbar.js +92 -0
- package/dist/cjs/editor/GraphQL.js +4 -6
- package/dist/cjs/editor/ItemEditor.js +9 -0
- package/dist/cjs/editor/ItemInfo.js +17 -0
- package/dist/cjs/editor/ItemNameDialog.js +37 -0
- package/dist/cjs/editor/LanguageSelector.js +1 -1
- package/dist/cjs/editor/LinkEditorDialog.js +67 -0
- package/dist/cjs/editor/MainLayout.js +24 -0
- package/dist/cjs/editor/MediaSelector.js +35 -10
- package/dist/cjs/editor/PictureEditorDialog.js +93 -0
- package/dist/cjs/editor/PlaceholderDropZone.js +48 -9
- package/dist/cjs/editor/SidebarTabs.js +47 -0
- package/dist/cjs/editor/Terminal.js +21 -11
- package/dist/cjs/editor/Utils.js +43 -0
- package/dist/cjs/editor/VersionSelector.js +1 -1
- package/dist/cjs/editor/Workbox.js +41 -0
- package/dist/cjs/editor/componentCommands.js +141 -0
- package/dist/cjs/editor/contentService.js +45 -3
- package/dist/cjs/editor/editContext.js +9 -4
- package/dist/cjs/editor/editService.js +187 -3
- package/dist/cjs/editor/fieldTypes/CheckboxEditor.js +21 -0
- package/dist/cjs/editor/fieldTypes/InternalLinkFieldEditor.js +46 -0
- package/dist/cjs/editor/fieldTypes/LinkFieldEditor.js +55 -0
- package/dist/cjs/editor/fieldTypes/MultiLineText.js +25 -0
- package/dist/cjs/editor/fieldTypes/PictureFieldEditor.js +19 -0
- package/dist/cjs/editor/fieldTypes/RichTextEditor.js +9 -4
- package/dist/cjs/editor/fieldTypes/SingleLineText.js +12 -4
- package/dist/cjs/editor/fieldTypes/TreeListEditor.js +59 -0
- package/dist/cjs/editor/ui/Section.js +8 -0
- package/dist/cjs/loadRouteData.js +24 -14
- package/dist/cjs/middleware/authorization.js +52 -0
- package/dist/cjs/middleware/index.js +17 -0
- package/dist/editor.css +530 -72
- package/dist/primereact/resources/themes/arya-blue/theme.css +103 -91
- package/dist/primereact/resources/themes/arya-green/theme.css +103 -91
- package/dist/primereact/resources/themes/arya-orange/theme.css +103 -91
- package/dist/primereact/resources/themes/arya-purple/theme.css +103 -91
- package/dist/primereact/resources/themes/bootstrap4-dark-blue/theme.css +103 -91
- package/dist/primereact/resources/themes/bootstrap4-dark-purple/theme.css +103 -91
- package/dist/primereact/resources/themes/bootstrap4-light-blue/theme.css +102 -90
- package/dist/primereact/resources/themes/bootstrap4-light-purple/theme.css +102 -90
- package/dist/primereact/resources/themes/fluent-light/theme.css +103 -91
- package/dist/primereact/resources/themes/lara-dark-amber/fonts/Inter-italic.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-dark-amber/fonts/Inter-roman.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-dark-amber/theme.css +6049 -0
- package/dist/primereact/resources/themes/lara-dark-blue/theme.css +1006 -955
- package/dist/primereact/resources/themes/lara-dark-cyan/fonts/Inter-italic.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-dark-cyan/fonts/Inter-roman.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-dark-cyan/theme.css +6049 -0
- package/dist/primereact/resources/themes/lara-dark-green/fonts/Inter-italic.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-dark-green/fonts/Inter-roman.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-dark-green/theme.css +6049 -0
- package/dist/primereact/resources/themes/lara-dark-indigo/theme.css +1006 -955
- package/dist/primereact/resources/themes/lara-dark-pink/fonts/Inter-italic.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-dark-pink/fonts/Inter-roman.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-dark-pink/theme.css +6049 -0
- package/dist/primereact/resources/themes/lara-dark-purple/theme.css +1006 -955
- package/dist/primereact/resources/themes/lara-dark-teal/theme.css +1006 -955
- package/dist/primereact/resources/themes/lara-light-amber/fonts/Inter-italic.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-light-amber/fonts/Inter-roman.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-light-amber/theme.css +6041 -0
- package/dist/primereact/resources/themes/lara-light-blue/theme.css +842 -799
- package/dist/primereact/resources/themes/lara-light-cyan/fonts/Inter-italic.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-light-cyan/fonts/Inter-roman.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-light-cyan/theme.css +6041 -0
- package/dist/primereact/resources/themes/lara-light-green/fonts/Inter-italic.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-light-green/fonts/Inter-roman.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-light-green/theme.css +6041 -0
- package/dist/primereact/resources/themes/lara-light-indigo/theme.css +842 -799
- package/dist/primereact/resources/themes/lara-light-pink/fonts/Inter-italic.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-light-pink/fonts/Inter-roman.var.woff2 +0 -0
- package/dist/primereact/resources/themes/lara-light-pink/theme.css +6041 -0
- package/dist/primereact/resources/themes/lara-light-purple/theme.css +842 -799
- package/dist/primereact/resources/themes/lara-light-teal/theme.css +1115 -1072
- package/dist/primereact/resources/themes/luna-amber/theme.css +103 -91
- package/dist/primereact/resources/themes/luna-blue/theme.css +103 -91
- package/dist/primereact/resources/themes/luna-green/theme.css +103 -91
- package/dist/primereact/resources/themes/luna-pink/theme.css +103 -91
- package/dist/primereact/resources/themes/md-dark-deeppurple/theme.css +147 -135
- package/dist/primereact/resources/themes/md-dark-indigo/theme.css +147 -135
- package/dist/primereact/resources/themes/md-light-deeppurple/theme.css +147 -135
- package/dist/primereact/resources/themes/md-light-indigo/theme.css +147 -135
- package/dist/primereact/resources/themes/mdc-dark-deeppurple/theme.css +147 -135
- package/dist/primereact/resources/themes/mdc-dark-indigo/theme.css +147 -135
- package/dist/primereact/resources/themes/mdc-light-deeppurple/theme.css +147 -135
- package/dist/primereact/resources/themes/mdc-light-indigo/theme.css +147 -135
- package/dist/primereact/resources/themes/mira/theme.css +108 -91
- package/dist/primereact/resources/themes/nano/theme.css +107 -91
- package/dist/primereact/resources/themes/nova/theme.css +103 -91
- package/dist/primereact/resources/themes/nova-accent/theme.css +103 -91
- package/dist/primereact/resources/themes/nova-alt/theme.css +103 -91
- package/dist/primereact/resources/themes/rhea/theme.css +103 -91
- package/dist/primereact/resources/themes/saga-blue/theme.css +103 -91
- package/dist/primereact/resources/themes/saga-green/theme.css +103 -91
- package/dist/primereact/resources/themes/saga-orange/theme.css +103 -91
- package/dist/primereact/resources/themes/saga-purple/theme.css +103 -91
- package/dist/primereact/resources/themes/soho-dark/theme.css +108 -91
- package/dist/primereact/resources/themes/soho-light/theme.css +108 -91
- package/dist/primereact/resources/themes/vela-blue/theme.css +103 -91
- package/dist/primereact/resources/themes/vela-green/theme.css +103 -91
- package/dist/primereact/resources/themes/vela-orange/theme.css +103 -91
- package/dist/primereact/resources/themes/vela-purple/theme.css +103 -91
- package/dist/primereact/resources/themes/viva-dark/theme.css +103 -91
- package/dist/primereact/resources/themes/viva-light/theme.css +103 -91
- package/package.json +29 -16
- package/tailwind.config.js +9 -2
- package/types/client-components/ClientLink.d.ts +6 -0
- package/types/client-components/MultiComponentEditor.d.ts +10 -0
- package/types/client-components/index.d.ts +2 -0
- package/types/components/Picture.d.ts +1 -0
- package/types/components/Placeholder.d.ts +16 -2
- package/types/components/RichTextEditor.d.ts +55 -55
- package/types/components/TextEditor.d.ts +54 -54
- package/types/editor/AiPopup.d.ts +10 -0
- package/types/editor/AiTerminal.d.ts +4 -3
- package/types/editor/ComponentPalette.d.ts +3 -4
- package/types/editor/ComponentTree.d.ts +1 -1
- package/types/editor/ConfirmationDialog.d.ts +19 -0
- package/types/editor/ContentTree.d.ts +7 -3
- package/types/editor/Debug.d.ts +1 -1
- package/types/editor/DialogButtons.d.ts +4 -0
- package/types/editor/DictionaryEditor.d.ts +3 -2
- package/types/editor/EditFrame.d.ts +4 -3
- package/types/editor/EditorClient.d.ts +4 -4
- package/types/editor/EditorClientHost.d.ts +4 -3
- package/types/editor/FieldListField.d.ts +4 -0
- package/types/editor/FloatingToolbar.d.ts +7 -0
- package/types/editor/ItemEditor.d.ts +4 -0
- package/types/editor/ItemInfo.d.ts +4 -0
- package/types/editor/ItemNameDialog.d.ts +10 -0
- package/types/editor/LinkEditorDialog.d.ts +15 -0
- package/types/editor/MainLayout.d.ts +6 -0
- package/types/editor/MediaSelector.d.ts +2 -1
- package/types/editor/PictureEditorDialog.d.ts +6 -0
- package/types/editor/SidebarTabs.d.ts +8 -0
- package/types/editor/Terminal.d.ts +3 -1
- package/types/editor/Utils.d.ts +3 -0
- package/types/editor/Workbox.d.ts +6 -0
- package/types/editor/componentCommands.d.ts +4 -0
- package/types/editor/contentService.d.ts +7 -1
- package/types/editor/editContext.d.ts +90 -19
- package/types/editor/editService.d.ts +9 -1
- package/types/editor/fieldTypes/CheckboxEditor.d.ts +4 -0
- package/types/editor/fieldTypes/InternalLinkFieldEditor.d.ts +4 -0
- package/types/editor/fieldTypes/LinkFieldEditor.d.ts +4 -0
- package/types/editor/fieldTypes/MultiLineText.d.ts +4 -0
- package/types/editor/fieldTypes/PictureFieldEditor.d.ts +4 -0
- package/types/editor/fieldTypes/TreeListEditor.d.ts +4 -0
- package/types/editor/ui/Section.d.ts +5 -0
- package/types/fieldTypes.d.ts +30 -15
- package/types/layoutData.d.ts +34 -9
- package/types/loadRouteData.d.ts +34 -5
- package/types/mediaProtection.d.ts +1 -0
- package/types/middleware/authorization.d.ts +2 -0
- package/types/middleware/index.d.ts +1 -0
- package/dist/cjs/editor/PageInfo.js +0 -12
- package/dist/esm/alpacaContext.js +0 -8
- package/dist/esm/components/Error.js +0 -10
- package/dist/esm/components/Image.js +0 -32
- package/dist/esm/components/Link.js +0 -29
- package/dist/esm/components/LinkEditor.js +0 -19
- package/dist/esm/components/Picture.js +0 -118
- package/dist/esm/components/PictureEditor.js +0 -64
- package/dist/esm/components/Placeholder.js +0 -69
- package/dist/esm/components/RichText.js +0 -40
- package/dist/esm/components/RichTextEditor.js +0 -52
- package/dist/esm/components/Slot.js +0 -5
- package/dist/esm/components/Text.js +0 -39
- package/dist/esm/components/TextEditor.js +0 -38
- package/dist/esm/components/Translate.js +0 -10
- package/dist/esm/components/index.js +0 -7
- package/dist/esm/editor/AiTerminal.js +0 -157
- package/dist/esm/editor/ComponentInfo.js +0 -10
- package/dist/esm/editor/ComponentPalette.js +0 -72
- package/dist/esm/editor/ComponentTree.js +0 -196
- package/dist/esm/editor/ContentTree.js +0 -117
- package/dist/esm/editor/Debug.js +0 -9
- package/dist/esm/editor/DictionaryEditor.js +0 -31
- package/dist/esm/editor/EditFrame.js +0 -57
- package/dist/esm/editor/EditHistory.js +0 -26
- package/dist/esm/editor/Editor.js +0 -23
- package/dist/esm/editor/EditorClient.js +0 -477
- package/dist/esm/editor/EditorClientHost.js +0 -7
- package/dist/esm/editor/FieldList.js +0 -60
- package/dist/esm/editor/GraphQL.js +0 -82
- package/dist/esm/editor/LanguageSelector.js +0 -17
- package/dist/esm/editor/MediaSelector.js +0 -60
- package/dist/esm/editor/PageInfo.js +0 -8
- package/dist/esm/editor/PlaceholderDropZone.js +0 -50
- package/dist/esm/editor/PlaceholderDropZoneHost.js +0 -7
- package/dist/esm/editor/Terminal.js +0 -47
- package/dist/esm/editor/TranslateEditor.js +0 -21
- package/dist/esm/editor/VersionSelector.js +0 -17
- package/dist/esm/editor/componentTreeHelper.js +0 -14
- package/dist/esm/editor/contentService.js +0 -31
- package/dist/esm/editor/editContext.js +0 -5
- package/dist/esm/editor/editService.js +0 -139
- package/dist/esm/editor/fieldTypes/RichTextEditor.js +0 -15
- package/dist/esm/editor/fieldTypes/SingleLineText.js +0 -13
- package/dist/esm/editor/index.js +0 -2
- package/dist/esm/fieldTypes.js +0 -1
- package/dist/esm/graphQLTypes.js +0 -1
- package/dist/esm/index.js +0 -7
- package/dist/esm/layoutData.js +0 -1
- package/dist/esm/loadRouteData.js +0 -123
- package/dist/esm/mediaProtection.js +0 -49
- package/types/editor/PageInfo.d.ts +0 -4
- /package/types/{editor → components}/TranslateEditor.d.ts +0 -0
|
@@ -1646,6 +1646,9 @@
|
|
|
1646
1646
|
box-shadow: 0 0 0 0.2rem #ffe69c;
|
|
1647
1647
|
border-color: #FFC107;
|
|
1648
1648
|
}
|
|
1649
|
+
.p-treeselect.p-treeselect-clearable .p-treeselect-label {
|
|
1650
|
+
padding-right: 1.5rem;
|
|
1651
|
+
}
|
|
1649
1652
|
.p-treeselect .p-treeselect-label {
|
|
1650
1653
|
padding: 0.5rem 0.5rem;
|
|
1651
1654
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
@@ -1667,6 +1670,10 @@
|
|
|
1667
1670
|
border-top-right-radius: 3px;
|
|
1668
1671
|
border-bottom-right-radius: 3px;
|
|
1669
1672
|
}
|
|
1673
|
+
.p-treeselect .p-treeselect-clear-icon {
|
|
1674
|
+
color: #6c757d;
|
|
1675
|
+
right: 2.357rem;
|
|
1676
|
+
}
|
|
1670
1677
|
.p-treeselect.p-invalid.p-component {
|
|
1671
1678
|
border-color: #f44336;
|
|
1672
1679
|
}
|
|
@@ -1795,12 +1802,12 @@
|
|
|
1795
1802
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
1796
1803
|
border-radius: 3px;
|
|
1797
1804
|
}
|
|
1798
|
-
.p-button:
|
|
1805
|
+
.p-button:not(:disabled):hover {
|
|
1799
1806
|
background: #ecb100;
|
|
1800
1807
|
color: #212529;
|
|
1801
1808
|
border-color: #ecb100;
|
|
1802
1809
|
}
|
|
1803
|
-
.p-button:
|
|
1810
|
+
.p-button:not(:disabled):active {
|
|
1804
1811
|
background: #d29d00;
|
|
1805
1812
|
color: #212529;
|
|
1806
1813
|
border-color: #d29d00;
|
|
@@ -1810,12 +1817,12 @@
|
|
|
1810
1817
|
color: #FFC107;
|
|
1811
1818
|
border: 1px solid;
|
|
1812
1819
|
}
|
|
1813
|
-
.p-button.p-button-outlined:
|
|
1820
|
+
.p-button.p-button-outlined:not(:disabled):hover {
|
|
1814
1821
|
background: rgba(255, 193, 7, 0.04);
|
|
1815
1822
|
color: #FFC107;
|
|
1816
1823
|
border: 1px solid;
|
|
1817
1824
|
}
|
|
1818
|
-
.p-button.p-button-outlined:
|
|
1825
|
+
.p-button.p-button-outlined:not(:disabled):active {
|
|
1819
1826
|
background: rgba(255, 193, 7, 0.16);
|
|
1820
1827
|
color: #FFC107;
|
|
1821
1828
|
border: 1px solid;
|
|
@@ -1824,11 +1831,11 @@
|
|
|
1824
1831
|
color: #6c757d;
|
|
1825
1832
|
border-color: #6c757d;
|
|
1826
1833
|
}
|
|
1827
|
-
.p-button.p-button-outlined.p-button-plain:
|
|
1834
|
+
.p-button.p-button-outlined.p-button-plain:not(:disabled):hover {
|
|
1828
1835
|
background: #e9ecef;
|
|
1829
1836
|
color: #6c757d;
|
|
1830
1837
|
}
|
|
1831
|
-
.p-button.p-button-outlined.p-button-plain:
|
|
1838
|
+
.p-button.p-button-outlined.p-button-plain:not(:disabled):active {
|
|
1832
1839
|
background: #dee2e6;
|
|
1833
1840
|
color: #6c757d;
|
|
1834
1841
|
}
|
|
@@ -1837,12 +1844,12 @@
|
|
|
1837
1844
|
color: #FFC107;
|
|
1838
1845
|
border-color: transparent;
|
|
1839
1846
|
}
|
|
1840
|
-
.p-button.p-button-text:
|
|
1847
|
+
.p-button.p-button-text:not(:disabled):hover {
|
|
1841
1848
|
background: rgba(255, 193, 7, 0.04);
|
|
1842
1849
|
color: #FFC107;
|
|
1843
1850
|
border-color: transparent;
|
|
1844
1851
|
}
|
|
1845
|
-
.p-button.p-button-text:
|
|
1852
|
+
.p-button.p-button-text:not(:disabled):active {
|
|
1846
1853
|
background: rgba(255, 193, 7, 0.16);
|
|
1847
1854
|
color: #FFC107;
|
|
1848
1855
|
border-color: transparent;
|
|
@@ -1850,11 +1857,11 @@
|
|
|
1850
1857
|
.p-button.p-button-text.p-button-plain {
|
|
1851
1858
|
color: #6c757d;
|
|
1852
1859
|
}
|
|
1853
|
-
.p-button.p-button-text.p-button-plain:
|
|
1860
|
+
.p-button.p-button-text.p-button-plain:not(:disabled):hover {
|
|
1854
1861
|
background: #e9ecef;
|
|
1855
1862
|
color: #6c757d;
|
|
1856
1863
|
}
|
|
1857
|
-
.p-button.p-button-text.p-button-plain:
|
|
1864
|
+
.p-button.p-button-text.p-button-plain:not(:disabled):active {
|
|
1858
1865
|
background: #dee2e6;
|
|
1859
1866
|
color: #6c757d;
|
|
1860
1867
|
}
|
|
@@ -1952,15 +1959,15 @@
|
|
|
1952
1959
|
background: #607D8B;
|
|
1953
1960
|
border: 1px solid #607D8B;
|
|
1954
1961
|
}
|
|
1955
|
-
.p-button.p-button-secondary:
|
|
1962
|
+
.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 {
|
|
1956
1963
|
background: #56717d;
|
|
1957
1964
|
color: #ffffff;
|
|
1958
1965
|
border-color: #56717d;
|
|
1959
1966
|
}
|
|
1960
|
-
.p-button.p-button-secondary:
|
|
1967
|
+
.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 {
|
|
1961
1968
|
box-shadow: 0 0 0 0.2rem #beccd2;
|
|
1962
1969
|
}
|
|
1963
|
-
.p-button.p-button-secondary:
|
|
1970
|
+
.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 {
|
|
1964
1971
|
background: #4d646f;
|
|
1965
1972
|
color: #ffffff;
|
|
1966
1973
|
border-color: #4d646f;
|
|
@@ -1970,12 +1977,12 @@
|
|
|
1970
1977
|
color: #607D8B;
|
|
1971
1978
|
border: 1px solid;
|
|
1972
1979
|
}
|
|
1973
|
-
.p-button.p-button-secondary.p-button-outlined:
|
|
1980
|
+
.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 {
|
|
1974
1981
|
background: rgba(96, 125, 139, 0.04);
|
|
1975
1982
|
color: #607D8B;
|
|
1976
1983
|
border: 1px solid;
|
|
1977
1984
|
}
|
|
1978
|
-
.p-button.p-button-secondary.p-button-outlined:
|
|
1985
|
+
.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 {
|
|
1979
1986
|
background: rgba(96, 125, 139, 0.16);
|
|
1980
1987
|
color: #607D8B;
|
|
1981
1988
|
border: 1px solid;
|
|
@@ -1985,12 +1992,12 @@
|
|
|
1985
1992
|
color: #607D8B;
|
|
1986
1993
|
border-color: transparent;
|
|
1987
1994
|
}
|
|
1988
|
-
.p-button.p-button-secondary.p-button-text:
|
|
1995
|
+
.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 {
|
|
1989
1996
|
background: rgba(96, 125, 139, 0.04);
|
|
1990
1997
|
border-color: transparent;
|
|
1991
1998
|
color: #607D8B;
|
|
1992
1999
|
}
|
|
1993
|
-
.p-button.p-button-secondary.p-button-text:
|
|
2000
|
+
.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 {
|
|
1994
2001
|
background: rgba(96, 125, 139, 0.16);
|
|
1995
2002
|
border-color: transparent;
|
|
1996
2003
|
color: #607D8B;
|
|
@@ -2001,15 +2008,15 @@
|
|
|
2001
2008
|
background: #0288D1;
|
|
2002
2009
|
border: 1px solid #0288D1;
|
|
2003
2010
|
}
|
|
2004
|
-
.p-button.p-button-info:
|
|
2011
|
+
.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 {
|
|
2005
2012
|
background: #027abc;
|
|
2006
2013
|
color: #ffffff;
|
|
2007
2014
|
border-color: #027abc;
|
|
2008
2015
|
}
|
|
2009
|
-
.p-button.p-button-info:
|
|
2016
|
+
.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 {
|
|
2010
2017
|
box-shadow: 0 0 0 0.2rem #89d4fe;
|
|
2011
2018
|
}
|
|
2012
|
-
.p-button.p-button-info:
|
|
2019
|
+
.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 {
|
|
2013
2020
|
background: #026da7;
|
|
2014
2021
|
color: #ffffff;
|
|
2015
2022
|
border-color: #026da7;
|
|
@@ -2019,12 +2026,12 @@
|
|
|
2019
2026
|
color: #0288D1;
|
|
2020
2027
|
border: 1px solid;
|
|
2021
2028
|
}
|
|
2022
|
-
.p-button.p-button-info.p-button-outlined:
|
|
2029
|
+
.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 {
|
|
2023
2030
|
background: rgba(2, 136, 209, 0.04);
|
|
2024
2031
|
color: #0288D1;
|
|
2025
2032
|
border: 1px solid;
|
|
2026
2033
|
}
|
|
2027
|
-
.p-button.p-button-info.p-button-outlined:
|
|
2034
|
+
.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 {
|
|
2028
2035
|
background: rgba(2, 136, 209, 0.16);
|
|
2029
2036
|
color: #0288D1;
|
|
2030
2037
|
border: 1px solid;
|
|
@@ -2034,12 +2041,12 @@
|
|
|
2034
2041
|
color: #0288D1;
|
|
2035
2042
|
border-color: transparent;
|
|
2036
2043
|
}
|
|
2037
|
-
.p-button.p-button-info.p-button-text:
|
|
2044
|
+
.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 {
|
|
2038
2045
|
background: rgba(2, 136, 209, 0.04);
|
|
2039
2046
|
border-color: transparent;
|
|
2040
2047
|
color: #0288D1;
|
|
2041
2048
|
}
|
|
2042
|
-
.p-button.p-button-info.p-button-text:
|
|
2049
|
+
.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 {
|
|
2043
2050
|
background: rgba(2, 136, 209, 0.16);
|
|
2044
2051
|
border-color: transparent;
|
|
2045
2052
|
color: #0288D1;
|
|
@@ -2050,15 +2057,15 @@
|
|
|
2050
2057
|
background: #689F38;
|
|
2051
2058
|
border: 1px solid #689F38;
|
|
2052
2059
|
}
|
|
2053
|
-
.p-button.p-button-success:
|
|
2060
|
+
.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 {
|
|
2054
2061
|
background: #5e8f32;
|
|
2055
2062
|
color: #ffffff;
|
|
2056
2063
|
border-color: #5e8f32;
|
|
2057
2064
|
}
|
|
2058
|
-
.p-button.p-button-success:
|
|
2065
|
+
.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 {
|
|
2059
2066
|
box-shadow: 0 0 0 0.2rem #c2e0a8;
|
|
2060
2067
|
}
|
|
2061
|
-
.p-button.p-button-success:
|
|
2068
|
+
.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 {
|
|
2062
2069
|
background: #537f2d;
|
|
2063
2070
|
color: #ffffff;
|
|
2064
2071
|
border-color: #537f2d;
|
|
@@ -2068,12 +2075,12 @@
|
|
|
2068
2075
|
color: #689F38;
|
|
2069
2076
|
border: 1px solid;
|
|
2070
2077
|
}
|
|
2071
|
-
.p-button.p-button-success.p-button-outlined:
|
|
2078
|
+
.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 {
|
|
2072
2079
|
background: rgba(104, 159, 56, 0.04);
|
|
2073
2080
|
color: #689F38;
|
|
2074
2081
|
border: 1px solid;
|
|
2075
2082
|
}
|
|
2076
|
-
.p-button.p-button-success.p-button-outlined:
|
|
2083
|
+
.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 {
|
|
2077
2084
|
background: rgba(104, 159, 56, 0.16);
|
|
2078
2085
|
color: #689F38;
|
|
2079
2086
|
border: 1px solid;
|
|
@@ -2083,12 +2090,12 @@
|
|
|
2083
2090
|
color: #689F38;
|
|
2084
2091
|
border-color: transparent;
|
|
2085
2092
|
}
|
|
2086
|
-
.p-button.p-button-success.p-button-text:
|
|
2093
|
+
.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 {
|
|
2087
2094
|
background: rgba(104, 159, 56, 0.04);
|
|
2088
2095
|
border-color: transparent;
|
|
2089
2096
|
color: #689F38;
|
|
2090
2097
|
}
|
|
2091
|
-
.p-button.p-button-success.p-button-text:
|
|
2098
|
+
.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 {
|
|
2092
2099
|
background: rgba(104, 159, 56, 0.16);
|
|
2093
2100
|
border-color: transparent;
|
|
2094
2101
|
color: #689F38;
|
|
@@ -2099,15 +2106,15 @@
|
|
|
2099
2106
|
background: #FBC02D;
|
|
2100
2107
|
border: 1px solid #FBC02D;
|
|
2101
2108
|
}
|
|
2102
|
-
.p-button.p-button-warning:
|
|
2109
|
+
.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 {
|
|
2103
2110
|
background: #fab710;
|
|
2104
2111
|
color: #212529;
|
|
2105
2112
|
border-color: #fab710;
|
|
2106
2113
|
}
|
|
2107
|
-
.p-button.p-button-warning:
|
|
2114
|
+
.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 {
|
|
2108
2115
|
box-shadow: 0 0 0 0.2rem #fde6ab;
|
|
2109
2116
|
}
|
|
2110
|
-
.p-button.p-button-warning:
|
|
2117
|
+
.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 {
|
|
2111
2118
|
background: #e8a704;
|
|
2112
2119
|
color: #212529;
|
|
2113
2120
|
border-color: #e8a704;
|
|
@@ -2117,12 +2124,12 @@
|
|
|
2117
2124
|
color: #FBC02D;
|
|
2118
2125
|
border: 1px solid;
|
|
2119
2126
|
}
|
|
2120
|
-
.p-button.p-button-warning.p-button-outlined:
|
|
2127
|
+
.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 {
|
|
2121
2128
|
background: rgba(251, 192, 45, 0.04);
|
|
2122
2129
|
color: #FBC02D;
|
|
2123
2130
|
border: 1px solid;
|
|
2124
2131
|
}
|
|
2125
|
-
.p-button.p-button-warning.p-button-outlined:
|
|
2132
|
+
.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 {
|
|
2126
2133
|
background: rgba(251, 192, 45, 0.16);
|
|
2127
2134
|
color: #FBC02D;
|
|
2128
2135
|
border: 1px solid;
|
|
@@ -2132,12 +2139,12 @@
|
|
|
2132
2139
|
color: #FBC02D;
|
|
2133
2140
|
border-color: transparent;
|
|
2134
2141
|
}
|
|
2135
|
-
.p-button.p-button-warning.p-button-text:
|
|
2142
|
+
.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 {
|
|
2136
2143
|
background: rgba(251, 192, 45, 0.04);
|
|
2137
2144
|
border-color: transparent;
|
|
2138
2145
|
color: #FBC02D;
|
|
2139
2146
|
}
|
|
2140
|
-
.p-button.p-button-warning.p-button-text:
|
|
2147
|
+
.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 {
|
|
2141
2148
|
background: rgba(251, 192, 45, 0.16);
|
|
2142
2149
|
border-color: transparent;
|
|
2143
2150
|
color: #FBC02D;
|
|
@@ -2148,15 +2155,15 @@
|
|
|
2148
2155
|
background: #9C27B0;
|
|
2149
2156
|
border: 1px solid #9C27B0;
|
|
2150
2157
|
}
|
|
2151
|
-
.p-button.p-button-help:
|
|
2158
|
+
.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 {
|
|
2152
2159
|
background: #8c239e;
|
|
2153
2160
|
color: #ffffff;
|
|
2154
2161
|
border-color: #8c239e;
|
|
2155
2162
|
}
|
|
2156
|
-
.p-button.p-button-help:
|
|
2163
|
+
.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 {
|
|
2157
2164
|
box-shadow: 0 0 0 0.2rem #df9eea;
|
|
2158
2165
|
}
|
|
2159
|
-
.p-button.p-button-help:
|
|
2166
|
+
.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 {
|
|
2160
2167
|
background: #7d1f8d;
|
|
2161
2168
|
color: #ffffff;
|
|
2162
2169
|
border-color: #7d1f8d;
|
|
@@ -2166,12 +2173,12 @@
|
|
|
2166
2173
|
color: #9C27B0;
|
|
2167
2174
|
border: 1px solid;
|
|
2168
2175
|
}
|
|
2169
|
-
.p-button.p-button-help.p-button-outlined:
|
|
2176
|
+
.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 {
|
|
2170
2177
|
background: rgba(156, 39, 176, 0.04);
|
|
2171
2178
|
color: #9C27B0;
|
|
2172
2179
|
border: 1px solid;
|
|
2173
2180
|
}
|
|
2174
|
-
.p-button.p-button-help.p-button-outlined:
|
|
2181
|
+
.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 {
|
|
2175
2182
|
background: rgba(156, 39, 176, 0.16);
|
|
2176
2183
|
color: #9C27B0;
|
|
2177
2184
|
border: 1px solid;
|
|
@@ -2181,12 +2188,12 @@
|
|
|
2181
2188
|
color: #9C27B0;
|
|
2182
2189
|
border-color: transparent;
|
|
2183
2190
|
}
|
|
2184
|
-
.p-button.p-button-help.p-button-text:
|
|
2191
|
+
.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 {
|
|
2185
2192
|
background: rgba(156, 39, 176, 0.04);
|
|
2186
2193
|
border-color: transparent;
|
|
2187
2194
|
color: #9C27B0;
|
|
2188
2195
|
}
|
|
2189
|
-
.p-button.p-button-help.p-button-text:
|
|
2196
|
+
.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 {
|
|
2190
2197
|
background: rgba(156, 39, 176, 0.16);
|
|
2191
2198
|
border-color: transparent;
|
|
2192
2199
|
color: #9C27B0;
|
|
@@ -2197,15 +2204,15 @@
|
|
|
2197
2204
|
background: #D32F2F;
|
|
2198
2205
|
border: 1px solid #D32F2F;
|
|
2199
2206
|
}
|
|
2200
|
-
.p-button.p-button-danger:
|
|
2207
|
+
.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 {
|
|
2201
2208
|
background: #c02929;
|
|
2202
2209
|
color: #ffffff;
|
|
2203
2210
|
border-color: #c02929;
|
|
2204
2211
|
}
|
|
2205
|
-
.p-button.p-button-danger:
|
|
2212
|
+
.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 {
|
|
2206
2213
|
box-shadow: 0 0 0 0.2rem #edacac;
|
|
2207
2214
|
}
|
|
2208
|
-
.p-button.p-button-danger:
|
|
2215
|
+
.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 {
|
|
2209
2216
|
background: #aa2424;
|
|
2210
2217
|
color: #ffffff;
|
|
2211
2218
|
border-color: #aa2424;
|
|
@@ -2215,12 +2222,12 @@
|
|
|
2215
2222
|
color: #D32F2F;
|
|
2216
2223
|
border: 1px solid;
|
|
2217
2224
|
}
|
|
2218
|
-
.p-button.p-button-danger.p-button-outlined:
|
|
2225
|
+
.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 {
|
|
2219
2226
|
background: rgba(211, 47, 47, 0.04);
|
|
2220
2227
|
color: #D32F2F;
|
|
2221
2228
|
border: 1px solid;
|
|
2222
2229
|
}
|
|
2223
|
-
.p-button.p-button-danger.p-button-outlined:
|
|
2230
|
+
.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 {
|
|
2224
2231
|
background: rgba(211, 47, 47, 0.16);
|
|
2225
2232
|
color: #D32F2F;
|
|
2226
2233
|
border: 1px solid;
|
|
@@ -2230,12 +2237,12 @@
|
|
|
2230
2237
|
color: #D32F2F;
|
|
2231
2238
|
border-color: transparent;
|
|
2232
2239
|
}
|
|
2233
|
-
.p-button.p-button-danger.p-button-text:
|
|
2240
|
+
.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 {
|
|
2234
2241
|
background: rgba(211, 47, 47, 0.04);
|
|
2235
2242
|
border-color: transparent;
|
|
2236
2243
|
color: #D32F2F;
|
|
2237
2244
|
}
|
|
2238
|
-
.p-button.p-button-danger.p-button-text:
|
|
2245
|
+
.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 {
|
|
2239
2246
|
background: rgba(211, 47, 47, 0.16);
|
|
2240
2247
|
border-color: transparent;
|
|
2241
2248
|
color: #D32F2F;
|
|
@@ -2246,20 +2253,20 @@
|
|
|
2246
2253
|
background: transparent;
|
|
2247
2254
|
border: transparent;
|
|
2248
2255
|
}
|
|
2249
|
-
.p-button.p-button-link:
|
|
2256
|
+
.p-button.p-button-link:not(:disabled):hover {
|
|
2250
2257
|
background: transparent;
|
|
2251
2258
|
color: #d29d00;
|
|
2252
2259
|
border-color: transparent;
|
|
2253
2260
|
}
|
|
2254
|
-
.p-button.p-button-link:
|
|
2261
|
+
.p-button.p-button-link:not(:disabled):hover .p-button-label {
|
|
2255
2262
|
text-decoration: underline;
|
|
2256
2263
|
}
|
|
2257
|
-
.p-button.p-button-link:
|
|
2264
|
+
.p-button.p-button-link:not(:disabled):focus {
|
|
2258
2265
|
background: transparent;
|
|
2259
2266
|
box-shadow: 0 0 0 0.2rem #ffe69c;
|
|
2260
2267
|
border-color: transparent;
|
|
2261
2268
|
}
|
|
2262
|
-
.p-button.p-button-link:
|
|
2269
|
+
.p-button.p-button-link:not(:disabled):active {
|
|
2263
2270
|
background: transparent;
|
|
2264
2271
|
color: #d29d00;
|
|
2265
2272
|
border-color: transparent;
|
|
@@ -2273,11 +2280,11 @@
|
|
|
2273
2280
|
color: #FFC107;
|
|
2274
2281
|
border: 1px solid;
|
|
2275
2282
|
}
|
|
2276
|
-
.p-splitbutton.p-button-outlined > .p-button:
|
|
2283
|
+
.p-splitbutton.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2277
2284
|
background: rgba(255, 193, 7, 0.04);
|
|
2278
2285
|
color: #FFC107;
|
|
2279
2286
|
}
|
|
2280
|
-
.p-splitbutton.p-button-outlined > .p-button:
|
|
2287
|
+
.p-splitbutton.p-button-outlined > .p-button:not(:disabled):active {
|
|
2281
2288
|
background: rgba(255, 193, 7, 0.16);
|
|
2282
2289
|
color: #FFC107;
|
|
2283
2290
|
}
|
|
@@ -2285,11 +2292,11 @@
|
|
|
2285
2292
|
color: #6c757d;
|
|
2286
2293
|
border-color: #6c757d;
|
|
2287
2294
|
}
|
|
2288
|
-
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:
|
|
2295
|
+
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:not(:disabled):hover {
|
|
2289
2296
|
background: #e9ecef;
|
|
2290
2297
|
color: #6c757d;
|
|
2291
2298
|
}
|
|
2292
|
-
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:
|
|
2299
|
+
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:not(:disabled):active {
|
|
2293
2300
|
background: #dee2e6;
|
|
2294
2301
|
color: #6c757d;
|
|
2295
2302
|
}
|
|
@@ -2298,12 +2305,12 @@
|
|
|
2298
2305
|
color: #FFC107;
|
|
2299
2306
|
border-color: transparent;
|
|
2300
2307
|
}
|
|
2301
|
-
.p-splitbutton.p-button-text > .p-button:
|
|
2308
|
+
.p-splitbutton.p-button-text > .p-button:not(:disabled):hover {
|
|
2302
2309
|
background: rgba(255, 193, 7, 0.04);
|
|
2303
2310
|
color: #FFC107;
|
|
2304
2311
|
border-color: transparent;
|
|
2305
2312
|
}
|
|
2306
|
-
.p-splitbutton.p-button-text > .p-button:
|
|
2313
|
+
.p-splitbutton.p-button-text > .p-button:not(:disabled):active {
|
|
2307
2314
|
background: rgba(255, 193, 7, 0.16);
|
|
2308
2315
|
color: #FFC107;
|
|
2309
2316
|
border-color: transparent;
|
|
@@ -2311,11 +2318,11 @@
|
|
|
2311
2318
|
.p-splitbutton.p-button-text.p-button-plain > .p-button {
|
|
2312
2319
|
color: #6c757d;
|
|
2313
2320
|
}
|
|
2314
|
-
.p-splitbutton.p-button-text.p-button-plain > .p-button:
|
|
2321
|
+
.p-splitbutton.p-button-text.p-button-plain > .p-button:not(:disabled):hover {
|
|
2315
2322
|
background: #e9ecef;
|
|
2316
2323
|
color: #6c757d;
|
|
2317
2324
|
}
|
|
2318
|
-
.p-splitbutton.p-button-text.p-button-plain > .p-button:
|
|
2325
|
+
.p-splitbutton.p-button-text.p-button-plain > .p-button:not(:disabled):active {
|
|
2319
2326
|
background: #dee2e6;
|
|
2320
2327
|
color: #6c757d;
|
|
2321
2328
|
}
|
|
@@ -2357,11 +2364,11 @@
|
|
|
2357
2364
|
color: #607D8B;
|
|
2358
2365
|
border: 1px solid;
|
|
2359
2366
|
}
|
|
2360
|
-
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:
|
|
2367
|
+
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2361
2368
|
background: rgba(96, 125, 139, 0.04);
|
|
2362
2369
|
color: #607D8B;
|
|
2363
2370
|
}
|
|
2364
|
-
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:
|
|
2371
|
+
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):active {
|
|
2365
2372
|
background: rgba(96, 125, 139, 0.16);
|
|
2366
2373
|
color: #607D8B;
|
|
2367
2374
|
}
|
|
@@ -2370,12 +2377,12 @@
|
|
|
2370
2377
|
color: #607D8B;
|
|
2371
2378
|
border-color: transparent;
|
|
2372
2379
|
}
|
|
2373
|
-
.p-splitbutton.p-button-secondary.p-button-text > .p-button:
|
|
2380
|
+
.p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):hover {
|
|
2374
2381
|
background: rgba(96, 125, 139, 0.04);
|
|
2375
2382
|
border-color: transparent;
|
|
2376
2383
|
color: #607D8B;
|
|
2377
2384
|
}
|
|
2378
|
-
.p-splitbutton.p-button-secondary.p-button-text > .p-button:
|
|
2385
|
+
.p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):active {
|
|
2379
2386
|
background: rgba(96, 125, 139, 0.16);
|
|
2380
2387
|
border-color: transparent;
|
|
2381
2388
|
color: #607D8B;
|
|
@@ -2386,11 +2393,11 @@
|
|
|
2386
2393
|
color: #0288D1;
|
|
2387
2394
|
border: 1px solid;
|
|
2388
2395
|
}
|
|
2389
|
-
.p-splitbutton.p-button-info.p-button-outlined > .p-button:
|
|
2396
|
+
.p-splitbutton.p-button-info.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2390
2397
|
background: rgba(2, 136, 209, 0.04);
|
|
2391
2398
|
color: #0288D1;
|
|
2392
2399
|
}
|
|
2393
|
-
.p-splitbutton.p-button-info.p-button-outlined > .p-button:
|
|
2400
|
+
.p-splitbutton.p-button-info.p-button-outlined > .p-button:not(:disabled):active {
|
|
2394
2401
|
background: rgba(2, 136, 209, 0.16);
|
|
2395
2402
|
color: #0288D1;
|
|
2396
2403
|
}
|
|
@@ -2399,12 +2406,12 @@
|
|
|
2399
2406
|
color: #0288D1;
|
|
2400
2407
|
border-color: transparent;
|
|
2401
2408
|
}
|
|
2402
|
-
.p-splitbutton.p-button-info.p-button-text > .p-button:
|
|
2409
|
+
.p-splitbutton.p-button-info.p-button-text > .p-button:not(:disabled):hover {
|
|
2403
2410
|
background: rgba(2, 136, 209, 0.04);
|
|
2404
2411
|
border-color: transparent;
|
|
2405
2412
|
color: #0288D1;
|
|
2406
2413
|
}
|
|
2407
|
-
.p-splitbutton.p-button-info.p-button-text > .p-button:
|
|
2414
|
+
.p-splitbutton.p-button-info.p-button-text > .p-button:not(:disabled):active {
|
|
2408
2415
|
background: rgba(2, 136, 209, 0.16);
|
|
2409
2416
|
border-color: transparent;
|
|
2410
2417
|
color: #0288D1;
|
|
@@ -2415,11 +2422,11 @@
|
|
|
2415
2422
|
color: #689F38;
|
|
2416
2423
|
border: 1px solid;
|
|
2417
2424
|
}
|
|
2418
|
-
.p-splitbutton.p-button-success.p-button-outlined > .p-button:
|
|
2425
|
+
.p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2419
2426
|
background: rgba(104, 159, 56, 0.04);
|
|
2420
2427
|
color: #689F38;
|
|
2421
2428
|
}
|
|
2422
|
-
.p-splitbutton.p-button-success.p-button-outlined > .p-button:
|
|
2429
|
+
.p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):active {
|
|
2423
2430
|
background: rgba(104, 159, 56, 0.16);
|
|
2424
2431
|
color: #689F38;
|
|
2425
2432
|
}
|
|
@@ -2428,12 +2435,12 @@
|
|
|
2428
2435
|
color: #689F38;
|
|
2429
2436
|
border-color: transparent;
|
|
2430
2437
|
}
|
|
2431
|
-
.p-splitbutton.p-button-success.p-button-text > .p-button:
|
|
2438
|
+
.p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):hover {
|
|
2432
2439
|
background: rgba(104, 159, 56, 0.04);
|
|
2433
2440
|
border-color: transparent;
|
|
2434
2441
|
color: #689F38;
|
|
2435
2442
|
}
|
|
2436
|
-
.p-splitbutton.p-button-success.p-button-text > .p-button:
|
|
2443
|
+
.p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):active {
|
|
2437
2444
|
background: rgba(104, 159, 56, 0.16);
|
|
2438
2445
|
border-color: transparent;
|
|
2439
2446
|
color: #689F38;
|
|
@@ -2444,11 +2451,11 @@
|
|
|
2444
2451
|
color: #FBC02D;
|
|
2445
2452
|
border: 1px solid;
|
|
2446
2453
|
}
|
|
2447
|
-
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:
|
|
2454
|
+
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2448
2455
|
background: rgba(251, 192, 45, 0.04);
|
|
2449
2456
|
color: #FBC02D;
|
|
2450
2457
|
}
|
|
2451
|
-
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:
|
|
2458
|
+
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):active {
|
|
2452
2459
|
background: rgba(251, 192, 45, 0.16);
|
|
2453
2460
|
color: #FBC02D;
|
|
2454
2461
|
}
|
|
@@ -2457,12 +2464,12 @@
|
|
|
2457
2464
|
color: #FBC02D;
|
|
2458
2465
|
border-color: transparent;
|
|
2459
2466
|
}
|
|
2460
|
-
.p-splitbutton.p-button-warning.p-button-text > .p-button:
|
|
2467
|
+
.p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):hover {
|
|
2461
2468
|
background: rgba(251, 192, 45, 0.04);
|
|
2462
2469
|
border-color: transparent;
|
|
2463
2470
|
color: #FBC02D;
|
|
2464
2471
|
}
|
|
2465
|
-
.p-splitbutton.p-button-warning.p-button-text > .p-button:
|
|
2472
|
+
.p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):active {
|
|
2466
2473
|
background: rgba(251, 192, 45, 0.16);
|
|
2467
2474
|
border-color: transparent;
|
|
2468
2475
|
color: #FBC02D;
|
|
@@ -2473,11 +2480,11 @@
|
|
|
2473
2480
|
color: #9C27B0;
|
|
2474
2481
|
border: 1px solid;
|
|
2475
2482
|
}
|
|
2476
|
-
.p-splitbutton.p-button-help.p-button-outlined > .p-button:
|
|
2483
|
+
.p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2477
2484
|
background: rgba(156, 39, 176, 0.04);
|
|
2478
2485
|
color: #9C27B0;
|
|
2479
2486
|
}
|
|
2480
|
-
.p-splitbutton.p-button-help.p-button-outlined > .p-button:
|
|
2487
|
+
.p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):active {
|
|
2481
2488
|
background: rgba(156, 39, 176, 0.16);
|
|
2482
2489
|
color: #9C27B0;
|
|
2483
2490
|
}
|
|
@@ -2486,12 +2493,12 @@
|
|
|
2486
2493
|
color: #9C27B0;
|
|
2487
2494
|
border-color: transparent;
|
|
2488
2495
|
}
|
|
2489
|
-
.p-splitbutton.p-button-help.p-button-text > .p-button:
|
|
2496
|
+
.p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):hover {
|
|
2490
2497
|
background: rgba(156, 39, 176, 0.04);
|
|
2491
2498
|
border-color: transparent;
|
|
2492
2499
|
color: #9C27B0;
|
|
2493
2500
|
}
|
|
2494
|
-
.p-splitbutton.p-button-help.p-button-text > .p-button:
|
|
2501
|
+
.p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):active {
|
|
2495
2502
|
background: rgba(156, 39, 176, 0.16);
|
|
2496
2503
|
border-color: transparent;
|
|
2497
2504
|
color: #9C27B0;
|
|
@@ -2502,11 +2509,11 @@
|
|
|
2502
2509
|
color: #D32F2F;
|
|
2503
2510
|
border: 1px solid;
|
|
2504
2511
|
}
|
|
2505
|
-
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:
|
|
2512
|
+
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2506
2513
|
background: rgba(211, 47, 47, 0.04);
|
|
2507
2514
|
color: #D32F2F;
|
|
2508
2515
|
}
|
|
2509
|
-
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:
|
|
2516
|
+
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):active {
|
|
2510
2517
|
background: rgba(211, 47, 47, 0.16);
|
|
2511
2518
|
color: #D32F2F;
|
|
2512
2519
|
}
|
|
@@ -2515,12 +2522,12 @@
|
|
|
2515
2522
|
color: #D32F2F;
|
|
2516
2523
|
border-color: transparent;
|
|
2517
2524
|
}
|
|
2518
|
-
.p-splitbutton.p-button-danger.p-button-text > .p-button:
|
|
2525
|
+
.p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):hover {
|
|
2519
2526
|
background: rgba(211, 47, 47, 0.04);
|
|
2520
2527
|
border-color: transparent;
|
|
2521
2528
|
color: #D32F2F;
|
|
2522
2529
|
}
|
|
2523
|
-
.p-splitbutton.p-button-danger.p-button-text > .p-button:
|
|
2530
|
+
.p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):active {
|
|
2524
2531
|
background: rgba(211, 47, 47, 0.16);
|
|
2525
2532
|
border-color: transparent;
|
|
2526
2533
|
color: #D32F2F;
|
|
@@ -2592,6 +2599,7 @@
|
|
|
2592
2599
|
|
|
2593
2600
|
.p-speeddial-mask {
|
|
2594
2601
|
background-color: rgba(0, 0, 0, 0.4);
|
|
2602
|
+
border-radius: 3px;
|
|
2595
2603
|
}
|
|
2596
2604
|
|
|
2597
2605
|
.p-carousel .p-carousel-content .p-carousel-prev,
|
|
@@ -2773,6 +2781,10 @@
|
|
|
2773
2781
|
background: #FFF3E0;
|
|
2774
2782
|
color: #495057;
|
|
2775
2783
|
}
|
|
2784
|
+
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
|
|
2785
|
+
outline: 0.15rem solid #ffe69c;
|
|
2786
|
+
outline-offset: -0.15rem;
|
|
2787
|
+
}
|
|
2776
2788
|
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
|
|
2777
2789
|
box-shadow: inset 0 2px 0 0 #FFF3E0;
|
|
2778
2790
|
}
|
|
@@ -4041,7 +4053,7 @@
|
|
|
4041
4053
|
.p-confirm-popup:before {
|
|
4042
4054
|
border: solid transparent;
|
|
4043
4055
|
border-color: rgba(255, 255, 255, 0);
|
|
4044
|
-
border-bottom-color: #
|
|
4056
|
+
border-bottom-color: #f2f2f2;
|
|
4045
4057
|
}
|
|
4046
4058
|
.p-confirm-popup.p-confirm-popup-flipped:after {
|
|
4047
4059
|
border-top-color: #ffffff;
|
|
@@ -5412,7 +5424,7 @@
|
|
|
5412
5424
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
5413
5425
|
}
|
|
5414
5426
|
.p-message .p-message-close:hover {
|
|
5415
|
-
background: rgba(255, 255, 255, 0.
|
|
5427
|
+
background: rgba(255, 255, 255, 0.5);
|
|
5416
5428
|
}
|
|
5417
5429
|
.p-message .p-message-close:focus-visible {
|
|
5418
5430
|
outline: 0 none;
|
|
@@ -5522,7 +5534,7 @@
|
|
|
5522
5534
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
5523
5535
|
}
|
|
5524
5536
|
.p-toast .p-toast-message .p-toast-icon-close:hover {
|
|
5525
|
-
background: rgba(255, 255, 255, 0.
|
|
5537
|
+
background: rgba(255, 255, 255, 0.5);
|
|
5526
5538
|
}
|
|
5527
5539
|
.p-toast .p-toast-message .p-toast-icon-close:focus-visible {
|
|
5528
5540
|
outline: 0 none;
|