diff --git a/resources/fieldsets/globals_browser_appearance_favicons.yaml b/resources/fieldsets/globals_browser_appearance_favicons.yaml index 06e6ce7..7fb76d3 100644 --- a/resources/fieldsets/globals_browser_appearance_favicons.yaml +++ b/resources/fieldsets/globals_browser_appearance_favicons.yaml @@ -44,53 +44,3 @@ fields: - 'required_if:use_favicons,true' if: use_favicons: 'equals true' - - - handle: section_overrides - field: - type: section - listable: hidden - display: Overrides - instructions: 'Override specific generated assets with your own.' - if: - use_favicons: 'equals true' - - - handle: safari_icon - field: common.image - config: - container: favicons - restrict: true - localizable: false - display: 'Safari icon' - instructions: 'A 32x32 PNG image used for Safari. Will be focal cropped to this dimension and 16x16.' - instructions_position: below - width: 33 - if: - use_favicons: 'equals true' - validate: - - 'mimes:png' - - - handle: apple_touch_icon - field: common.image - config: - container: favicons - restrict: true - localizable: false - display: 'Apple touch icon' - instructions: 'A 180x180 PNG image used on iOS devices. Will be focal cropped to this dimension.' - instructions_position: below - width: 33 - if: - use_favicons: 'equals true' - - - handle: android_chrome - field: common.image - config: - container: favicons - restrict: true - localizable: false - display: 'Android Chrome icon' - instructions: 'A 512x512 PNG image image used on Android devices. Will be focal cropped to this dimension.' - instructions_position: below - width: 33 - if: - use_favicons: 'equals true' diff --git a/resources/fieldsets/globals_browser_appearance_favicons_overrides.yaml b/resources/fieldsets/globals_browser_appearance_favicons_overrides.yaml new file mode 100644 index 0000000..c77e089 --- /dev/null +++ b/resources/fieldsets/globals_browser_appearance_favicons_overrides.yaml @@ -0,0 +1,43 @@ +title: 'Globals Browser Appearance: Favicons - Overrides' +fields: + - + handle: safari_icon + field: common.image + config: + container: favicons + restrict: true + localizable: false + display: 'Safari icon' + instructions: 'A 32x32 PNG image used for Safari. Will be focal cropped to this dimension and 16x16.' + instructions_position: below + width: 33 + if: + use_favicons: 'equals true' + validate: + - 'mimes:png' + - + handle: apple_touch_icon + field: common.image + config: + container: favicons + restrict: true + localizable: false + display: 'Apple touch icon' + instructions: 'A 180x180 PNG image used on iOS devices. Will be focal cropped to this dimension.' + instructions_position: below + width: 33 + if: + use_favicons: 'equals true' + - + handle: android_chrome + field: common.image + config: + container: favicons + restrict: true + localizable: false + display: 'Android Chrome icon' + instructions: 'A 512x512 PNG image image used on Android devices. Will be focal cropped to this dimension.' + instructions_position: below + width: 33 + if: + use_favicons: 'equals true'