mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update list classes
This commit is contained in:
parent
ebe4dc0ca5
commit
b160cd48a3
19 changed files with 46 additions and 40 deletions
|
@ -17,13 +17,19 @@
|
|||
display: flex;
|
||||
}
|
||||
|
||||
.verticalItemsContainer {
|
||||
.vertical-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
|
||||
.vertical-wrap {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.verticalItemsContainer .card {
|
||||
.vertical-wrap .card {
|
||||
contain: strict;
|
||||
}
|
||||
|
||||
|
|
|
@ -248,7 +248,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo
|
|||
}
|
||||
html += '<' + sectionTitleTagName + ' class="sectionTitle">' + newIndexValue + '</' + sectionTitleTagName + '>';
|
||||
if (isVertical) {
|
||||
html += '<div class="itemsContainer verticalItemsContainer">';
|
||||
html += '<div class="itemsContainer vertical-wrap">';
|
||||
}
|
||||
currentIndexValue = newIndexValue;
|
||||
hasOpenSection = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue