Skip to content

Commit af24fe6

Browse files
committed
Replace lighten() with variable.
1 parent a5bdd9e commit af24fe6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/select-menu/select-menu.scss

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// selector-max-type is needed for body:not(.intent-mouse) to target keyboard only styles.
44
// TODO: Introduce an additional .intent-keyboard class
55

6-
$SelectMenu-border: $border-width $border-style lighten($gray-200, 3%);
76
$SelectMenu-max-height: 480px;
87

98
// Select Menu
@@ -188,7 +187,7 @@ $SelectMenu-max-height: 480px;
188187
cursor: pointer;
189188
background-color: $bg-white;
190189
border: 0;
191-
border-bottom: $SelectMenu-border;
190+
border-bottom: $border-width $border-style $border-gray-light;
192191

193192
@include breakpoint(sm) {
194193
padding-top: $spacer-2;
@@ -270,7 +269,7 @@ $SelectMenu-max-height: 480px;
270269
// A container used to show different kinds of content. Like a message, a blankslate or the loading animation.
271270

272271
.SelectMenu-message {
273-
border-bottom: $SelectMenu-border;
272+
border-bottom: $border-width $border-style $border-gray-light;
274273
}
275274

276275
.SelectMenu-message,
@@ -292,7 +291,7 @@ $SelectMenu-max-height: 480px;
292291
font-weight: $font-weight-bold;
293292
color: $text-gray-light;
294293
background-color: $gray-100;
295-
border-bottom: $SelectMenu-border;
294+
border-bottom: $border-width $border-style $border-gray-light;
296295
}
297296

298297
// Footer

0 commit comments

Comments
 (0)