@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
|
@@ -1658,6 +1658,9 @@
|
|
|
1658
1658
|
box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5);
|
|
1659
1659
|
border-color: #883cae;
|
|
1660
1660
|
}
|
|
1661
|
+
.p-treeselect.p-treeselect-clearable .p-treeselect-label {
|
|
1662
|
+
padding-right: 1.75rem;
|
|
1663
|
+
}
|
|
1661
1664
|
.p-treeselect .p-treeselect-label {
|
|
1662
1665
|
padding: 0.5rem 0.75rem;
|
|
1663
1666
|
transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s;
|
|
@@ -1679,6 +1682,10 @@
|
|
|
1679
1682
|
border-top-right-radius: 4px;
|
|
1680
1683
|
border-bottom-right-radius: 4px;
|
|
1681
1684
|
}
|
|
1685
|
+
.p-treeselect .p-treeselect-clear-icon {
|
|
1686
|
+
color: #495057;
|
|
1687
|
+
right: 2.357rem;
|
|
1688
|
+
}
|
|
1682
1689
|
.p-treeselect.p-invalid.p-component {
|
|
1683
1690
|
border-color: #dc3545;
|
|
1684
1691
|
}
|
|
@@ -1807,12 +1814,12 @@
|
|
|
1807
1814
|
transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s;
|
|
1808
1815
|
border-radius: 4px;
|
|
1809
1816
|
}
|
|
1810
|
-
.p-button:
|
|
1817
|
+
.p-button:not(:disabled):hover {
|
|
1811
1818
|
background: #7a38a7;
|
|
1812
1819
|
color: #ffffff;
|
|
1813
1820
|
border-color: #7a38a7;
|
|
1814
1821
|
}
|
|
1815
|
-
.p-button:
|
|
1822
|
+
.p-button:not(:disabled):active {
|
|
1816
1823
|
background: #68329e;
|
|
1817
1824
|
color: #ffffff;
|
|
1818
1825
|
border-color: #68329e;
|
|
@@ -1822,12 +1829,12 @@
|
|
|
1822
1829
|
color: #883cae;
|
|
1823
1830
|
border: 1px solid;
|
|
1824
1831
|
}
|
|
1825
|
-
.p-button.p-button-outlined:
|
|
1832
|
+
.p-button.p-button-outlined:not(:disabled):hover {
|
|
1826
1833
|
background: rgba(136, 60, 174, 0.04);
|
|
1827
1834
|
color: #883cae;
|
|
1828
1835
|
border: 1px solid;
|
|
1829
1836
|
}
|
|
1830
|
-
.p-button.p-button-outlined:
|
|
1837
|
+
.p-button.p-button-outlined:not(:disabled):active {
|
|
1831
1838
|
background: rgba(136, 60, 174, 0.16);
|
|
1832
1839
|
color: #883cae;
|
|
1833
1840
|
border: 1px solid;
|
|
@@ -1836,11 +1843,11 @@
|
|
|
1836
1843
|
color: #6c757d;
|
|
1837
1844
|
border-color: #6c757d;
|
|
1838
1845
|
}
|
|
1839
|
-
.p-button.p-button-outlined.p-button-plain:
|
|
1846
|
+
.p-button.p-button-outlined.p-button-plain:not(:disabled):hover {
|
|
1840
1847
|
background: #e9ecef;
|
|
1841
1848
|
color: #6c757d;
|
|
1842
1849
|
}
|
|
1843
|
-
.p-button.p-button-outlined.p-button-plain:
|
|
1850
|
+
.p-button.p-button-outlined.p-button-plain:not(:disabled):active {
|
|
1844
1851
|
background: #dee2e6;
|
|
1845
1852
|
color: #6c757d;
|
|
1846
1853
|
}
|
|
@@ -1849,12 +1856,12 @@
|
|
|
1849
1856
|
color: #883cae;
|
|
1850
1857
|
border-color: transparent;
|
|
1851
1858
|
}
|
|
1852
|
-
.p-button.p-button-text:
|
|
1859
|
+
.p-button.p-button-text:not(:disabled):hover {
|
|
1853
1860
|
background: rgba(136, 60, 174, 0.04);
|
|
1854
1861
|
color: #883cae;
|
|
1855
1862
|
border-color: transparent;
|
|
1856
1863
|
}
|
|
1857
|
-
.p-button.p-button-text:
|
|
1864
|
+
.p-button.p-button-text:not(:disabled):active {
|
|
1858
1865
|
background: rgba(136, 60, 174, 0.16);
|
|
1859
1866
|
color: #883cae;
|
|
1860
1867
|
border-color: transparent;
|
|
@@ -1862,11 +1869,11 @@
|
|
|
1862
1869
|
.p-button.p-button-text.p-button-plain {
|
|
1863
1870
|
color: #6c757d;
|
|
1864
1871
|
}
|
|
1865
|
-
.p-button.p-button-text.p-button-plain:
|
|
1872
|
+
.p-button.p-button-text.p-button-plain:not(:disabled):hover {
|
|
1866
1873
|
background: #e9ecef;
|
|
1867
1874
|
color: #6c757d;
|
|
1868
1875
|
}
|
|
1869
|
-
.p-button.p-button-text.p-button-plain:
|
|
1876
|
+
.p-button.p-button-text.p-button-plain:not(:disabled):active {
|
|
1870
1877
|
background: #dee2e6;
|
|
1871
1878
|
color: #6c757d;
|
|
1872
1879
|
}
|
|
@@ -1964,15 +1971,15 @@
|
|
|
1964
1971
|
background: #6c757d;
|
|
1965
1972
|
border: 1px solid #6c757d;
|
|
1966
1973
|
}
|
|
1967
|
-
.p-button.p-button-secondary:
|
|
1974
|
+
.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 {
|
|
1968
1975
|
background: #5a6268;
|
|
1969
1976
|
color: #ffffff;
|
|
1970
1977
|
border-color: #5a6268;
|
|
1971
1978
|
}
|
|
1972
|
-
.p-button.p-button-secondary:
|
|
1979
|
+
.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 {
|
|
1973
1980
|
box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
|
|
1974
1981
|
}
|
|
1975
|
-
.p-button.p-button-secondary:
|
|
1982
|
+
.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 {
|
|
1976
1983
|
background: #545b62;
|
|
1977
1984
|
color: #ffffff;
|
|
1978
1985
|
border-color: #4e555b;
|
|
@@ -1982,12 +1989,12 @@
|
|
|
1982
1989
|
color: #6c757d;
|
|
1983
1990
|
border: 1px solid;
|
|
1984
1991
|
}
|
|
1985
|
-
.p-button.p-button-secondary.p-button-outlined:
|
|
1992
|
+
.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 {
|
|
1986
1993
|
background: rgba(108, 117, 125, 0.04);
|
|
1987
1994
|
color: #6c757d;
|
|
1988
1995
|
border: 1px solid;
|
|
1989
1996
|
}
|
|
1990
|
-
.p-button.p-button-secondary.p-button-outlined:
|
|
1997
|
+
.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 {
|
|
1991
1998
|
background: rgba(108, 117, 125, 0.16);
|
|
1992
1999
|
color: #6c757d;
|
|
1993
2000
|
border: 1px solid;
|
|
@@ -1997,12 +2004,12 @@
|
|
|
1997
2004
|
color: #6c757d;
|
|
1998
2005
|
border-color: transparent;
|
|
1999
2006
|
}
|
|
2000
|
-
.p-button.p-button-secondary.p-button-text:
|
|
2007
|
+
.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 {
|
|
2001
2008
|
background: rgba(108, 117, 125, 0.04);
|
|
2002
2009
|
border-color: transparent;
|
|
2003
2010
|
color: #6c757d;
|
|
2004
2011
|
}
|
|
2005
|
-
.p-button.p-button-secondary.p-button-text:
|
|
2012
|
+
.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 {
|
|
2006
2013
|
background: rgba(108, 117, 125, 0.16);
|
|
2007
2014
|
border-color: transparent;
|
|
2008
2015
|
color: #6c757d;
|
|
@@ -2013,15 +2020,15 @@
|
|
|
2013
2020
|
background: #17a2b8;
|
|
2014
2021
|
border: 1px solid #17a2b8;
|
|
2015
2022
|
}
|
|
2016
|
-
.p-button.p-button-info:
|
|
2023
|
+
.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 {
|
|
2017
2024
|
background: #138496;
|
|
2018
2025
|
color: #ffffff;
|
|
2019
2026
|
border-color: #117a8b;
|
|
2020
2027
|
}
|
|
2021
|
-
.p-button.p-button-info:
|
|
2028
|
+
.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 {
|
|
2022
2029
|
box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
|
|
2023
2030
|
}
|
|
2024
|
-
.p-button.p-button-info:
|
|
2031
|
+
.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 {
|
|
2025
2032
|
background: #138496;
|
|
2026
2033
|
color: #ffffff;
|
|
2027
2034
|
border-color: #117a8b;
|
|
@@ -2031,12 +2038,12 @@
|
|
|
2031
2038
|
color: #17a2b8;
|
|
2032
2039
|
border: 1px solid;
|
|
2033
2040
|
}
|
|
2034
|
-
.p-button.p-button-info.p-button-outlined:
|
|
2041
|
+
.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 {
|
|
2035
2042
|
background: rgba(23, 162, 184, 0.04);
|
|
2036
2043
|
color: #17a2b8;
|
|
2037
2044
|
border: 1px solid;
|
|
2038
2045
|
}
|
|
2039
|
-
.p-button.p-button-info.p-button-outlined:
|
|
2046
|
+
.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 {
|
|
2040
2047
|
background: rgba(23, 162, 184, 0.16);
|
|
2041
2048
|
color: #17a2b8;
|
|
2042
2049
|
border: 1px solid;
|
|
@@ -2046,12 +2053,12 @@
|
|
|
2046
2053
|
color: #17a2b8;
|
|
2047
2054
|
border-color: transparent;
|
|
2048
2055
|
}
|
|
2049
|
-
.p-button.p-button-info.p-button-text:
|
|
2056
|
+
.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 {
|
|
2050
2057
|
background: rgba(23, 162, 184, 0.04);
|
|
2051
2058
|
border-color: transparent;
|
|
2052
2059
|
color: #17a2b8;
|
|
2053
2060
|
}
|
|
2054
|
-
.p-button.p-button-info.p-button-text:
|
|
2061
|
+
.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 {
|
|
2055
2062
|
background: rgba(23, 162, 184, 0.16);
|
|
2056
2063
|
border-color: transparent;
|
|
2057
2064
|
color: #17a2b8;
|
|
@@ -2062,15 +2069,15 @@
|
|
|
2062
2069
|
background: #28a745;
|
|
2063
2070
|
border: 1px solid #28a745;
|
|
2064
2071
|
}
|
|
2065
|
-
.p-button.p-button-success:
|
|
2072
|
+
.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 {
|
|
2066
2073
|
background: #218838;
|
|
2067
2074
|
color: #ffffff;
|
|
2068
2075
|
border-color: #1e7e34;
|
|
2069
2076
|
}
|
|
2070
|
-
.p-button.p-button-success:
|
|
2077
|
+
.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 {
|
|
2071
2078
|
box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
|
|
2072
2079
|
}
|
|
2073
|
-
.p-button.p-button-success:
|
|
2080
|
+
.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 {
|
|
2074
2081
|
background: #1e7e34;
|
|
2075
2082
|
color: #ffffff;
|
|
2076
2083
|
border-color: #1c7430;
|
|
@@ -2080,12 +2087,12 @@
|
|
|
2080
2087
|
color: #28a745;
|
|
2081
2088
|
border: 1px solid;
|
|
2082
2089
|
}
|
|
2083
|
-
.p-button.p-button-success.p-button-outlined:
|
|
2090
|
+
.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 {
|
|
2084
2091
|
background: rgba(40, 167, 69, 0.04);
|
|
2085
2092
|
color: #28a745;
|
|
2086
2093
|
border: 1px solid;
|
|
2087
2094
|
}
|
|
2088
|
-
.p-button.p-button-success.p-button-outlined:
|
|
2095
|
+
.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 {
|
|
2089
2096
|
background: rgba(40, 167, 69, 0.16);
|
|
2090
2097
|
color: #28a745;
|
|
2091
2098
|
border: 1px solid;
|
|
@@ -2095,12 +2102,12 @@
|
|
|
2095
2102
|
color: #28a745;
|
|
2096
2103
|
border-color: transparent;
|
|
2097
2104
|
}
|
|
2098
|
-
.p-button.p-button-success.p-button-text:
|
|
2105
|
+
.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 {
|
|
2099
2106
|
background: rgba(40, 167, 69, 0.04);
|
|
2100
2107
|
border-color: transparent;
|
|
2101
2108
|
color: #28a745;
|
|
2102
2109
|
}
|
|
2103
|
-
.p-button.p-button-success.p-button-text:
|
|
2110
|
+
.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 {
|
|
2104
2111
|
background: rgba(40, 167, 69, 0.16);
|
|
2105
2112
|
border-color: transparent;
|
|
2106
2113
|
color: #28a745;
|
|
@@ -2111,15 +2118,15 @@
|
|
|
2111
2118
|
background: #ffc107;
|
|
2112
2119
|
border: 1px solid #ffc107;
|
|
2113
2120
|
}
|
|
2114
|
-
.p-button.p-button-warning:
|
|
2121
|
+
.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 {
|
|
2115
2122
|
background: #e0a800;
|
|
2116
2123
|
color: #212529;
|
|
2117
2124
|
border-color: #d39e00;
|
|
2118
2125
|
}
|
|
2119
|
-
.p-button.p-button-warning:
|
|
2126
|
+
.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 {
|
|
2120
2127
|
box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
|
|
2121
2128
|
}
|
|
2122
|
-
.p-button.p-button-warning:
|
|
2129
|
+
.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 {
|
|
2123
2130
|
background: #d39e00;
|
|
2124
2131
|
color: #212529;
|
|
2125
2132
|
border-color: #c69500;
|
|
@@ -2129,12 +2136,12 @@
|
|
|
2129
2136
|
color: #ffc107;
|
|
2130
2137
|
border: 1px solid;
|
|
2131
2138
|
}
|
|
2132
|
-
.p-button.p-button-warning.p-button-outlined:
|
|
2139
|
+
.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 {
|
|
2133
2140
|
background: rgba(255, 193, 7, 0.04);
|
|
2134
2141
|
color: #ffc107;
|
|
2135
2142
|
border: 1px solid;
|
|
2136
2143
|
}
|
|
2137
|
-
.p-button.p-button-warning.p-button-outlined:
|
|
2144
|
+
.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 {
|
|
2138
2145
|
background: rgba(255, 193, 7, 0.16);
|
|
2139
2146
|
color: #ffc107;
|
|
2140
2147
|
border: 1px solid;
|
|
@@ -2144,12 +2151,12 @@
|
|
|
2144
2151
|
color: #ffc107;
|
|
2145
2152
|
border-color: transparent;
|
|
2146
2153
|
}
|
|
2147
|
-
.p-button.p-button-warning.p-button-text:
|
|
2154
|
+
.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 {
|
|
2148
2155
|
background: rgba(255, 193, 7, 0.04);
|
|
2149
2156
|
border-color: transparent;
|
|
2150
2157
|
color: #ffc107;
|
|
2151
2158
|
}
|
|
2152
|
-
.p-button.p-button-warning.p-button-text:
|
|
2159
|
+
.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 {
|
|
2153
2160
|
background: rgba(255, 193, 7, 0.16);
|
|
2154
2161
|
border-color: transparent;
|
|
2155
2162
|
color: #ffc107;
|
|
@@ -2160,15 +2167,15 @@
|
|
|
2160
2167
|
background: #6f42c1;
|
|
2161
2168
|
border: 1px solid #6f42c1;
|
|
2162
2169
|
}
|
|
2163
|
-
.p-button.p-button-help:
|
|
2170
|
+
.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 {
|
|
2164
2171
|
background: #633bad;
|
|
2165
2172
|
color: #ffffff;
|
|
2166
2173
|
border-color: #58349a;
|
|
2167
2174
|
}
|
|
2168
|
-
.p-button.p-button-help:
|
|
2175
|
+
.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 {
|
|
2169
2176
|
box-shadow: 0 0 0 0.2rem #d3c6ec;
|
|
2170
2177
|
}
|
|
2171
|
-
.p-button.p-button-help:
|
|
2178
|
+
.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 {
|
|
2172
2179
|
background: #58349a;
|
|
2173
2180
|
color: #ffffff;
|
|
2174
2181
|
border-color: #4d2e87;
|
|
@@ -2178,12 +2185,12 @@
|
|
|
2178
2185
|
color: #6f42c1;
|
|
2179
2186
|
border: 1px solid;
|
|
2180
2187
|
}
|
|
2181
|
-
.p-button.p-button-help.p-button-outlined:
|
|
2188
|
+
.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 {
|
|
2182
2189
|
background: rgba(111, 66, 193, 0.04);
|
|
2183
2190
|
color: #6f42c1;
|
|
2184
2191
|
border: 1px solid;
|
|
2185
2192
|
}
|
|
2186
|
-
.p-button.p-button-help.p-button-outlined:
|
|
2193
|
+
.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 {
|
|
2187
2194
|
background: rgba(111, 66, 193, 0.16);
|
|
2188
2195
|
color: #6f42c1;
|
|
2189
2196
|
border: 1px solid;
|
|
@@ -2193,12 +2200,12 @@
|
|
|
2193
2200
|
color: #6f42c1;
|
|
2194
2201
|
border-color: transparent;
|
|
2195
2202
|
}
|
|
2196
|
-
.p-button.p-button-help.p-button-text:
|
|
2203
|
+
.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 {
|
|
2197
2204
|
background: rgba(111, 66, 193, 0.04);
|
|
2198
2205
|
border-color: transparent;
|
|
2199
2206
|
color: #6f42c1;
|
|
2200
2207
|
}
|
|
2201
|
-
.p-button.p-button-help.p-button-text:
|
|
2208
|
+
.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 {
|
|
2202
2209
|
background: rgba(111, 66, 193, 0.16);
|
|
2203
2210
|
border-color: transparent;
|
|
2204
2211
|
color: #6f42c1;
|
|
@@ -2209,15 +2216,15 @@
|
|
|
2209
2216
|
background: #dc3545;
|
|
2210
2217
|
border: 1px solid #dc3545;
|
|
2211
2218
|
}
|
|
2212
|
-
.p-button.p-button-danger:
|
|
2219
|
+
.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 {
|
|
2213
2220
|
background: #c82333;
|
|
2214
2221
|
color: #ffffff;
|
|
2215
2222
|
border-color: #bd2130;
|
|
2216
2223
|
}
|
|
2217
|
-
.p-button.p-button-danger:
|
|
2224
|
+
.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 {
|
|
2218
2225
|
box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
|
|
2219
2226
|
}
|
|
2220
|
-
.p-button.p-button-danger:
|
|
2227
|
+
.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 {
|
|
2221
2228
|
background: #bd2130;
|
|
2222
2229
|
color: #ffffff;
|
|
2223
2230
|
border-color: #b21f2d;
|
|
@@ -2227,12 +2234,12 @@
|
|
|
2227
2234
|
color: #dc3545;
|
|
2228
2235
|
border: 1px solid;
|
|
2229
2236
|
}
|
|
2230
|
-
.p-button.p-button-danger.p-button-outlined:
|
|
2237
|
+
.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 {
|
|
2231
2238
|
background: rgba(220, 53, 69, 0.04);
|
|
2232
2239
|
color: #dc3545;
|
|
2233
2240
|
border: 1px solid;
|
|
2234
2241
|
}
|
|
2235
|
-
.p-button.p-button-danger.p-button-outlined:
|
|
2242
|
+
.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 {
|
|
2236
2243
|
background: rgba(220, 53, 69, 0.16);
|
|
2237
2244
|
color: #dc3545;
|
|
2238
2245
|
border: 1px solid;
|
|
@@ -2242,12 +2249,12 @@
|
|
|
2242
2249
|
color: #dc3545;
|
|
2243
2250
|
border-color: transparent;
|
|
2244
2251
|
}
|
|
2245
|
-
.p-button.p-button-danger.p-button-text:
|
|
2252
|
+
.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 {
|
|
2246
2253
|
background: rgba(220, 53, 69, 0.04);
|
|
2247
2254
|
border-color: transparent;
|
|
2248
2255
|
color: #dc3545;
|
|
2249
2256
|
}
|
|
2250
|
-
.p-button.p-button-danger.p-button-text:
|
|
2257
|
+
.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 {
|
|
2251
2258
|
background: rgba(220, 53, 69, 0.16);
|
|
2252
2259
|
border-color: transparent;
|
|
2253
2260
|
color: #dc3545;
|
|
@@ -2258,20 +2265,20 @@
|
|
|
2258
2265
|
background: transparent;
|
|
2259
2266
|
border: transparent;
|
|
2260
2267
|
}
|
|
2261
|
-
.p-button.p-button-link:
|
|
2268
|
+
.p-button.p-button-link:not(:disabled):hover {
|
|
2262
2269
|
background: transparent;
|
|
2263
2270
|
color: #7a38a7;
|
|
2264
2271
|
border-color: transparent;
|
|
2265
2272
|
}
|
|
2266
|
-
.p-button.p-button-link:
|
|
2273
|
+
.p-button.p-button-link:not(:disabled):hover .p-button-label {
|
|
2267
2274
|
text-decoration: underline;
|
|
2268
2275
|
}
|
|
2269
|
-
.p-button.p-button-link:
|
|
2276
|
+
.p-button.p-button-link:not(:disabled):focus {
|
|
2270
2277
|
background: transparent;
|
|
2271
2278
|
box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5);
|
|
2272
2279
|
border-color: transparent;
|
|
2273
2280
|
}
|
|
2274
|
-
.p-button.p-button-link:
|
|
2281
|
+
.p-button.p-button-link:not(:disabled):active {
|
|
2275
2282
|
background: transparent;
|
|
2276
2283
|
color: #883cae;
|
|
2277
2284
|
border-color: transparent;
|
|
@@ -2285,11 +2292,11 @@
|
|
|
2285
2292
|
color: #883cae;
|
|
2286
2293
|
border: 1px solid;
|
|
2287
2294
|
}
|
|
2288
|
-
.p-splitbutton.p-button-outlined > .p-button:
|
|
2295
|
+
.p-splitbutton.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2289
2296
|
background: rgba(136, 60, 174, 0.04);
|
|
2290
2297
|
color: #883cae;
|
|
2291
2298
|
}
|
|
2292
|
-
.p-splitbutton.p-button-outlined > .p-button:
|
|
2299
|
+
.p-splitbutton.p-button-outlined > .p-button:not(:disabled):active {
|
|
2293
2300
|
background: rgba(136, 60, 174, 0.16);
|
|
2294
2301
|
color: #883cae;
|
|
2295
2302
|
}
|
|
@@ -2297,11 +2304,11 @@
|
|
|
2297
2304
|
color: #6c757d;
|
|
2298
2305
|
border-color: #6c757d;
|
|
2299
2306
|
}
|
|
2300
|
-
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:
|
|
2307
|
+
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:not(:disabled):hover {
|
|
2301
2308
|
background: #e9ecef;
|
|
2302
2309
|
color: #6c757d;
|
|
2303
2310
|
}
|
|
2304
|
-
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:
|
|
2311
|
+
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:not(:disabled):active {
|
|
2305
2312
|
background: #dee2e6;
|
|
2306
2313
|
color: #6c757d;
|
|
2307
2314
|
}
|
|
@@ -2310,12 +2317,12 @@
|
|
|
2310
2317
|
color: #883cae;
|
|
2311
2318
|
border-color: transparent;
|
|
2312
2319
|
}
|
|
2313
|
-
.p-splitbutton.p-button-text > .p-button:
|
|
2320
|
+
.p-splitbutton.p-button-text > .p-button:not(:disabled):hover {
|
|
2314
2321
|
background: rgba(136, 60, 174, 0.04);
|
|
2315
2322
|
color: #883cae;
|
|
2316
2323
|
border-color: transparent;
|
|
2317
2324
|
}
|
|
2318
|
-
.p-splitbutton.p-button-text > .p-button:
|
|
2325
|
+
.p-splitbutton.p-button-text > .p-button:not(:disabled):active {
|
|
2319
2326
|
background: rgba(136, 60, 174, 0.16);
|
|
2320
2327
|
color: #883cae;
|
|
2321
2328
|
border-color: transparent;
|
|
@@ -2323,11 +2330,11 @@
|
|
|
2323
2330
|
.p-splitbutton.p-button-text.p-button-plain > .p-button {
|
|
2324
2331
|
color: #6c757d;
|
|
2325
2332
|
}
|
|
2326
|
-
.p-splitbutton.p-button-text.p-button-plain > .p-button:
|
|
2333
|
+
.p-splitbutton.p-button-text.p-button-plain > .p-button:not(:disabled):hover {
|
|
2327
2334
|
background: #e9ecef;
|
|
2328
2335
|
color: #6c757d;
|
|
2329
2336
|
}
|
|
2330
|
-
.p-splitbutton.p-button-text.p-button-plain > .p-button:
|
|
2337
|
+
.p-splitbutton.p-button-text.p-button-plain > .p-button:not(:disabled):active {
|
|
2331
2338
|
background: #dee2e6;
|
|
2332
2339
|
color: #6c757d;
|
|
2333
2340
|
}
|
|
@@ -2369,11 +2376,11 @@
|
|
|
2369
2376
|
color: #6c757d;
|
|
2370
2377
|
border: 1px solid;
|
|
2371
2378
|
}
|
|
2372
|
-
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:
|
|
2379
|
+
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2373
2380
|
background: rgba(108, 117, 125, 0.04);
|
|
2374
2381
|
color: #6c757d;
|
|
2375
2382
|
}
|
|
2376
|
-
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:
|
|
2383
|
+
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):active {
|
|
2377
2384
|
background: rgba(108, 117, 125, 0.16);
|
|
2378
2385
|
color: #6c757d;
|
|
2379
2386
|
}
|
|
@@ -2382,12 +2389,12 @@
|
|
|
2382
2389
|
color: #6c757d;
|
|
2383
2390
|
border-color: transparent;
|
|
2384
2391
|
}
|
|
2385
|
-
.p-splitbutton.p-button-secondary.p-button-text > .p-button:
|
|
2392
|
+
.p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):hover {
|
|
2386
2393
|
background: rgba(108, 117, 125, 0.04);
|
|
2387
2394
|
border-color: transparent;
|
|
2388
2395
|
color: #6c757d;
|
|
2389
2396
|
}
|
|
2390
|
-
.p-splitbutton.p-button-secondary.p-button-text > .p-button:
|
|
2397
|
+
.p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):active {
|
|
2391
2398
|
background: rgba(108, 117, 125, 0.16);
|
|
2392
2399
|
border-color: transparent;
|
|
2393
2400
|
color: #6c757d;
|
|
@@ -2398,11 +2405,11 @@
|
|
|
2398
2405
|
color: #17a2b8;
|
|
2399
2406
|
border: 1px solid;
|
|
2400
2407
|
}
|
|
2401
|
-
.p-splitbutton.p-button-info.p-button-outlined > .p-button:
|
|
2408
|
+
.p-splitbutton.p-button-info.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2402
2409
|
background: rgba(23, 162, 184, 0.04);
|
|
2403
2410
|
color: #17a2b8;
|
|
2404
2411
|
}
|
|
2405
|
-
.p-splitbutton.p-button-info.p-button-outlined > .p-button:
|
|
2412
|
+
.p-splitbutton.p-button-info.p-button-outlined > .p-button:not(:disabled):active {
|
|
2406
2413
|
background: rgba(23, 162, 184, 0.16);
|
|
2407
2414
|
color: #17a2b8;
|
|
2408
2415
|
}
|
|
@@ -2411,12 +2418,12 @@
|
|
|
2411
2418
|
color: #17a2b8;
|
|
2412
2419
|
border-color: transparent;
|
|
2413
2420
|
}
|
|
2414
|
-
.p-splitbutton.p-button-info.p-button-text > .p-button:
|
|
2421
|
+
.p-splitbutton.p-button-info.p-button-text > .p-button:not(:disabled):hover {
|
|
2415
2422
|
background: rgba(23, 162, 184, 0.04);
|
|
2416
2423
|
border-color: transparent;
|
|
2417
2424
|
color: #17a2b8;
|
|
2418
2425
|
}
|
|
2419
|
-
.p-splitbutton.p-button-info.p-button-text > .p-button:
|
|
2426
|
+
.p-splitbutton.p-button-info.p-button-text > .p-button:not(:disabled):active {
|
|
2420
2427
|
background: rgba(23, 162, 184, 0.16);
|
|
2421
2428
|
border-color: transparent;
|
|
2422
2429
|
color: #17a2b8;
|
|
@@ -2427,11 +2434,11 @@
|
|
|
2427
2434
|
color: #28a745;
|
|
2428
2435
|
border: 1px solid;
|
|
2429
2436
|
}
|
|
2430
|
-
.p-splitbutton.p-button-success.p-button-outlined > .p-button:
|
|
2437
|
+
.p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2431
2438
|
background: rgba(40, 167, 69, 0.04);
|
|
2432
2439
|
color: #28a745;
|
|
2433
2440
|
}
|
|
2434
|
-
.p-splitbutton.p-button-success.p-button-outlined > .p-button:
|
|
2441
|
+
.p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):active {
|
|
2435
2442
|
background: rgba(40, 167, 69, 0.16);
|
|
2436
2443
|
color: #28a745;
|
|
2437
2444
|
}
|
|
@@ -2440,12 +2447,12 @@
|
|
|
2440
2447
|
color: #28a745;
|
|
2441
2448
|
border-color: transparent;
|
|
2442
2449
|
}
|
|
2443
|
-
.p-splitbutton.p-button-success.p-button-text > .p-button:
|
|
2450
|
+
.p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):hover {
|
|
2444
2451
|
background: rgba(40, 167, 69, 0.04);
|
|
2445
2452
|
border-color: transparent;
|
|
2446
2453
|
color: #28a745;
|
|
2447
2454
|
}
|
|
2448
|
-
.p-splitbutton.p-button-success.p-button-text > .p-button:
|
|
2455
|
+
.p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):active {
|
|
2449
2456
|
background: rgba(40, 167, 69, 0.16);
|
|
2450
2457
|
border-color: transparent;
|
|
2451
2458
|
color: #28a745;
|
|
@@ -2456,11 +2463,11 @@
|
|
|
2456
2463
|
color: #ffc107;
|
|
2457
2464
|
border: 1px solid;
|
|
2458
2465
|
}
|
|
2459
|
-
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:
|
|
2466
|
+
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2460
2467
|
background: rgba(255, 193, 7, 0.04);
|
|
2461
2468
|
color: #ffc107;
|
|
2462
2469
|
}
|
|
2463
|
-
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:
|
|
2470
|
+
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):active {
|
|
2464
2471
|
background: rgba(255, 193, 7, 0.16);
|
|
2465
2472
|
color: #ffc107;
|
|
2466
2473
|
}
|
|
@@ -2469,12 +2476,12 @@
|
|
|
2469
2476
|
color: #ffc107;
|
|
2470
2477
|
border-color: transparent;
|
|
2471
2478
|
}
|
|
2472
|
-
.p-splitbutton.p-button-warning.p-button-text > .p-button:
|
|
2479
|
+
.p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):hover {
|
|
2473
2480
|
background: rgba(255, 193, 7, 0.04);
|
|
2474
2481
|
border-color: transparent;
|
|
2475
2482
|
color: #ffc107;
|
|
2476
2483
|
}
|
|
2477
|
-
.p-splitbutton.p-button-warning.p-button-text > .p-button:
|
|
2484
|
+
.p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):active {
|
|
2478
2485
|
background: rgba(255, 193, 7, 0.16);
|
|
2479
2486
|
border-color: transparent;
|
|
2480
2487
|
color: #ffc107;
|
|
@@ -2485,11 +2492,11 @@
|
|
|
2485
2492
|
color: #6f42c1;
|
|
2486
2493
|
border: 1px solid;
|
|
2487
2494
|
}
|
|
2488
|
-
.p-splitbutton.p-button-help.p-button-outlined > .p-button:
|
|
2495
|
+
.p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2489
2496
|
background: rgba(111, 66, 193, 0.04);
|
|
2490
2497
|
color: #6f42c1;
|
|
2491
2498
|
}
|
|
2492
|
-
.p-splitbutton.p-button-help.p-button-outlined > .p-button:
|
|
2499
|
+
.p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):active {
|
|
2493
2500
|
background: rgba(111, 66, 193, 0.16);
|
|
2494
2501
|
color: #6f42c1;
|
|
2495
2502
|
}
|
|
@@ -2498,12 +2505,12 @@
|
|
|
2498
2505
|
color: #6f42c1;
|
|
2499
2506
|
border-color: transparent;
|
|
2500
2507
|
}
|
|
2501
|
-
.p-splitbutton.p-button-help.p-button-text > .p-button:
|
|
2508
|
+
.p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):hover {
|
|
2502
2509
|
background: rgba(111, 66, 193, 0.04);
|
|
2503
2510
|
border-color: transparent;
|
|
2504
2511
|
color: #6f42c1;
|
|
2505
2512
|
}
|
|
2506
|
-
.p-splitbutton.p-button-help.p-button-text > .p-button:
|
|
2513
|
+
.p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):active {
|
|
2507
2514
|
background: rgba(111, 66, 193, 0.16);
|
|
2508
2515
|
border-color: transparent;
|
|
2509
2516
|
color: #6f42c1;
|
|
@@ -2514,11 +2521,11 @@
|
|
|
2514
2521
|
color: #dc3545;
|
|
2515
2522
|
border: 1px solid;
|
|
2516
2523
|
}
|
|
2517
|
-
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:
|
|
2524
|
+
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2518
2525
|
background: rgba(220, 53, 69, 0.04);
|
|
2519
2526
|
color: #dc3545;
|
|
2520
2527
|
}
|
|
2521
|
-
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:
|
|
2528
|
+
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):active {
|
|
2522
2529
|
background: rgba(220, 53, 69, 0.16);
|
|
2523
2530
|
color: #dc3545;
|
|
2524
2531
|
}
|
|
@@ -2527,12 +2534,12 @@
|
|
|
2527
2534
|
color: #dc3545;
|
|
2528
2535
|
border-color: transparent;
|
|
2529
2536
|
}
|
|
2530
|
-
.p-splitbutton.p-button-danger.p-button-text > .p-button:
|
|
2537
|
+
.p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):hover {
|
|
2531
2538
|
background: rgba(220, 53, 69, 0.04);
|
|
2532
2539
|
border-color: transparent;
|
|
2533
2540
|
color: #dc3545;
|
|
2534
2541
|
}
|
|
2535
|
-
.p-splitbutton.p-button-danger.p-button-text > .p-button:
|
|
2542
|
+
.p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):active {
|
|
2536
2543
|
background: rgba(220, 53, 69, 0.16);
|
|
2537
2544
|
border-color: transparent;
|
|
2538
2545
|
color: #dc3545;
|
|
@@ -2604,6 +2611,7 @@
|
|
|
2604
2611
|
|
|
2605
2612
|
.p-speeddial-mask {
|
|
2606
2613
|
background-color: rgba(0, 0, 0, 0.4);
|
|
2614
|
+
border-radius: 4px;
|
|
2607
2615
|
}
|
|
2608
2616
|
|
|
2609
2617
|
.p-carousel .p-carousel-content .p-carousel-prev,
|
|
@@ -2785,6 +2793,10 @@
|
|
|
2785
2793
|
background: #883cae;
|
|
2786
2794
|
color: #ffffff;
|
|
2787
2795
|
}
|
|
2796
|
+
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
|
|
2797
|
+
outline: 0.15rem solid rgba(136, 60, 174, 0.5);
|
|
2798
|
+
outline-offset: -0.15rem;
|
|
2799
|
+
}
|
|
2788
2800
|
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
|
|
2789
2801
|
box-shadow: inset 0 2px 0 0 #883cae;
|
|
2790
2802
|
}
|
|
@@ -5424,7 +5436,7 @@
|
|
|
5424
5436
|
transition: box-shadow 0.15s;
|
|
5425
5437
|
}
|
|
5426
5438
|
.p-message .p-message-close:hover {
|
|
5427
|
-
background: rgba(255, 255, 255, 0.
|
|
5439
|
+
background: rgba(255, 255, 255, 0.5);
|
|
5428
5440
|
}
|
|
5429
5441
|
.p-message .p-message-close:focus-visible {
|
|
5430
5442
|
outline: 0 none;
|
|
@@ -5534,7 +5546,7 @@
|
|
|
5534
5546
|
transition: box-shadow 0.15s;
|
|
5535
5547
|
}
|
|
5536
5548
|
.p-toast .p-toast-message .p-toast-icon-close:hover {
|
|
5537
|
-
background: rgba(255, 255, 255, 0.
|
|
5549
|
+
background: rgba(255, 255, 255, 0.5);
|
|
5538
5550
|
}
|
|
5539
5551
|
.p-toast .p-toast-message .p-toast-icon-close:focus-visible {
|
|
5540
5552
|
outline: 0 none;
|