Skip to content

Commit

Permalink
[4.4] Fix minor UI issues caused by bootstrap 5.3 version bump (jooml…
Browse files Browse the repository at this point in the history
…a#41286)

* Fix missing variable maps in atum

* Fix color on login page

* Fix codestyle
  • Loading branch information
wilsonge authored Aug 1, 2023
1 parent 1d73414 commit 06f5629
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
$theme-colors-text: map-merge((
"action": shade-color($base-color, 60%),
"error": shade-color($red-dark, 60%)
), $theme-colors-text);

$theme-colors-bg-subtle: map-merge((
"action": tint-color($base-color, 80%),
"error": tint-color($red-dark, 80%)
), $theme-colors-bg-subtle);

$theme-colors-border-subtle: map-merge((
"action": tint-color($base-color, 60%),
"error": tint-color($red-dark, 60%)
), $theme-colors-border-subtle);
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ $theme-colors: (
"light": $gray-100,
"dark": $gray-900,
"action": $base-color,
"error": $red-dark,
"alert-success": $green-dark) !default;
"error": $red-dark) !default;

$atum-colors: (
template-sidebar-bg: var(--template-bg-dark-80),
Expand All @@ -63,6 +62,7 @@ $atum-colors: (
template-bg-light: #f0f4fb, //light background color, frontend dashboard background
template-link-color: var(--link-color),
template-text-light: $white,
template-text-dark: $atum-text-dark,
template-special-color: $dark-blue,
template-contrast: $light-blue,
template-bg-dark: hsl(var(--hue), 40%, 20%),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@
align-self: flex-end;
width: 100%;
font-size: ($font-size-base * .875);
--body-color: var(--template-text-light);
color: var(--template-text-light);
text-align: center;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
@import "../../../../../../media/vendor/bootstrap/scss/variables";
@import "../../../../../../media/vendor/bootstrap/scss/variables-dark";
@import "../../../../../../media/vendor/bootstrap/scss/maps";
@import "maps-atum";
@import "../../../../../../media/vendor/bootstrap/scss/mixins";
@import "../../../../../../media/vendor/bootstrap/scss/utilities";

Expand Down

0 comments on commit 06f5629

Please sign in to comment.