jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/listview/listview.css

103 lines
1.8 KiB
CSS
Raw Normal View History

2016-05-31 08:29:00 -07:00
button.listItem {
background: transparent;
border: 0 !important;
cursor: pointer;
outline: none !important;
color: inherit;
width: 100%;
vertical-align: middle;
font-family: inherit;
font-size: inherit;
}
2016-05-30 09:09:47 -07:00
.listItem {
display: flex;
align-items: center;
text-align: left;
2016-05-31 08:29:00 -07:00
padding: .25em 1.25em !important;
2016-05-30 09:09:47 -07:00
}
.listItem.largeImage {
padding: 1em 0 1em 1em;
}
2016-05-31 08:29:00 -07:00
.listItem > *:not(.listItemBody) {
flex-shrink: 0;
}
2016-05-30 09:09:47 -07:00
.listItemBody {
flex-grow: 1;
2016-05-30 13:46:18 -07:00
padding: .35em 1.25em;
2016-05-31 08:29:00 -07:00
overflow: hidden;
text-overflow: ellipsis;
2016-05-30 13:46:18 -07:00
}
.listItemBody h3 {
margin: 0;
font-weight: normal;
2016-05-31 08:29:00 -07:00
padding: .25em 0;
overflow: hidden;
text-overflow: ellipsis;
2016-05-30 13:46:18 -07:00
}
2016-05-31 08:29:00 -07:00
.layout-tv .listItemBody h3 {
padding: 0;
}
2016-05-30 13:46:18 -07:00
.listItemBodyText {
2016-05-31 08:29:00 -07:00
overflow: hidden;
text-overflow: ellipsis;
2016-05-30 09:09:47 -07:00
}
.listItemImage {
width: 7.4vh;
height: 7.4vh;
background-repeat: no-repeat;
background-size: contain;
flex-shrink: 0;
}
2016-05-31 08:29:00 -07:00
.listItemIcon {
width: 3vh;
height: 3vh;
}
2016-05-30 09:09:47 -07:00
.listItem.largeImage .listItemImage {
width: 45vh;
height: 30vh;
background-position: center center;
position: relative;
margin-right: 2%;
margin-left: 1%;
}
.listItemImage .itemProgressBar {
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
.listItem:focus .secondary {
color: inherit !important;
}
.listItem {
transition: transform .2s ease-out;
}
2016-05-30 13:46:18 -07:00
.listItem:focus {
transform: scale(1.025, 1.025);
}
.paperList {
padding: .5em 0;
2016-05-31 08:29:00 -07:00
margin: 1em auto;
2016-05-30 13:46:18 -07:00
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
2016-05-31 08:29:00 -07:00
.paperList.clear {
box-shadow: none !important;
background-color: transparent !important;
}