1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update components

This commit is contained in:
Luke Pulverenti 2016-07-15 17:16:18 -04:00
parent 9254ff721d
commit 3197c48232
162 changed files with 902 additions and 9728 deletions

View file

@ -1,6 +1,7 @@
button.listItem {
background: transparent;
border: 0 !important;
border-bottom: 1px solid #2a2a2a !important;
cursor: pointer;
outline: none !important;
color: inherit;
@ -16,6 +17,7 @@ button.listItem {
text-align: left;
padding: 0 1em !important;
line-height: 170%;
border-bottom: 1px solid #2a2a2a;
}
.listItem.largeImage {
@ -33,7 +35,7 @@ button.listItem {
.listItemBody {
flex-grow: 1;
padding: 0 1.15em;
padding: 0 1em;
overflow: hidden;
text-overflow: ellipsis;
flex-direction: column;
@ -82,6 +84,7 @@ button.listItem {
background-size: contain;
flex-shrink: 0;
margin-left: -.75em;
background-position: center center;
}
.listItemIcon {
@ -133,10 +136,17 @@ button.listItem {
background-color: transparent !important;
}
.listItemMediaInfo {
align-items: center;
}
.listItemMediaInfo > * {
display: inline-block;
}
@supports (display: flex) {
.listItem, .listItemBody {
.listItem, .listItemBody, .listItemMediaInfo {
display: flex;
}
}