1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-25 14:30:46 +02:00

Fix Sass properties order for newer stylelint-config-recess-order (#38851)

This commit is contained in:
XhmikosR
2023-06-30 09:52:46 +03:00
committed by GitHub
parent d333d70e52
commit 1ab75c8d14
5 changed files with 10 additions and 10 deletions

View File

@@ -11,10 +11,10 @@
font-weight: $input-font-weight;
line-height: $input-line-height;
color: $input-color;
appearance: none; // Fix appearance for date inputs in Safari
background-color: $input-bg;
background-clip: padding-box;
border: $input-border-width solid $input-border-color;
appearance: none; // Fix appearance for date inputs in Safari
// Note: This has no effect on <select>s in some browsers, due to the limited stylability of `<select>`s in CSS.
@include border-radius($input-border-radius, 0);