add InputNumber UI

add InputNumber UI
This commit is contained in:
梁灏 2016-09-21 16:59:19 +08:00
parent 07aa688e3c
commit 95436eeb98
15 changed files with 345 additions and 16 deletions

15
styles/mixins/common.less Normal file
View file

@ -0,0 +1,15 @@
.placeholder(@color: @input-placeholder-color) {
// Firefox
&::-moz-placeholder {
color: @color;
opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526
}
// Internet Explorer 10+
&:-ms-input-placeholder {
color: @color;
}
// Safari and Chrome
&::-webkit-input-placeholder {
color: @color;
}
}