Skip to content

Commit

Permalink
[5.0] Fix undefined variables in scss (#41567)
Browse files Browse the repository at this point in the history
* Fix undefined variables in scss

* Fix undefined variables in scss
  • Loading branch information
Fedik committed Sep 3, 2023
1 parent 82b790f commit 1919ca5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ $atum-colors-dark: (

$link-hover-color-dark: lighten($light-blue, 20%);

$form-select-indicator-dark: url("../images/select-bg-dark.svg");
$form-select-indicator-rtl-dark: url("../images/select-bg-rtl-dark.svg");
$form-select-bg-dark: var(--template-bg-dark);
$form-select-background-dark: $form-select-indicator-dark no-repeat right center / $form-select-bg-size; // Used so we can have multiple background elements (e.g. arrow and feedback icon)
$form-select-background-rtl-dark: $form-select-indicator-rtl-dark no-repeat left center / $form-select-bg-size; // Used so we can have multiple background elements (e.g. arrow and feedback icon)
$form-select-indicator-dark: url("../images/select-bg-dark.svg");
$form-select-indicator-rtl-dark: url("../images/select-bg-rtl-dark.svg");
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import "../../variables-dark";

// Custom Forms

.custom-select {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

// Atum Variables
@import "../../variables";
@import "../../variables-dark";

@import "../../../../../../../../media/vendor/bootstrap/scss/variables";
@import "../../../../../../../../media/vendor/bootstrap/scss/mixins";
Expand Down

0 comments on commit 1919ca5

Please sign in to comment.