Merge remote-tracking branch 'origin/master' into simplify-core-values

This commit is contained in:
Johannes Loher 2021-01-04 20:29:09 +01:00
commit 9fba2d1385
5 changed files with 137 additions and 29 deletions

View file

@ -1,3 +1,5 @@
@use "sass:color";
.items-list {
list-style: none;
margin: 7px 0;
@ -16,13 +18,26 @@
.item-image {
flex: 0 0 24px;
margin-right: 5px;
height: 100%;
//margin-right: 5px;
@include centered-content;
}
img {
display: block;
border: none;
}
input {
border: 0;
padding: 0;
}
input[type="checkbox"] {
width: auto;
height: 100%;
margin: 0px;
}
}
.item-name {
@ -36,6 +51,11 @@
.item-num-val {
text-align: center;
width: 2.5em;
padding: 0;
}
.item-num-val:invalid {
background-color: color.mix(lightcoral, $c-light-grey, 25%);
}
.item-description {
@ -43,6 +63,7 @@
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
height: 100%;
p {
text-overflow: ellipsis;
overflow: hidden;