// stylelint-disable property-no-vendor-prefix, selector-no-qualifying-type
button.close {
padding: 0;
- background: transparent;
+ background-color: transparent;
border: 0;
-webkit-appearance: none;
}
&:focus {
border-color: $custom-select-focus-border-color;
- outline: none;
+ outline: 0;
@include box-shadow($custom-select-focus-box-shadow);
&::-ms-value {
color: $dropdown-link-color;
text-align: inherit; // For `<button>`s
white-space: nowrap; // prevent links from randomly breaking onto new lines
- background: none; // For `<button>`s
+ background-color: transparent; // For `<button>`s
border: 0; // For `<button>`s
@include hover-focus {
padding: $navbar-toggler-padding-y $navbar-toggler-padding-x;
font-size: $navbar-toggler-font-size;
line-height: 1;
- background: transparent; // remove default button style
+ background-color: transparent; // remove default button style
border: $border-width solid transparent; // remove default button style
@include border-radius($navbar-toggler-border-radius);
//
// Credit: https://github.com/suitcss/base
[tabindex="-1"]:focus {
- outline: none !important;
+ outline: 0 !important;
}
// stylelint-disable value-keyword-case
$font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
-$font-family-monospace: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
+$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
$font-family-base: $font-family-sans-serif !default;
// stylelint-enable value-keyword-case
$input-height-inner-lg: ($font-size-lg * $input-btn-line-height-lg) + ($input-btn-padding-y-lg * 2) !default;
$input-height-lg: calc(#{$input-height-inner-lg} + #{$input-height-border}) !default;
-$input-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s !default;
+$input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
$form-text-margin-top: .25rem !default;
color: $input-focus-color;
background-color: $input-focus-bg;
border-color: $input-focus-border-color;
- outline: none;
+ outline: 0;
// Avoid using mixin so we can pass custom focus shadow properly
@if $enable-shadows {
box-shadow: $input-box-shadow, $input-focus-box-shadow;