44 lines
641 B
CSS
44 lines
641 B
CSS
/*
|
|
List items
|
|
*/
|
|
.item-slot {
|
|
background-color: rgb(232, 232, 232);
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.item {
|
|
background: white;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
height: 40px;
|
|
margin: 1px 0 1px 0;
|
|
padding: 0 16px 0 16px;
|
|
position: relative;
|
|
transition: box-shadow 0.3s ease, opacity 0.5s ease-in-out;
|
|
}
|
|
|
|
.item > .itemName {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.item.small {
|
|
height: 32px;
|
|
}
|
|
|
|
.item.tall {
|
|
height: 56px;
|
|
}
|
|
|
|
.item.flexible {
|
|
height: auto;
|
|
padding-top: 16px;
|
|
padding-bottom: 16px;
|
|
}
|
|
|
|
.item iron-icon, .item paper-icon-button {
|
|
color: #747474;
|
|
color: rgba(0,0,0,0.54);
|
|
}
|