mirror of https://github.com/twbs/bootstrap.git
Set cursor pointer on input search cancel button (#41639)
* Set cursor pointer on input search cancel button * Update _reboot.scss
This commit is contained in:
parent
26c86ba875
commit
47c75b8492
|
@ -534,6 +534,12 @@ legend {
|
||||||
[type="search"] {
|
[type="search"] {
|
||||||
-webkit-appearance: textfield; // 1
|
-webkit-appearance: textfield; // 1
|
||||||
outline-offset: -2px; // 2
|
outline-offset: -2px; // 2
|
||||||
|
|
||||||
|
// 3. Better affordance and consistent appearance for search cancel button
|
||||||
|
&::-webkit-search-cancel-button {
|
||||||
|
cursor: pointer;
|
||||||
|
filter: grayscale(1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 1. A few input types should stay LTR
|
// 1. A few input types should stay LTR
|
||||||
|
|
Loading…
Reference in New Issue