Releases: contao-thememanager/core
1.2.1
Added news integration for Contao
-
Changed mod_newslist template to integrate stylemanager configuration
-
Updated style-manager-core.xml
Changes
-
Input fields in theme-manager-config were raised to 32 characters
-
Added $form-checkbox-radio-size to checkbox and radio size
1.2.0
Additions
-
Added no-gutter behaviour for y-spacings for all breakpoints
-
Added max-breakpoint - mixin for max-width media-queries:
@include max-breakpoint('s') {...} would create: @media (max-width: 767px) {...}
-
Added form-input-symbol-font-size to change the select symbol within select-fields
-
The select icon now reacts to form-input-height and form-grid to always be centered
-
Added form-input-font-size-error (font-size of error messages)
-
Added form-checkbox-radio-border-color (border-color for checkbox and radio elements) and their hover and focus state
-
Added form-input-mandatory-symbol-color-error (The '*' - symbol will now turn to your designated color when an error appears)
-
Added form-field-image-width and -height (You are now able to add images or icons to your form-fields)
-
Added form-field-icon-color / -background / -size (You are now able to add explanation icons to text-fields in form-fields, either left or right)
-
Added form-field-image - mixin for simplified creation of the needed css-classes to be able to use images above form fields:
with
@include form-field-image(1, '/files/foo/bar.jpg')
will output:
.form-image.form-img-#{$class-suffix} {... &:before {
background-image: url('/files/foo/bar.jpg'
You can select your images within form fields after adding them to your style-manager configuration within StyleManager -> Form-Field-Image -> Image -> CSS-Classes ( Added 10 placeholder classes for use)
- Added form-field-icon - mixin for simplified creation of the needed css-classes to be able to use explanation icons within form-fields:
with
@include form-field-icon(test, '@')
will output:
.f-icon-test > .input-container:before {
content: '@';
}
@include form-field-icon(test, '\e800', true, rem(20)) will parse the additional parameters into the icon mixin for using your icon-set
You can select your explanation icon within form fields after adding them to your style-manager configuration within StyleManager -> Form-Field-Icon -> Icon -> CSS-Classes (Added m² / @ / € / $ for explanation)
- Updated style-manager-core.xml with new additions:
Form-Input-Icon: Alignment (by default centered, left, right) and Icons (m², @, € and $) || New icons can be added using the form-field-icon-mixin
Form-Field-Image: Alignment (by default centered, left, right) and Images (10 placeholder images for following classes: form-img-1 to form-img-10 || New images can be added using the form-field-image-mixin
- Added explanations and their translations for every config variable in the theme-manager configuration
Changes
- Changed form-templates to include input-containers
- Changed mandatory symbols to be within input-containers
- Updated all config variables placeholders to match the framework config
- All config variables will now be prefilled when opening the theme-manager config for the first time
- Removed conflict with scssphp/scssphp version 1.2
Bugfixes
- Fixed a bug with border-radius behaviour in layout top image-text-lists
- Fixed a bug where c_icon would not react to alignment
- Fixed grid in grid layout not correctly displayed
- Fixed a bug where form-buttons would not get the selected style-manager styles
- Fixed a few translation errors