Skip to content

Commit

Permalink
[Discover] Fix SASS mixed-declations deprecation warnings (elastic#19…
Browse files Browse the repository at this point in the history
  • Loading branch information
jughosta authored and markov00 committed Sep 18, 2024
1 parent 0d1d80a commit d52c1e4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
3 changes: 2 additions & 1 deletion packages/kbn-dom-drag-drop/src/sass/draggable.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@

&:focus,
&:focus-within {
@include euiFocusRing;
pointer-events: none;
z-index: $domDragDropZLevel2;

@include euiFocusRing;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
block-size: $euiSizeXL;
border: $euiBorderThin;
border-radius: $euiBorderRadiusSmall;
transition: transform $euiAnimSpeedNormal ease-in-out;

// making the icons larger than the default size
& svg {
Expand All @@ -18,7 +19,6 @@
}

// add toolbar control animation
transition: transform $euiAnimSpeedNormal ease-in-out;
&:hover {
transform: translateY(-1px);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
*/

.unifiedFieldList__fieldListGrouped {
@include euiOverflowShadow;
@include euiScrollBar;
margin-left: -$euiSize; /* 1 */
position: relative;
flex-grow: 1;
overflow: auto;

@include euiOverflowShadow;
@include euiScrollBar;
}

.unifiedFieldList__fieldListGrouped__container {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ discover-app {
}

.dscPage {
flex-direction: column;
overflow: hidden;
padding: 0;

@include euiBreakpoint('m', 'l', 'xl') {
@include kibanaFullBodyHeight();

&.dscPage--topNavInline {
@include kibanaFullBodyHeight($euiSize * 3);
}
}
}

flex-direction: column;
.dscPage .dscPageBody {
overflow: hidden;
padding: 0;

.dscPageBody {
overflow: hidden;
}
}

.dscPageBody__inner {
Expand Down

0 comments on commit d52c1e4

Please sign in to comment.