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
4 changes: 4 additions & 0 deletions packages/atlas-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

### Fixed

- We fixed an issue where exclude-bootstrap and exclude-mxui variable creates compile error when set to true

## [4.4.0] Atlas Core - 2026-8-14

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion packages/atlas-core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "atlas-core",
"moduleName": "Atlas Core",
"version": "4.4.0",
"version": "4.5.0",
"license": "Apache-2.0",
"copyright": "© Mendix Technology BV 2024. All rights reserved.",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
@mixin mxui-core() {

/* Client defaults and helpers */
.mx-dataview-content,
.mx-tabcontainer-content,
.mx-grid-content {
-webkit-overflow-scrolling: touch;
}
html,
body,
#content,
#root {
height: 100%;
margin: 0;
}
#content > .mx-page,
#root > .mx-page {
width: 100%;
min-height: 100%;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
div[class*="textBox"] > .control-label,
div[class*="textArea"] > .control-label,
div[class*="datePicker"] > .control-label {
@extend .form-control-static;
@extend .form-control-static !optional;
}

// Label
Expand All @@ -193,14 +193,14 @@
}

.page-form-vertical {
@extend .form-vertical;
@extend .form-vertical !optional;
.form-group:not(.label-after) {
flex-direction: column;
}
}

.page-form-horizontal {
@extend .form-horizontal;
@extend .form-horizontal !optional;
@media not screen and (max-width: $screen-sm-max) {
.form-group.no-columns:not(.label-after) {
// overwrite default no-columns behavior when
Expand Down
4 changes: 4 additions & 0 deletions packages/atlas/src/themesource/atlas_core/web/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,12 @@
@include bootstrap-rtl();
}
@import "core/_legacy/mxui";
@import "core/_legacy/mxui-core";
@if not $exclude-mxui {
@include mxui();
}
@else {
@include mxui-core();
}

//================================== CORE ==================================\\
Expand Down
Loading