Skip to content

Commit

Permalink
Replace lighten() with variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
simurai committed Oct 4, 2019
1 parent a5bdd9e commit af24fe6
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/select-menu/select-menu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
// selector-max-type is needed for body:not(.intent-mouse) to target keyboard only styles.
// TODO: Introduce an additional .intent-keyboard class

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

// Select Menu
Expand Down Expand Up @@ -188,7 +187,7 @@ $SelectMenu-max-height: 480px;
cursor: pointer;
background-color: $bg-white;
border: 0;
border-bottom: $SelectMenu-border;
border-bottom: $border-width $border-style $border-gray-light;

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

.SelectMenu-message {
border-bottom: $SelectMenu-border;
border-bottom: $border-width $border-style $border-gray-light;
}

.SelectMenu-message,
Expand All @@ -292,7 +291,7 @@ $SelectMenu-max-height: 480px;
font-weight: $font-weight-bold;
color: $text-gray-light;
background-color: $gray-100;
border-bottom: $SelectMenu-border;
border-bottom: $border-width $border-style $border-gray-light;
}

// Footer
Expand Down

0 comments on commit af24fe6

Please sign in to comment.