This commit is contained in:
redphx
2024-12-05 17:10:39 +07:00
parent c836e33f7b
commit 9199351af1
207 changed files with 9833 additions and 6953 deletions

70
src/assets/css/number-stepper.styl Normal file → Executable file
View File

@@ -1,46 +1,54 @@
.bx-number-stepper {
text-align: center;
span {
display: inline-block;
min-width: 40px;
font-family: var(--bx-monospaced-font);
font-size: 13px;
margin: 0 4px;
}
> div {
display: flex;
align-items: center;
button {
border: none;
width: 24px;
height: 24px;
margin: 0;
line-height: 24px;
background-color: var(--bx-default-button-color);
color: #fff;
border-radius: 4px;
font-weight: bold;
font-size: 14px;
font-family: var(--bx-monospaced-font);
span {
flex: 1;
display: inline-block;
min-width: 40px;
font-family: var(--bx-monospaced-font);
font-size: 13px;
margin: 0 4px;
}
&:hover {
@media (hover: hover) {
button {
flex-shrink: 0;
border: none;
width: 24px;
height: 24px;
margin: 0;
line-height: 24px;
background-color: var(--bx-default-button-color);
color: #fff;
border-radius: 4px;
font-weight: bold;
font-size: 14px;
font-family: var(--bx-monospaced-font);
&:hover {
@media (hover: hover) {
background-color: var(--bx-default-button-hover-color);
}
}
&:active {
background-color: var(--bx-default-button-hover-color);
}
}
&:active {
background-color: var(--bx-default-button-hover-color);
}
&:disabled + span {
font-family: var(--bx-title-font);
&:disabled + span {
font-family: var(--bx-title-font);
}
}
}
input[type="range"] {
display: block;
margin: 12px auto 2px;
width: 180px;
margin: 8px 0 2px auto;
min-width: 180px;
width: 100%;
color: #959595 !important;
}
@@ -48,7 +56,7 @@
display: none;
}
&[data-disabled=true] {
&[data-disabled=true], &[disabled=true] {
input[type=range], button {
display: none;
}