Этот коммит содержится в:
2024-03-15 16:26:27 +05:30
Коммит 381106cbe5
1046 изменённых файлов: 285998 добавлений и 0 удалений
+53
Просмотреть файл
@@ -0,0 +1,53 @@
/* *******************
counter style
**********************/
.product-count {
&.style {
input {
color: $color-dark;
background-color: $color-white;
height: 54px;
padding: 10px 30px 10px 10px;
width: 80px;
border: 1px solid $border-color;
display: block;
text-align: center;
-webkit-appearance: textfield;
-moz-appearance: textfield;
appearance: textfield;
}
input[type="number"] {
-webkit-appearance: textfield;
-moz-appearance: textfield;
appearance: textfield;
&::-webkit-inner-spin-button,
&::-webkit-outer-spin-button {
-webkit-appearance: none;
}
}
.count-btn {
background-color: transparent;
border: 0px;
border-left: 1px solid $border-color;
display: block;
width: 20px;
height: 27px;
padding: 0px;
text-align: center;
color: $color-dark;
font-size: 10px;
@include transform(translateX(-100%));
user-select: none;
}
.increment {
border-bottom: 1px solid $border-color;
}
}
}
/* *******************
counter style End
**********************/