Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/atlas-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

### Fixed

- We fixed an issue with label alignment in Check Box widgets.
- We fixed an issue Text Box widget being stretched when corresponding label is multiline.

## [4.3.3] Atlas Core - 2026-1-30

### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,17 @@
========================================================================== */

.mx-checkbox.label-after {
flex-wrap: wrap;

.control-label {
flex: 1;
display: flex;
align-items: center;
padding: 0;
}
}

input[type="checkbox"] {
flex: 0 0 auto;
align-self: center;
position: relative !important; //Remove after mxui merge
width: 16px;
height: 16px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,11 @@
justify-content: space-between;
}

// Text box widget should stay in the middle horizontally
.form-group.mx-textbox .form-control {
align-self: center;
}

// Not editable textarea, textarea will be rendered as a label
.mx-textarea .control-label {
height: auto;
Expand Down Expand Up @@ -197,7 +202,7 @@
.page-form-horizontal {
@extend .form-horizontal;
@media not screen and (max-width: $screen-sm-max) {
.form-group.no-columns:not(.label-after){
.form-group.no-columns:not(.label-after) {
// overwrite default no-columns behavior when
// page form orientation is set to horizontal
flex-direction: row;
Expand All @@ -206,7 +211,7 @@

$label-breakpoints: sm, md, lg, xl, xxl;
@each $bp in $label-breakpoints {
&:not([class*="form-label-width-"]){
&:not([class*="form-label-width-"]) {
// default label width 3 if none specified
.form-group > label {
@extend .col-#{$bp}-3;
Expand Down Expand Up @@ -240,10 +245,10 @@

// Targets only webkit iOS devices
.dj_webkit.dj_ios .form-control {
transform: translate3d(0,0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0, 0, 0);
-webkit-transform: translate3d(0, 0, 0);

&.widget-dropdown-filter{
&.widget-dropdown-filter {
transform: inherit;
-webkit-transform: inherit;
}
Expand Down
Loading