- Normalized many SCSS files as deep as possible - Fixed print css to display all 6 pages - Fixed sheet header to match original sheet header - Fixed issue with range property for ranged items
59 lines
744 B
SCSS
59 lines
744 B
SCSS
@import "ItemEditor";
|
|
|
|
#inventory {
|
|
tbody {
|
|
td:last-child {
|
|
padding-right: 11px;
|
|
}
|
|
|
|
td.inc > .btn {
|
|
height: 32px;
|
|
padding: 2px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.overlay > .inventory-item {
|
|
max-width: 280px;
|
|
|
|
h4 {
|
|
span:first-child {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
table {
|
|
margin-top: 15px;
|
|
font: 500 13px/22px Alegreya Sans;
|
|
letter-spacing: 0.05em;
|
|
|
|
td {
|
|
padding: 0;
|
|
border: none;
|
|
height: auto;
|
|
|
|
&:first-child {
|
|
color: $color2;
|
|
padding-right: 15px;
|
|
width: 0;
|
|
}
|
|
|
|
&:last-child {
|
|
color: $color1;
|
|
}
|
|
}
|
|
}
|
|
|
|
p.ammunition {
|
|
margin-top: 3px;
|
|
}
|
|
|
|
p.armor {
|
|
margin-top: 10px;
|
|
font: 500 13px/22px Alegreya Sans;
|
|
color: $color1;
|
|
}
|
|
} |