Skip to content

Commit

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

closes elastic#190895,
elastic#190896, and
elastic#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]>
  • Loading branch information
nreese and elasticmachine authored Oct 4, 2024
1 parent 1fb52db commit 6cf30e4
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 6cf30e4

Please sign in to comment.