netlogix / breakpointconditionalcontent
Adds a content wrapper element that allows selectable, breakpoint identifying classes intended to be styled as needed.
Installs: 5 963
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 1
Type:neos-package
Requires
- php: ^8.0
- neos/neos: ^8.3 || ^9.0
README
This package adds a simple node type that receives a subset of one or multiple editor-selectable classes with the intention to control the display of content dependent on device breakpoints.
Intended use case and styling
The content element created by this package is intended to be used as a container to wrap the content which needs to be displayed conditionally. This container then receives classes (see below) that require to be styled as needed, for example by setting the base class to 'display: none;' and then using media-queries to re-enable the display for a given breakpoint.
Base class
The wrapper receives a base class of 'breakpoint-conditional-content' irrespective of selected breakpoints.
Available breakpoints
- xs:
- intended for Mobile / Extra small
- assigned class: 'breakpoint-xs'
- sm:
- intended for Mobile / Small
- assigned class: 'breakpoint-xs'
- md:
- intended for Tablet / Medium
- assigned class: 'breakpoint-md'
- lg:
- intended for Desktop / Large
- assigned class: 'breakpoint-lg'
- xl:
- intended for Desktop / Extra large
- assigned class: 'breakpoint-xl'