[DE] Edit styles in 'Numbering Value'

This commit is contained in:
ShimaginAndrey 2021-08-27 10:11:53 +03:00
parent 38f3d5ad37
commit 62c542cf84
2 changed files with 58 additions and 1 deletions

View file

@ -8,6 +8,35 @@
// Stepper
.content-block.stepper-block {
margin: 20px 0;
.stepper.stepper-large {
height: 35px;
border-radius: var(--f7-button-border-radius);
box-shadow: var(--f7-button-box-shadow);
}
.stepper-button-minus, .stepper-button-plus {
color: #446995;
border: 1px solid #446995;
&:before, &:after{
display: none;
}
}
.stepper-button-minus.active-state, .stepper-button-plus.active-state {
background-color: var(--f7-list-link-pressed-bg-color);
}
.stepper-input-wrap {
border-top: 1px solid #446995;
border-bottom: 1px solid #446995;
input {
color: #000;
font-size: 17px;
font-weight: var(--f7-list-item-after-line-height);
}
}
}
}

View file

@ -56,7 +56,35 @@
.content-block.stepper-block {
display: flex;
justify-content: center;
margin: 30px 0 0;
margin: 25px 0 0;
.stepper {
--f7-touch-ripple-color: none;
}
.stepper-button, .stepper-button-minus, .stepper-button-plus {
border: none;
border-radius: 0;
&:before, &:after{
display: none;
}
}
.stepper-button-minus.active-state, .stepper-button-plus.active-state {
background-color: var(--f7-list-link-pressed-bg-color);
}
.stepper-input-wrap{
border:none;
input {
color: #000;
font-size: 16px;
width: 40px;
font-weight: var(--f7-list-item-after-line-height);
}
}
}
}