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
2 people authored and jbudz committed Oct 4, 2024
1 parent 9ab465d commit 4398984
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 4398984

Please sign in to comment.