Add customizable rolls to items

This commit is contained in:
mstein
2022-07-23 18:50:08 +02:00
parent 58ed9d7d74
commit b3e2771e91
24 changed files with 361 additions and 155 deletions
+1 -1
View File
@@ -43,7 +43,7 @@
font-weight: bold;
}
td {
td, th {
padding: 0 0.5rem 0 0.5rem;
&.center {
+54 -16
View File
@@ -1,20 +1,58 @@
// main: midgard5.less
.midgard5.sheet.item {
form {
display: flex;
flex-direction: column;
}
.sheet-content {
height: 100%;
display: flex;
flex-direction: column;
.editor {
height: 100%;
}
}
.item-img {
height: 64px;
width: 64px;
}
form {
display: flex;
flex-direction: column;
}
.sheet-content {
height: 100%;
display: flex;
flex-direction: column;
.editor {
height: 100%;
}
}
.item-img {
height: 64px;
width: 64px;
}
td, th {
padding: 0 0.5rem 0 0.5rem;
&.center {
text-align: center;
}
&.fixed-value {
width: 3rem;
text-align: center;
}
}
table.rolls-table {
.col-enabled {
width: 3rem;
text-align: center;
}
.col-create {
width: 3rem;
text-align: center;
button {
background: rgba(255, 255, 255, 0.5);
}
}
.col-delete {
width: 3rem;
text-align: center;
}
.col-label {
width: 6rem;
}
}
}