48 lines
634 B
Plaintext
48 lines
634 B
Plaintext
// 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;
|
|
}
|