Initial data model migration

This commit is contained in:
2026-01-06 22:56:57 +01:00
parent 05ca6e1763
commit 001f0cffa8
142 changed files with 6474 additions and 413 deletions

47
less/items.less Normal file
View File

@@ -0,0 +1,47 @@
// Item-related styles
.item-control {
flex: 0 0 24px;
height: 24px;
line-height: 24px;
text-align: center;
cursor: pointer;
border: none;
background: transparent;
i {
font-size: @font-size-base;
}
&:hover {
color: @color-primary;
}
}
.item-image {
flex: 0 0 36px;
height: 36px;
cursor: pointer;
img {
width: 100%;
height: 100%;
object-fit: cover;
border: 1px solid @color-border;
border-radius: @input-border-radius;
}
}
.item-name {
flex: 1;
cursor: pointer;
&:hover {
color: @color-primary;
}
}
.item-value {
flex: 0 0 60px;
text-align: center;
}