@plone/volto 17.5.0 → 17.6.0
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/CHANGELOG.md +13 -0
- package/locales/ca/LC_MESSAGES/volto.po +5 -0
- package/locales/ca.json +1 -1
- package/locales/de/LC_MESSAGES/volto.po +5 -0
- package/locales/de.json +1 -1
- package/locales/en/LC_MESSAGES/volto.po +5 -0
- package/locales/en.json +1 -1
- package/locales/es/LC_MESSAGES/volto.po +5 -0
- package/locales/es.json +1 -1
- package/locales/eu/LC_MESSAGES/volto.po +5 -0
- package/locales/eu.json +1 -1
- package/locales/fi/LC_MESSAGES/volto.po +5 -0
- package/locales/fi.json +1 -1
- package/locales/fr/LC_MESSAGES/volto.po +5 -0
- package/locales/fr.json +1 -1
- package/locales/it/LC_MESSAGES/volto.po +5 -0
- package/locales/it.json +1 -1
- package/locales/ja/LC_MESSAGES/volto.po +5 -0
- package/locales/ja.json +1 -1
- package/locales/nl/LC_MESSAGES/volto.po +5 -0
- package/locales/nl.json +1 -1
- package/locales/pt/LC_MESSAGES/volto.po +5 -0
- package/locales/pt.json +1 -1
- package/locales/pt_BR/LC_MESSAGES/volto.po +5 -0
- package/locales/pt_BR.json +1 -1
- package/locales/ro/LC_MESSAGES/volto.po +5 -0
- package/locales/ro.json +1 -1
- package/locales/volto.pot +6 -1
- package/locales/zh_CN/LC_MESSAGES/volto.po +5 -0
- package/locales/zh_CN.json +1 -1
- package/package.json +1 -1
- package/packages/volto-slate/package.json +1 -1
- package/src/components/manage/BlockChooser/BlockChooserSearch.jsx +5 -2
- package/src/components/theme/ContentMetadataTags/ContentMetadataTags.jsx +39 -46
- package/src/components/theme/Sitemap/Sitemap.jsx +40 -50
- package/src/helpers/Api/APIResourceWithAuth.js +1 -1
- package/theme/themes/pastanaga/elements/input.overrides +13 -2
- package/theme/themes/pastanaga/elements/input.variables +0 -3
- package/theme/themes/pastanaga/extras/blocks.less +8 -8
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
// Pastanaga variable
|
|
10
10
|
@inputFontWeight: 300;
|
|
11
11
|
|
|
12
|
-
|
|
13
12
|
/*-------------------
|
|
14
13
|
Types
|
|
15
14
|
--------------------*/
|
|
@@ -20,7 +19,6 @@
|
|
|
20
19
|
|
|
21
20
|
/* Labeled Input */
|
|
22
21
|
|
|
23
|
-
|
|
24
22
|
/*-------------------
|
|
25
23
|
States
|
|
26
24
|
--------------------*/
|
|
@@ -35,7 +33,6 @@
|
|
|
35
33
|
|
|
36
34
|
/* Loader */
|
|
37
35
|
|
|
38
|
-
|
|
39
36
|
/*-------------------
|
|
40
37
|
Variations
|
|
41
38
|
--------------------*/
|
|
@@ -531,14 +531,6 @@ body.has-toolbar.has-sidebar-collapsed .ui.wrapper > .ui.inner.block.full {
|
|
|
531
531
|
}
|
|
532
532
|
}
|
|
533
533
|
|
|
534
|
-
.block .clear-search-button {
|
|
535
|
-
&:hover,
|
|
536
|
-
&:focus {
|
|
537
|
-
-webkit-box-shadow: none;
|
|
538
|
-
box-shadow: none;
|
|
539
|
-
color: #e40166 !important;
|
|
540
|
-
}
|
|
541
|
-
}
|
|
542
534
|
// .ui.basic.button.block-delete-button {
|
|
543
535
|
// top: 22px;
|
|
544
536
|
// right: 0;
|
|
@@ -792,6 +784,14 @@ body.has-toolbar.has-sidebar-collapsed .ui.wrapper > .ui.inner.block.full {
|
|
|
792
784
|
// reseting the default Accordion behavior
|
|
793
785
|
display: initial;
|
|
794
786
|
}
|
|
787
|
+
.ui.form .ui.input input {
|
|
788
|
+
//reset for semantic-ui outline:none
|
|
789
|
+
border-width: @1px;
|
|
790
|
+
border-color: transparent;
|
|
791
|
+
&:focus {
|
|
792
|
+
border-color: @focusedFormBorderColor;
|
|
793
|
+
}
|
|
794
|
+
}
|
|
795
795
|
}
|
|
796
796
|
|
|
797
797
|
.accordion-tools {
|