@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
|
@@ -1674,6 +1674,9 @@
|
|
|
1674
1674
|
box-shadow: 0 0 0 0.2rem #C0D0E0;
|
|
1675
1675
|
border-color: #81A1C1;
|
|
1676
1676
|
}
|
|
1677
|
+
.p-treeselect.p-treeselect-clearable .p-treeselect-label {
|
|
1678
|
+
padding-right: 1.5rem;
|
|
1679
|
+
}
|
|
1677
1680
|
.p-treeselect .p-treeselect-label {
|
|
1678
1681
|
padding: 0.5rem 0.5rem;
|
|
1679
1682
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
@@ -1695,6 +1698,10 @@
|
|
|
1695
1698
|
border-top-right-radius: 4px;
|
|
1696
1699
|
border-bottom-right-radius: 4px;
|
|
1697
1700
|
}
|
|
1701
|
+
.p-treeselect .p-treeselect-clear-icon {
|
|
1702
|
+
color: #81A1C1;
|
|
1703
|
+
right: 2.357rem;
|
|
1704
|
+
}
|
|
1698
1705
|
.p-treeselect.p-invalid.p-component {
|
|
1699
1706
|
border-color: #BF616A;
|
|
1700
1707
|
}
|
|
@@ -1823,12 +1830,12 @@
|
|
|
1823
1830
|
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
1824
1831
|
border-radius: 4px;
|
|
1825
1832
|
}
|
|
1826
|
-
.p-button:
|
|
1833
|
+
.p-button:not(:disabled):hover {
|
|
1827
1834
|
background: #81A1C1;
|
|
1828
1835
|
color: #ffffff;
|
|
1829
1836
|
border-color: #51749e;
|
|
1830
1837
|
}
|
|
1831
|
-
.p-button:
|
|
1838
|
+
.p-button:not(:disabled):active {
|
|
1832
1839
|
background: #48678c;
|
|
1833
1840
|
color: #ffffff;
|
|
1834
1841
|
border-color: #48678c;
|
|
@@ -1838,12 +1845,12 @@
|
|
|
1838
1845
|
color: #5E81AC;
|
|
1839
1846
|
border: 2px solid;
|
|
1840
1847
|
}
|
|
1841
|
-
.p-button.p-button-outlined:
|
|
1848
|
+
.p-button.p-button-outlined:not(:disabled):hover {
|
|
1842
1849
|
background: rgba(94, 129, 172, 0.12);
|
|
1843
1850
|
color: #5E81AC;
|
|
1844
1851
|
border: 2px solid;
|
|
1845
1852
|
}
|
|
1846
|
-
.p-button.p-button-outlined:
|
|
1853
|
+
.p-button.p-button-outlined:not(:disabled):active {
|
|
1847
1854
|
background: rgba(94, 129, 172, 0.24);
|
|
1848
1855
|
color: #5E81AC;
|
|
1849
1856
|
border: 2px solid;
|
|
@@ -1852,11 +1859,11 @@
|
|
|
1852
1859
|
color: #81A1C1;
|
|
1853
1860
|
border-color: #81A1C1;
|
|
1854
1861
|
}
|
|
1855
|
-
.p-button.p-button-outlined.p-button-plain:
|
|
1862
|
+
.p-button.p-button-outlined.p-button-plain:not(:disabled):hover {
|
|
1856
1863
|
background: #ffffff;
|
|
1857
1864
|
color: #81A1C1;
|
|
1858
1865
|
}
|
|
1859
|
-
.p-button.p-button-outlined.p-button-plain:
|
|
1866
|
+
.p-button.p-button-outlined.p-button-plain:not(:disabled):active {
|
|
1860
1867
|
background: #E5E9F0;
|
|
1861
1868
|
color: #81A1C1;
|
|
1862
1869
|
}
|
|
@@ -1865,12 +1872,12 @@
|
|
|
1865
1872
|
color: #5E81AC;
|
|
1866
1873
|
border-color: transparent;
|
|
1867
1874
|
}
|
|
1868
|
-
.p-button.p-button-text:
|
|
1875
|
+
.p-button.p-button-text:not(:disabled):hover {
|
|
1869
1876
|
background: rgba(94, 129, 172, 0.12);
|
|
1870
1877
|
color: #5E81AC;
|
|
1871
1878
|
border-color: transparent;
|
|
1872
1879
|
}
|
|
1873
|
-
.p-button.p-button-text:
|
|
1880
|
+
.p-button.p-button-text:not(:disabled):active {
|
|
1874
1881
|
background: rgba(94, 129, 172, 0.24);
|
|
1875
1882
|
color: #5E81AC;
|
|
1876
1883
|
border-color: transparent;
|
|
@@ -1878,11 +1885,11 @@
|
|
|
1878
1885
|
.p-button.p-button-text.p-button-plain {
|
|
1879
1886
|
color: #81A1C1;
|
|
1880
1887
|
}
|
|
1881
|
-
.p-button.p-button-text.p-button-plain:
|
|
1888
|
+
.p-button.p-button-text.p-button-plain:not(:disabled):hover {
|
|
1882
1889
|
background: #ffffff;
|
|
1883
1890
|
color: #81A1C1;
|
|
1884
1891
|
}
|
|
1885
|
-
.p-button.p-button-text.p-button-plain:
|
|
1892
|
+
.p-button.p-button-text.p-button-plain:not(:disabled):active {
|
|
1886
1893
|
background: #E5E9F0;
|
|
1887
1894
|
color: #81A1C1;
|
|
1888
1895
|
}
|
|
@@ -1980,15 +1987,15 @@
|
|
|
1980
1987
|
background: #4C566A;
|
|
1981
1988
|
border: 2px solid #4C566A;
|
|
1982
1989
|
}
|
|
1983
|
-
.p-button.p-button-secondary:
|
|
1990
|
+
.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 {
|
|
1984
1991
|
background: #707888;
|
|
1985
1992
|
color: #ffffff;
|
|
1986
1993
|
border-color: #4C566A;
|
|
1987
1994
|
}
|
|
1988
|
-
.p-button.p-button-secondary:
|
|
1995
|
+
.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 {
|
|
1989
1996
|
box-shadow: 0 0 0 0.2rem #b3bac8;
|
|
1990
1997
|
}
|
|
1991
|
-
.p-button.p-button-secondary:
|
|
1998
|
+
.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 {
|
|
1992
1999
|
background: #2E3440;
|
|
1993
2000
|
color: #ffffff;
|
|
1994
2001
|
border-color: #2E3440;
|
|
@@ -1998,12 +2005,12 @@
|
|
|
1998
2005
|
color: #4C566A;
|
|
1999
2006
|
border: 2px solid;
|
|
2000
2007
|
}
|
|
2001
|
-
.p-button.p-button-secondary.p-button-outlined:
|
|
2008
|
+
.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 {
|
|
2002
2009
|
background: rgba(76, 86, 106, 0.12);
|
|
2003
2010
|
color: #4C566A;
|
|
2004
2011
|
border: 2px solid;
|
|
2005
2012
|
}
|
|
2006
|
-
.p-button.p-button-secondary.p-button-outlined:
|
|
2013
|
+
.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 {
|
|
2007
2014
|
background: rgba(76, 86, 106, 0.24);
|
|
2008
2015
|
color: #4C566A;
|
|
2009
2016
|
border: 2px solid;
|
|
@@ -2013,12 +2020,12 @@
|
|
|
2013
2020
|
color: #4C566A;
|
|
2014
2021
|
border-color: transparent;
|
|
2015
2022
|
}
|
|
2016
|
-
.p-button.p-button-secondary.p-button-text:
|
|
2023
|
+
.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 {
|
|
2017
2024
|
background: rgba(76, 86, 106, 0.12);
|
|
2018
2025
|
border-color: transparent;
|
|
2019
2026
|
color: #4C566A;
|
|
2020
2027
|
}
|
|
2021
|
-
.p-button.p-button-secondary.p-button-text:
|
|
2028
|
+
.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 {
|
|
2022
2029
|
background: rgba(76, 86, 106, 0.24);
|
|
2023
2030
|
border-color: transparent;
|
|
2024
2031
|
color: #4C566A;
|
|
@@ -2029,15 +2036,15 @@
|
|
|
2029
2036
|
background: #639BB2;
|
|
2030
2037
|
border: 2px solid #639BB2;
|
|
2031
2038
|
}
|
|
2032
|
-
.p-button.p-button-info:
|
|
2039
|
+
.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 {
|
|
2033
2040
|
background: #88C0D0;
|
|
2034
2041
|
color: #ffffff;
|
|
2035
2042
|
border-color: #639BB2;
|
|
2036
2043
|
}
|
|
2037
|
-
.p-button.p-button-info:
|
|
2044
|
+
.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 {
|
|
2038
2045
|
box-shadow: 0 0 0 0.2rem #c1d7e0;
|
|
2039
2046
|
}
|
|
2040
|
-
.p-button.p-button-info:
|
|
2047
|
+
.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 {
|
|
2041
2048
|
background: #497e94;
|
|
2042
2049
|
color: #ffffff;
|
|
2043
2050
|
border-color: #497e94;
|
|
@@ -2047,12 +2054,12 @@
|
|
|
2047
2054
|
color: #639BB2;
|
|
2048
2055
|
border: 2px solid;
|
|
2049
2056
|
}
|
|
2050
|
-
.p-button.p-button-info.p-button-outlined:
|
|
2057
|
+
.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 {
|
|
2051
2058
|
background: rgba(99, 155, 178, 0.12);
|
|
2052
2059
|
color: #639BB2;
|
|
2053
2060
|
border: 2px solid;
|
|
2054
2061
|
}
|
|
2055
|
-
.p-button.p-button-info.p-button-outlined:
|
|
2062
|
+
.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 {
|
|
2056
2063
|
background: rgba(99, 155, 178, 0.24);
|
|
2057
2064
|
color: #639BB2;
|
|
2058
2065
|
border: 2px solid;
|
|
@@ -2062,12 +2069,12 @@
|
|
|
2062
2069
|
color: #639BB2;
|
|
2063
2070
|
border-color: transparent;
|
|
2064
2071
|
}
|
|
2065
|
-
.p-button.p-button-info.p-button-text:
|
|
2072
|
+
.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 {
|
|
2066
2073
|
background: rgba(99, 155, 178, 0.12);
|
|
2067
2074
|
border-color: transparent;
|
|
2068
2075
|
color: #639BB2;
|
|
2069
2076
|
}
|
|
2070
|
-
.p-button.p-button-info.p-button-text:
|
|
2077
|
+
.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 {
|
|
2071
2078
|
background: rgba(99, 155, 178, 0.24);
|
|
2072
2079
|
border-color: transparent;
|
|
2073
2080
|
color: #639BB2;
|
|
@@ -2078,15 +2085,15 @@
|
|
|
2078
2085
|
background: #7FA366;
|
|
2079
2086
|
border: 2px solid #7FA366;
|
|
2080
2087
|
}
|
|
2081
|
-
.p-button.p-button-success:
|
|
2088
|
+
.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 {
|
|
2082
2089
|
background: #A3BE8C;
|
|
2083
2090
|
color: #ffffff;
|
|
2084
2091
|
border-color: #7FA366;
|
|
2085
2092
|
}
|
|
2086
|
-
.p-button.p-button-success:
|
|
2093
|
+
.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 {
|
|
2087
2094
|
box-shadow: 0 0 0 0.2rem #ccdac2;
|
|
2088
2095
|
}
|
|
2089
|
-
.p-button.p-button-success:
|
|
2096
|
+
.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 {
|
|
2090
2097
|
background: #658450;
|
|
2091
2098
|
color: #ffffff;
|
|
2092
2099
|
border-color: #658450;
|
|
@@ -2096,12 +2103,12 @@
|
|
|
2096
2103
|
color: #7FA366;
|
|
2097
2104
|
border: 2px solid;
|
|
2098
2105
|
}
|
|
2099
|
-
.p-button.p-button-success.p-button-outlined:
|
|
2106
|
+
.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 {
|
|
2100
2107
|
background: rgba(127, 163, 102, 0.12);
|
|
2101
2108
|
color: #7FA366;
|
|
2102
2109
|
border: 2px solid;
|
|
2103
2110
|
}
|
|
2104
|
-
.p-button.p-button-success.p-button-outlined:
|
|
2111
|
+
.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 {
|
|
2105
2112
|
background: rgba(127, 163, 102, 0.24);
|
|
2106
2113
|
color: #7FA366;
|
|
2107
2114
|
border: 2px solid;
|
|
@@ -2111,12 +2118,12 @@
|
|
|
2111
2118
|
color: #7FA366;
|
|
2112
2119
|
border-color: transparent;
|
|
2113
2120
|
}
|
|
2114
|
-
.p-button.p-button-success.p-button-text:
|
|
2121
|
+
.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 {
|
|
2115
2122
|
background: rgba(127, 163, 102, 0.12);
|
|
2116
2123
|
border-color: transparent;
|
|
2117
2124
|
color: #7FA366;
|
|
2118
2125
|
}
|
|
2119
|
-
.p-button.p-button-success.p-button-text:
|
|
2126
|
+
.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 {
|
|
2120
2127
|
background: rgba(127, 163, 102, 0.24);
|
|
2121
2128
|
border-color: transparent;
|
|
2122
2129
|
color: #7FA366;
|
|
@@ -2127,15 +2134,15 @@
|
|
|
2127
2134
|
background: #D08770;
|
|
2128
2135
|
border: 2px solid #D08770;
|
|
2129
2136
|
}
|
|
2130
|
-
.p-button.p-button-warning:
|
|
2137
|
+
.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 {
|
|
2131
2138
|
background: #E2AC94;
|
|
2132
2139
|
color: #ffffff;
|
|
2133
2140
|
border-color: #D08770;
|
|
2134
2141
|
}
|
|
2135
|
-
.p-button.p-button-warning:
|
|
2142
|
+
.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 {
|
|
2136
2143
|
box-shadow: 0 0 0 0.2rem #eccfc6;
|
|
2137
2144
|
}
|
|
2138
|
-
.p-button.p-button-warning:
|
|
2145
|
+
.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 {
|
|
2139
2146
|
background: #c05f40;
|
|
2140
2147
|
color: #ffffff;
|
|
2141
2148
|
border-color: #c05f40;
|
|
@@ -2145,12 +2152,12 @@
|
|
|
2145
2152
|
color: #D08770;
|
|
2146
2153
|
border: 2px solid;
|
|
2147
2154
|
}
|
|
2148
|
-
.p-button.p-button-warning.p-button-outlined:
|
|
2155
|
+
.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 {
|
|
2149
2156
|
background: rgba(208, 135, 112, 0.12);
|
|
2150
2157
|
color: #D08770;
|
|
2151
2158
|
border: 2px solid;
|
|
2152
2159
|
}
|
|
2153
|
-
.p-button.p-button-warning.p-button-outlined:
|
|
2160
|
+
.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 {
|
|
2154
2161
|
background: rgba(208, 135, 112, 0.24);
|
|
2155
2162
|
color: #D08770;
|
|
2156
2163
|
border: 2px solid;
|
|
@@ -2160,12 +2167,12 @@
|
|
|
2160
2167
|
color: #D08770;
|
|
2161
2168
|
border-color: transparent;
|
|
2162
2169
|
}
|
|
2163
|
-
.p-button.p-button-warning.p-button-text:
|
|
2170
|
+
.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 {
|
|
2164
2171
|
background: rgba(208, 135, 112, 0.12);
|
|
2165
2172
|
border-color: transparent;
|
|
2166
2173
|
color: #D08770;
|
|
2167
2174
|
}
|
|
2168
|
-
.p-button.p-button-warning.p-button-text:
|
|
2175
|
+
.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 {
|
|
2169
2176
|
background: rgba(208, 135, 112, 0.24);
|
|
2170
2177
|
border-color: transparent;
|
|
2171
2178
|
color: #D08770;
|
|
@@ -2176,15 +2183,15 @@
|
|
|
2176
2183
|
background: #9A6796;
|
|
2177
2184
|
border: 2px solid #9A6796;
|
|
2178
2185
|
}
|
|
2179
|
-
.p-button.p-button-help:
|
|
2186
|
+
.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 {
|
|
2180
2187
|
background: #B48EAD;
|
|
2181
2188
|
color: #ffffff;
|
|
2182
2189
|
border-color: #9A6796;
|
|
2183
2190
|
}
|
|
2184
|
-
.p-button.p-button-help:
|
|
2191
|
+
.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 {
|
|
2185
2192
|
box-shadow: 0 0 0 0.2rem #d7c2d5;
|
|
2186
2193
|
}
|
|
2187
|
-
.p-button.p-button-help:
|
|
2194
|
+
.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 {
|
|
2188
2195
|
background: #7c5278;
|
|
2189
2196
|
color: #ffffff;
|
|
2190
2197
|
border-color: #7c5278;
|
|
@@ -2194,12 +2201,12 @@
|
|
|
2194
2201
|
color: #9A6796;
|
|
2195
2202
|
border: 2px solid;
|
|
2196
2203
|
}
|
|
2197
|
-
.p-button.p-button-help.p-button-outlined:
|
|
2204
|
+
.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 {
|
|
2198
2205
|
background: rgba(154, 103, 150, 0.12);
|
|
2199
2206
|
color: #9A6796;
|
|
2200
2207
|
border: 2px solid;
|
|
2201
2208
|
}
|
|
2202
|
-
.p-button.p-button-help.p-button-outlined:
|
|
2209
|
+
.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 {
|
|
2203
2210
|
background: rgba(154, 103, 150, 0.24);
|
|
2204
2211
|
color: #9A6796;
|
|
2205
2212
|
border: 2px solid;
|
|
@@ -2209,12 +2216,12 @@
|
|
|
2209
2216
|
color: #9A6796;
|
|
2210
2217
|
border-color: transparent;
|
|
2211
2218
|
}
|
|
2212
|
-
.p-button.p-button-help.p-button-text:
|
|
2219
|
+
.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 {
|
|
2213
2220
|
background: rgba(154, 103, 150, 0.12);
|
|
2214
2221
|
border-color: transparent;
|
|
2215
2222
|
color: #9A6796;
|
|
2216
2223
|
}
|
|
2217
|
-
.p-button.p-button-help.p-button-text:
|
|
2224
|
+
.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 {
|
|
2218
2225
|
background: rgba(154, 103, 150, 0.24);
|
|
2219
2226
|
border-color: transparent;
|
|
2220
2227
|
color: #9A6796;
|
|
@@ -2225,15 +2232,15 @@
|
|
|
2225
2232
|
background: #BF616A;
|
|
2226
2233
|
border: 2px solid #BF616A;
|
|
2227
2234
|
}
|
|
2228
|
-
.p-button.p-button-danger:
|
|
2235
|
+
.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 {
|
|
2229
2236
|
background: #D88889;
|
|
2230
2237
|
color: #ffffff;
|
|
2231
2238
|
border-color: #BF616A;
|
|
2232
2239
|
}
|
|
2233
|
-
.p-button.p-button-danger:
|
|
2240
|
+
.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 {
|
|
2234
2241
|
box-shadow: 0 0 0 0.2rem #e5c0c3;
|
|
2235
2242
|
}
|
|
2236
|
-
.p-button.p-button-danger:
|
|
2243
|
+
.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 {
|
|
2237
2244
|
background: #a4424c;
|
|
2238
2245
|
color: #ffffff;
|
|
2239
2246
|
border-color: #a4424c;
|
|
@@ -2243,12 +2250,12 @@
|
|
|
2243
2250
|
color: #BF616A;
|
|
2244
2251
|
border: 2px solid;
|
|
2245
2252
|
}
|
|
2246
|
-
.p-button.p-button-danger.p-button-outlined:
|
|
2253
|
+
.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 {
|
|
2247
2254
|
background: rgba(191, 97, 106, 0.12);
|
|
2248
2255
|
color: #BF616A;
|
|
2249
2256
|
border: 2px solid;
|
|
2250
2257
|
}
|
|
2251
|
-
.p-button.p-button-danger.p-button-outlined:
|
|
2258
|
+
.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 {
|
|
2252
2259
|
background: rgba(191, 97, 106, 0.24);
|
|
2253
2260
|
color: #BF616A;
|
|
2254
2261
|
border: 2px solid;
|
|
@@ -2258,12 +2265,12 @@
|
|
|
2258
2265
|
color: #BF616A;
|
|
2259
2266
|
border-color: transparent;
|
|
2260
2267
|
}
|
|
2261
|
-
.p-button.p-button-danger.p-button-text:
|
|
2268
|
+
.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 {
|
|
2262
2269
|
background: rgba(191, 97, 106, 0.12);
|
|
2263
2270
|
border-color: transparent;
|
|
2264
2271
|
color: #BF616A;
|
|
2265
2272
|
}
|
|
2266
|
-
.p-button.p-button-danger.p-button-text:
|
|
2273
|
+
.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 {
|
|
2267
2274
|
background: rgba(191, 97, 106, 0.24);
|
|
2268
2275
|
border-color: transparent;
|
|
2269
2276
|
color: #BF616A;
|
|
@@ -2274,20 +2281,20 @@
|
|
|
2274
2281
|
background: transparent;
|
|
2275
2282
|
border: transparent;
|
|
2276
2283
|
}
|
|
2277
|
-
.p-button.p-button-link:
|
|
2284
|
+
.p-button.p-button-link:not(:disabled):hover {
|
|
2278
2285
|
background: transparent;
|
|
2279
2286
|
color: #48678c;
|
|
2280
2287
|
border-color: transparent;
|
|
2281
2288
|
}
|
|
2282
|
-
.p-button.p-button-link:
|
|
2289
|
+
.p-button.p-button-link:not(:disabled):hover .p-button-label {
|
|
2283
2290
|
text-decoration: underline;
|
|
2284
2291
|
}
|
|
2285
|
-
.p-button.p-button-link:
|
|
2292
|
+
.p-button.p-button-link:not(:disabled):focus {
|
|
2286
2293
|
background: transparent;
|
|
2287
2294
|
box-shadow: 0 0 0 0.2rem #C0D0E0;
|
|
2288
2295
|
border-color: transparent;
|
|
2289
2296
|
}
|
|
2290
|
-
.p-button.p-button-link:
|
|
2297
|
+
.p-button.p-button-link:not(:disabled):active {
|
|
2291
2298
|
background: transparent;
|
|
2292
2299
|
color: #48678c;
|
|
2293
2300
|
border-color: transparent;
|
|
@@ -2301,11 +2308,11 @@
|
|
|
2301
2308
|
color: #5E81AC;
|
|
2302
2309
|
border: 2px solid;
|
|
2303
2310
|
}
|
|
2304
|
-
.p-splitbutton.p-button-outlined > .p-button:
|
|
2311
|
+
.p-splitbutton.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2305
2312
|
background: rgba(94, 129, 172, 0.12);
|
|
2306
2313
|
color: #5E81AC;
|
|
2307
2314
|
}
|
|
2308
|
-
.p-splitbutton.p-button-outlined > .p-button:
|
|
2315
|
+
.p-splitbutton.p-button-outlined > .p-button:not(:disabled):active {
|
|
2309
2316
|
background: rgba(94, 129, 172, 0.24);
|
|
2310
2317
|
color: #5E81AC;
|
|
2311
2318
|
}
|
|
@@ -2313,11 +2320,11 @@
|
|
|
2313
2320
|
color: #81A1C1;
|
|
2314
2321
|
border-color: #81A1C1;
|
|
2315
2322
|
}
|
|
2316
|
-
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:
|
|
2323
|
+
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:not(:disabled):hover {
|
|
2317
2324
|
background: #ffffff;
|
|
2318
2325
|
color: #81A1C1;
|
|
2319
2326
|
}
|
|
2320
|
-
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:
|
|
2327
|
+
.p-splitbutton.p-button-outlined.p-button-plain > .p-button:not(:disabled):active {
|
|
2321
2328
|
background: #E5E9F0;
|
|
2322
2329
|
color: #81A1C1;
|
|
2323
2330
|
}
|
|
@@ -2326,12 +2333,12 @@
|
|
|
2326
2333
|
color: #5E81AC;
|
|
2327
2334
|
border-color: transparent;
|
|
2328
2335
|
}
|
|
2329
|
-
.p-splitbutton.p-button-text > .p-button:
|
|
2336
|
+
.p-splitbutton.p-button-text > .p-button:not(:disabled):hover {
|
|
2330
2337
|
background: rgba(94, 129, 172, 0.12);
|
|
2331
2338
|
color: #5E81AC;
|
|
2332
2339
|
border-color: transparent;
|
|
2333
2340
|
}
|
|
2334
|
-
.p-splitbutton.p-button-text > .p-button:
|
|
2341
|
+
.p-splitbutton.p-button-text > .p-button:not(:disabled):active {
|
|
2335
2342
|
background: rgba(94, 129, 172, 0.24);
|
|
2336
2343
|
color: #5E81AC;
|
|
2337
2344
|
border-color: transparent;
|
|
@@ -2339,11 +2346,11 @@
|
|
|
2339
2346
|
.p-splitbutton.p-button-text.p-button-plain > .p-button {
|
|
2340
2347
|
color: #81A1C1;
|
|
2341
2348
|
}
|
|
2342
|
-
.p-splitbutton.p-button-text.p-button-plain > .p-button:
|
|
2349
|
+
.p-splitbutton.p-button-text.p-button-plain > .p-button:not(:disabled):hover {
|
|
2343
2350
|
background: #ffffff;
|
|
2344
2351
|
color: #81A1C1;
|
|
2345
2352
|
}
|
|
2346
|
-
.p-splitbutton.p-button-text.p-button-plain > .p-button:
|
|
2353
|
+
.p-splitbutton.p-button-text.p-button-plain > .p-button:not(:disabled):active {
|
|
2347
2354
|
background: #E5E9F0;
|
|
2348
2355
|
color: #81A1C1;
|
|
2349
2356
|
}
|
|
@@ -2385,11 +2392,11 @@
|
|
|
2385
2392
|
color: #4C566A;
|
|
2386
2393
|
border: 2px solid;
|
|
2387
2394
|
}
|
|
2388
|
-
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:
|
|
2395
|
+
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2389
2396
|
background: rgba(76, 86, 106, 0.12);
|
|
2390
2397
|
color: #4C566A;
|
|
2391
2398
|
}
|
|
2392
|
-
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:
|
|
2399
|
+
.p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):active {
|
|
2393
2400
|
background: rgba(76, 86, 106, 0.24);
|
|
2394
2401
|
color: #4C566A;
|
|
2395
2402
|
}
|
|
@@ -2398,12 +2405,12 @@
|
|
|
2398
2405
|
color: #4C566A;
|
|
2399
2406
|
border-color: transparent;
|
|
2400
2407
|
}
|
|
2401
|
-
.p-splitbutton.p-button-secondary.p-button-text > .p-button:
|
|
2408
|
+
.p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):hover {
|
|
2402
2409
|
background: rgba(76, 86, 106, 0.12);
|
|
2403
2410
|
border-color: transparent;
|
|
2404
2411
|
color: #4C566A;
|
|
2405
2412
|
}
|
|
2406
|
-
.p-splitbutton.p-button-secondary.p-button-text > .p-button:
|
|
2413
|
+
.p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):active {
|
|
2407
2414
|
background: rgba(76, 86, 106, 0.24);
|
|
2408
2415
|
border-color: transparent;
|
|
2409
2416
|
color: #4C566A;
|
|
@@ -2414,11 +2421,11 @@
|
|
|
2414
2421
|
color: #639BB2;
|
|
2415
2422
|
border: 2px solid;
|
|
2416
2423
|
}
|
|
2417
|
-
.p-splitbutton.p-button-info.p-button-outlined > .p-button:
|
|
2424
|
+
.p-splitbutton.p-button-info.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2418
2425
|
background: rgba(99, 155, 178, 0.12);
|
|
2419
2426
|
color: #639BB2;
|
|
2420
2427
|
}
|
|
2421
|
-
.p-splitbutton.p-button-info.p-button-outlined > .p-button:
|
|
2428
|
+
.p-splitbutton.p-button-info.p-button-outlined > .p-button:not(:disabled):active {
|
|
2422
2429
|
background: rgba(99, 155, 178, 0.24);
|
|
2423
2430
|
color: #639BB2;
|
|
2424
2431
|
}
|
|
@@ -2427,12 +2434,12 @@
|
|
|
2427
2434
|
color: #639BB2;
|
|
2428
2435
|
border-color: transparent;
|
|
2429
2436
|
}
|
|
2430
|
-
.p-splitbutton.p-button-info.p-button-text > .p-button:
|
|
2437
|
+
.p-splitbutton.p-button-info.p-button-text > .p-button:not(:disabled):hover {
|
|
2431
2438
|
background: rgba(99, 155, 178, 0.12);
|
|
2432
2439
|
border-color: transparent;
|
|
2433
2440
|
color: #639BB2;
|
|
2434
2441
|
}
|
|
2435
|
-
.p-splitbutton.p-button-info.p-button-text > .p-button:
|
|
2442
|
+
.p-splitbutton.p-button-info.p-button-text > .p-button:not(:disabled):active {
|
|
2436
2443
|
background: rgba(99, 155, 178, 0.24);
|
|
2437
2444
|
border-color: transparent;
|
|
2438
2445
|
color: #639BB2;
|
|
@@ -2443,11 +2450,11 @@
|
|
|
2443
2450
|
color: #7FA366;
|
|
2444
2451
|
border: 2px solid;
|
|
2445
2452
|
}
|
|
2446
|
-
.p-splitbutton.p-button-success.p-button-outlined > .p-button:
|
|
2453
|
+
.p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2447
2454
|
background: rgba(127, 163, 102, 0.12);
|
|
2448
2455
|
color: #7FA366;
|
|
2449
2456
|
}
|
|
2450
|
-
.p-splitbutton.p-button-success.p-button-outlined > .p-button:
|
|
2457
|
+
.p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):active {
|
|
2451
2458
|
background: rgba(127, 163, 102, 0.24);
|
|
2452
2459
|
color: #7FA366;
|
|
2453
2460
|
}
|
|
@@ -2456,12 +2463,12 @@
|
|
|
2456
2463
|
color: #7FA366;
|
|
2457
2464
|
border-color: transparent;
|
|
2458
2465
|
}
|
|
2459
|
-
.p-splitbutton.p-button-success.p-button-text > .p-button:
|
|
2466
|
+
.p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):hover {
|
|
2460
2467
|
background: rgba(127, 163, 102, 0.12);
|
|
2461
2468
|
border-color: transparent;
|
|
2462
2469
|
color: #7FA366;
|
|
2463
2470
|
}
|
|
2464
|
-
.p-splitbutton.p-button-success.p-button-text > .p-button:
|
|
2471
|
+
.p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):active {
|
|
2465
2472
|
background: rgba(127, 163, 102, 0.24);
|
|
2466
2473
|
border-color: transparent;
|
|
2467
2474
|
color: #7FA366;
|
|
@@ -2472,11 +2479,11 @@
|
|
|
2472
2479
|
color: #D08770;
|
|
2473
2480
|
border: 2px solid;
|
|
2474
2481
|
}
|
|
2475
|
-
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:
|
|
2482
|
+
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2476
2483
|
background: rgba(208, 135, 112, 0.12);
|
|
2477
2484
|
color: #D08770;
|
|
2478
2485
|
}
|
|
2479
|
-
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:
|
|
2486
|
+
.p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):active {
|
|
2480
2487
|
background: rgba(208, 135, 112, 0.24);
|
|
2481
2488
|
color: #D08770;
|
|
2482
2489
|
}
|
|
@@ -2485,12 +2492,12 @@
|
|
|
2485
2492
|
color: #D08770;
|
|
2486
2493
|
border-color: transparent;
|
|
2487
2494
|
}
|
|
2488
|
-
.p-splitbutton.p-button-warning.p-button-text > .p-button:
|
|
2495
|
+
.p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):hover {
|
|
2489
2496
|
background: rgba(208, 135, 112, 0.12);
|
|
2490
2497
|
border-color: transparent;
|
|
2491
2498
|
color: #D08770;
|
|
2492
2499
|
}
|
|
2493
|
-
.p-splitbutton.p-button-warning.p-button-text > .p-button:
|
|
2500
|
+
.p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):active {
|
|
2494
2501
|
background: rgba(208, 135, 112, 0.24);
|
|
2495
2502
|
border-color: transparent;
|
|
2496
2503
|
color: #D08770;
|
|
@@ -2501,11 +2508,11 @@
|
|
|
2501
2508
|
color: #9A6796;
|
|
2502
2509
|
border: 2px solid;
|
|
2503
2510
|
}
|
|
2504
|
-
.p-splitbutton.p-button-help.p-button-outlined > .p-button:
|
|
2511
|
+
.p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2505
2512
|
background: rgba(154, 103, 150, 0.12);
|
|
2506
2513
|
color: #9A6796;
|
|
2507
2514
|
}
|
|
2508
|
-
.p-splitbutton.p-button-help.p-button-outlined > .p-button:
|
|
2515
|
+
.p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):active {
|
|
2509
2516
|
background: rgba(154, 103, 150, 0.24);
|
|
2510
2517
|
color: #9A6796;
|
|
2511
2518
|
}
|
|
@@ -2514,12 +2521,12 @@
|
|
|
2514
2521
|
color: #9A6796;
|
|
2515
2522
|
border-color: transparent;
|
|
2516
2523
|
}
|
|
2517
|
-
.p-splitbutton.p-button-help.p-button-text > .p-button:
|
|
2524
|
+
.p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):hover {
|
|
2518
2525
|
background: rgba(154, 103, 150, 0.12);
|
|
2519
2526
|
border-color: transparent;
|
|
2520
2527
|
color: #9A6796;
|
|
2521
2528
|
}
|
|
2522
|
-
.p-splitbutton.p-button-help.p-button-text > .p-button:
|
|
2529
|
+
.p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):active {
|
|
2523
2530
|
background: rgba(154, 103, 150, 0.24);
|
|
2524
2531
|
border-color: transparent;
|
|
2525
2532
|
color: #9A6796;
|
|
@@ -2530,11 +2537,11 @@
|
|
|
2530
2537
|
color: #BF616A;
|
|
2531
2538
|
border: 2px solid;
|
|
2532
2539
|
}
|
|
2533
|
-
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:
|
|
2540
|
+
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):hover {
|
|
2534
2541
|
background: rgba(191, 97, 106, 0.12);
|
|
2535
2542
|
color: #BF616A;
|
|
2536
2543
|
}
|
|
2537
|
-
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:
|
|
2544
|
+
.p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):active {
|
|
2538
2545
|
background: rgba(191, 97, 106, 0.24);
|
|
2539
2546
|
color: #BF616A;
|
|
2540
2547
|
}
|
|
@@ -2543,12 +2550,12 @@
|
|
|
2543
2550
|
color: #BF616A;
|
|
2544
2551
|
border-color: transparent;
|
|
2545
2552
|
}
|
|
2546
|
-
.p-splitbutton.p-button-danger.p-button-text > .p-button:
|
|
2553
|
+
.p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):hover {
|
|
2547
2554
|
background: rgba(191, 97, 106, 0.12);
|
|
2548
2555
|
border-color: transparent;
|
|
2549
2556
|
color: #BF616A;
|
|
2550
2557
|
}
|
|
2551
|
-
.p-splitbutton.p-button-danger.p-button-text > .p-button:
|
|
2558
|
+
.p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):active {
|
|
2552
2559
|
background: rgba(191, 97, 106, 0.24);
|
|
2553
2560
|
border-color: transparent;
|
|
2554
2561
|
color: #BF616A;
|
|
@@ -2620,6 +2627,7 @@
|
|
|
2620
2627
|
|
|
2621
2628
|
.p-speeddial-mask {
|
|
2622
2629
|
background-color: rgba(112, 120, 136, 0.5);
|
|
2630
|
+
border-radius: 4px;
|
|
2623
2631
|
}
|
|
2624
2632
|
|
|
2625
2633
|
.p-carousel .p-carousel-content .p-carousel-prev,
|
|
@@ -2801,6 +2809,10 @@
|
|
|
2801
2809
|
background: #D8DEE9;
|
|
2802
2810
|
color: #2E3440;
|
|
2803
2811
|
}
|
|
2812
|
+
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
|
|
2813
|
+
outline: 0.15rem solid #C0D0E0;
|
|
2814
|
+
outline-offset: -0.15rem;
|
|
2815
|
+
}
|
|
2804
2816
|
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
|
|
2805
2817
|
box-shadow: inset 0 2px 0 0 #D8DEE9;
|
|
2806
2818
|
}
|
|
@@ -4069,7 +4081,7 @@
|
|
|
4069
4081
|
.p-confirm-popup:before {
|
|
4070
4082
|
border: solid transparent;
|
|
4071
4083
|
border-color: rgba(255, 255, 255, 0);
|
|
4072
|
-
border-bottom-color: #
|
|
4084
|
+
border-bottom-color: #f2f2f2;
|
|
4073
4085
|
}
|
|
4074
4086
|
.p-confirm-popup.p-confirm-popup-flipped:after {
|
|
4075
4087
|
border-top-color: #ffffff;
|
|
@@ -5440,7 +5452,7 @@
|
|
|
5440
5452
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
5441
5453
|
}
|
|
5442
5454
|
.p-message .p-message-close:hover {
|
|
5443
|
-
background: rgba(255, 255, 255, 0.
|
|
5455
|
+
background: rgba(255, 255, 255, 0.5);
|
|
5444
5456
|
}
|
|
5445
5457
|
.p-message .p-message-close:focus-visible {
|
|
5446
5458
|
outline: 0 none;
|
|
@@ -5550,7 +5562,7 @@
|
|
|
5550
5562
|
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
|
5551
5563
|
}
|
|
5552
5564
|
.p-toast .p-toast-message .p-toast-icon-close:hover {
|
|
5553
|
-
background: rgba(255, 255, 255, 0.
|
|
5565
|
+
background: rgba(255, 255, 255, 0.5);
|
|
5554
5566
|
}
|
|
5555
5567
|
.p-toast .p-toast-message .p-toast-icon-close:focus-visible {
|
|
5556
5568
|
outline: 0 none;
|
|
@@ -6195,4 +6207,9 @@
|
|
|
6195
6207
|
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
|
|
6196
6208
|
box-shadow: inset 0 -2px 0 0 #5E81AC;
|
|
6197
6209
|
}
|
|
6210
|
+
|
|
6211
|
+
.p-selectbutton > .p-button,
|
|
6212
|
+
.p-togglebutton.p-button {
|
|
6213
|
+
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
6214
|
+
}
|
|
6198
6215
|
}
|