Commit b7ac009a authored by Mark Otto's avatar Mark Otto

Remove #8350's reset for number inputs since Normalize fixes those upstream

parent 400720d0
...@@ -1676,10 +1676,6 @@ input[type="checkbox"]:focus { ...@@ -1676,10 +1676,6 @@ input[type="checkbox"]:focus {
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
height: auto;
}
output { output {
display: block; display: block;
padding-top: 7px; padding-top: 7px;
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -79,17 +79,6 @@ input[type="checkbox"]:focus { ...@@ -79,17 +79,6 @@ input[type="checkbox"]:focus {
.tab-focus(); .tab-focus();
} }
// Fix for Chrome number input
//
// Setting certain font-sizes causes the `I` bar to appear on hover of the
// decrement button. See https://github.com/twbs/bootstrap/issues/8350.
input[type="number"] {
&::-webkit-outer-spin-button,
&::-webkit-inner-spin-button {
height: auto;
}
}
// Adjust output element // Adjust output element
output { output {
display: block; display: block;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment