Skip to content

Commit

Permalink
[presentation team] Fix SASS mixed-declarations deprecation warnings (#…
Browse files Browse the repository at this point in the history
…194721)

closes #190895,
#190896, and
#190897

## Summary

> Sass's behavior for declarations that appear after nested
rules will be changing to match the behavior specified by CSS in an
upcoming
version. To keep the existing behavior, move the declaration above the
nested
rule. To opt into the new behavior, wrap the declaration in & {}.

PR moves declarations above the nested rules.

Co-authored-by: Elastic Machine <[email protected]>
(cherry picked from commit 6cf30e4)
  • Loading branch information
nreese committed Oct 4, 2024
1 parent f7d360e commit 9b96eaf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.dshSolutionToolbar__editorContextMenu {
@include euiScrollBar;
@include euiOverflowShadow;
max-height: 60vh;
overflow-y: scroll;
@include euiScrollBar;
@include euiOverflowShadow;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
height: 100%;

.canvasDebug__content {
@include euiScrollBar;
width: 100%;
height: 100%;
overflow: auto;
padding: $euiSize;
@include euiScrollBar;
}
}
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.icvContainer__wrapper {
@include euiScrollBar;
min-height: 0;
flex: 1 1 0;
display: flex;
overflow: auto;
@include euiScrollBar;
}

.icvContainer {
Expand Down

0 comments on commit 9b96eaf

Please sign in to comment.