5d40642726
Avancement feuille d'items Ajout des données JSON pour génération des compendiums.
62 lines
1019 B
Plaintext
62 lines
1019 B
Plaintext
/* Items List */
|
|
.items-list {
|
|
list-style: none;
|
|
margin: 7px 0;
|
|
padding: 0;
|
|
overflow-y: auto;
|
|
|
|
.item-header {
|
|
font-family: @font-handwrite;
|
|
}
|
|
|
|
.item {
|
|
min-height: 30px;
|
|
line-height: 24px;
|
|
padding: 3px 0 3px 3px;
|
|
border-bottom: 1px solid #BBB;
|
|
align-items: stretch;
|
|
|
|
|
|
.item-image {
|
|
flex: 0 0 30px;
|
|
margin-right: 5px;
|
|
img {
|
|
margin: 0;
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
.item-name {
|
|
margin: 0;
|
|
}
|
|
|
|
.item-controls-1 {
|
|
flex: 0 0 18px;
|
|
}
|
|
.item-controls,
|
|
.item-controls-2 {
|
|
flex: 0 0 36px;
|
|
}
|
|
.item-controls-3 {
|
|
flex: 0 0 54px;
|
|
}
|
|
.item-control {
|
|
color: @colorOlive;
|
|
}
|
|
//.item-buttons {
|
|
// display: flex;
|
|
// flex-wrap: wrap;
|
|
// flex-direction: row;
|
|
// align-items: center;
|
|
// flex: 2;
|
|
// justify-content: flex-start;
|
|
//}
|
|
//.item-button {
|
|
// line-height: 1;
|
|
// font-size: 11px;
|
|
// flex: none;
|
|
// width: auto;
|
|
//}
|
|
}
|
|
}
|