// Select // // Replaces the browser default select with a custom one, mostly pulled from // https://primer.github.io/. .form-select { display: inline-block; width: 100%; height: $form-select-height; padding: $form-select-padding-y ($form-select-padding-x + $form-select-indicator-padding) $form-select-padding-y $form-select-padding-x; font-family: $form-select-font-family; @include font-size($form-select-font-size); font-weight: $form-select-font-weight; line-height: $form-select-line-height; color: $form-select-color; vertical-align: middle; background: $form-select-bg escape-svg($form-select-indicator) $form-select-background; border: $form-select-border-width solid $form-select-border-color; @include border-radius($form-select-border-radius, 0); @include box-shadow($form-select-box-shadow); appearance: none; &:focus { border-color: $form-select-focus-border-color; outline: 0; @if $enable-shadows { box-shadow: $form-select-box-shadow, $form-select-focus-box-shadow; } @else { box-shadow: $form-select-focus-box-shadow; } &::-ms-value { // For visual consistency with other platforms/browsers, // suppress the default white text on blue background highlight given to // the selected option text when the (still closed)