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

fixes #205 - Season posters and episode thumbnails get too small when resizing the window

This commit is contained in:
Luke Pulverenti 2013-05-04 14:30:38 -04:00
parent d76f3f681f
commit 6bc1ea4743

View file

@ -79,6 +79,19 @@
font-weight: normal;
}
.smallBackdropTileItem .tileImage {
height: 125px;
width: 45%;
}
.smallBackdropTileItem .tileContent {
width: 50%;
}
.smallBackdropTileItem .tileName {
font-weight: normal;
}
.squareTileItem .tileImage {
height: 100px;
width: 35%;
@ -121,6 +134,11 @@
margin-right: 3px;
}
.smallBackdropTileItem {
display: block;
}
.backdropTileItem, .posterTileItem, .squareTileItem {
width: 46%;
}
@ -140,6 +158,15 @@
@media all and (min-width: 850px) {
.smallBackdropTileItem {
width: 370px;
display: inline-block;
}
.smallBackdropTileItem .tileImage {
height: 95px;
}
.backdropTileItem .tileImage {
height: 105px;
}