fd-gulp-convert-encoding
Version:
convert file to assigned charset
55 lines (49 loc) • 1.3 kB
text/less
// amountControl for detail
.default-font(){
font-size: @sub-title-font-size;
color: @title-color;
}
.unit-d-amount-control {
.clearfix();
.amount-input {
float: left;
display: block;
width: rem(124);
height: rem(60);
padding: rem(8) 0;
overflow: hidden;
border: 1px solid #d9d9d9;
text-align: center;
.default-font();
&::-webkit-inner-spin-button {
-webkit-appearance: none;
}
&::-webkit-outer-spin-button {
-webkit-appearance: none;
}
}
a {
float: left;
display: block;
width: rem(60);
height: rem(60);
overflow: hidden;
line-height: 200;
border: 1px solid #d9d9d9;
background-position: rem(15) rem(15);
text-align: center;
.default-font();
&.amount-down {
border-right: 0 none;
border-radius: rem(12) 0 0 rem(12);
.bg(imgurl(amountControl, down), rem(30), rem(30));
}
&.amount-up {
margin-left: 0;
padding-left: 0;
border-left: 0 none;
border-radius: 0 rem(12) rem(12) 0;
.bg(imgurl(amountControl, up), rem(30), rem(30));
}
}
}