Initial data model migration
This commit is contained in:
47
less/items.less
Normal file
47
less/items.less
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user