48 lines
1020 B
CSS
48 lines
1020 B
CSS
ul {
|
|
margin-top: 0 !important;
|
|
margin-bottom: 1em !important;
|
|
padding-top: 0.7em !important;
|
|
padding-left: 0 !important;
|
|
padding-bottom: 0 !important;
|
|
}
|
|
|
|
li {
|
|
border-left: 2px solid #DDD;
|
|
margin: 0 !important;
|
|
padding-top: 0.5em !important;
|
|
padding-bottom: 0.5em !important;
|
|
padding-left: 0.7em !important;
|
|
}
|
|
|
|
li::before {
|
|
display: none !important;
|
|
}
|
|
|
|
.ui.form input[type="number"].textfield {
|
|
appearance: textfield;
|
|
}
|
|
|
|
.ui.form input[type="number"].textfield ::-webkit-inner-spin-button,
|
|
.ui.form input[type="number"].textfield ::-webkit-outer-spin-button {
|
|
-webkit-appearance: none;
|
|
margin: 0;
|
|
}
|
|
|
|
.ui.input.address input {
|
|
text-align: right;
|
|
}
|
|
|
|
.address :not(:first-child):not(:last-child) {
|
|
border-radius: 0 !important;
|
|
}
|
|
|
|
.address :first-child {
|
|
border-top-right-radius: 0 !important;
|
|
border-bottom-right-radius: 0 !important;
|
|
}
|
|
|
|
.address :last-child {
|
|
border-top-left-radius: 0 !important;
|
|
border-bottom-left-radius: 0 !important;
|
|
}
|