Skip to content

Commit 81c6ed0

Browse files
committed
[Controls] Replace Sass mixin with border instead
- there really isn't a need for the full mixin, we just want the border effect here - there also isn't a need to use `box-shadow` over `border` since the content of the draggable faux-input doesn't require it
1 parent ddf352a commit 81c6ed0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/plugins/controls/public/control_group/components/control_panel.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ $controlMinWidth: $euiSize * 14;
216216
align-items: center;
217217
border-radius: $euiBorderRadius;
218218
font-weight: $euiFontWeightSemiBold;
219-
@include euiFormControlDefaultShadow;
219+
border: $euiBorderWidthThin solid $euiFormBorderColor;
220220
background-color: $euiFormInputGroupLabelBackground;
221221
min-width: $controlMinWidth;
222222
@include euiFontSizeXS;
@@ -243,4 +243,4 @@ $controlMinWidth: $euiSize * 14;
243243
min-width: unset;
244244
}
245245
}
246-
}
246+
}

0 commit comments

Comments
 (0)