salix/front/core/components/input-number/style.scss

21 lines
453 B
SCSS
Raw Normal View History

2019-02-06 10:24:29 +00:00
@import "variables";
2018-09-13 09:27:38 +00:00
@import '../textfield/style.scss';
vn-input-number {
@extend vn-textfield;
input {
2019-09-30 09:30:54 +00:00
text-align: center !important;
2018-09-13 09:27:38 +00:00
}
vn-icon[icon=add],
vn-icon[icon=remove]{
&:not(:hover){
2019-02-08 16:49:51 +00:00
color: $color-font-secondary;
2018-09-13 09:27:38 +00:00
}
i {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
}
}