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-05 15:24:45 -04:00
parent e641669846
commit 52feb510c8
7 changed files with 49 additions and 56 deletions

View file

@ -11,7 +11,7 @@ button.listItem {
}
.listItem {
display: flex;
display: block;
align-items: center;
text-align: left;
padding: 0 1em !important;
@ -26,12 +26,16 @@ button.listItem {
flex-shrink: 0;
}
.listItem > * {
display: inline-block;
vertical-align: middle;
}
.listItemBody {
flex-grow: 1;
padding: 0 1.15em;
overflow: hidden;
text-overflow: ellipsis;
display: flex;
flex-direction: column;
vertical-align: middle;
justify-content: center;
@ -128,3 +132,11 @@ button.listItem {
box-shadow: none !important;
background-color: transparent !important;
}
@supports (display: flex) {
.listItem, .listItemBody {
display: flex;
}
}