1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-25 04:24:37 +04:00

input number fixes

This commit is contained in:
codecalm
2020-11-09 22:51:33 +01:00
parent 134170ee9b
commit 0f671cb2f4
+16
View File
@@ -73,6 +73,22 @@ Form control
&[size] {
width: auto;
}
&[type="number"] {
&::-webkit-inner-spin-button {
opacity: 1;
cursor: pointer;
height: subtract($input-height, 1px);
margin: 0 (-$input-padding-x) 0 0;
}
&::-moz-inner-spin-button {
opacity: 1;
cursor: pointer;
height: subtract($input-height, 1px);
margin: 0 (-$input-padding-x) 0 0;
}
}
}
.form-control-light {