mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 10:58:20 -07:00
Merge pull request #963 from MrTimscampi/fix-logo-size
Don't scale logo on details page
This commit is contained in:
commit
64a61201d6
@ -21,7 +21,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.libraryPage {
|
.libraryPage {
|
||||||
padding-top: 7em;
|
padding-top: 7em !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.itemDetailPage {
|
.itemDetailPage {
|
||||||
@ -115,7 +115,7 @@
|
|||||||
display: -webkit-inline-box;
|
display: -webkit-inline-box;
|
||||||
display: -webkit-inline-flex;
|
display: -webkit-inline-flex;
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
margin: 0 0 0 0.5em;
|
margin: 0.3em 0 0 0.5em;
|
||||||
height: 1.7em;
|
height: 1.7em;
|
||||||
-webkit-box-align: center;
|
-webkit-box-align: center;
|
||||||
-webkit-align-items: center;
|
-webkit-align-items: center;
|
||||||
@ -128,10 +128,6 @@
|
|||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.layout-mobile .pageTitleWithDefaultLogo {
|
|
||||||
background-image: url(../img/icon-transparent.png);
|
|
||||||
}
|
|
||||||
|
|
||||||
.headerLeft,
|
.headerLeft,
|
||||||
.skinHeader {
|
.skinHeader {
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
@ -242,10 +238,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.mainDrawer-scrollContainer {
|
.mainDrawer-scrollContainer {
|
||||||
margin-bottom: 10vh;
|
padding-bottom: 10vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media all and (min-width: 40em) {
|
@media all and (min-width: 40em) {
|
||||||
|
.dashboardDocument .adminDrawerLogo,
|
||||||
.dashboardDocument .mainDrawerButton {
|
.dashboardDocument .mainDrawerButton {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
@ -271,6 +268,12 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media all and (max-width: 60em) {
|
||||||
|
.libraryDocument .mainDrawerButton {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media all and (max-width: 84em) {
|
@media all and (max-width: 84em) {
|
||||||
.withSectionTabs .headerTop {
|
.withSectionTabs .headerTop {
|
||||||
padding-bottom: 0.55em;
|
padding-bottom: 0.55em;
|
||||||
@ -313,7 +316,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.dashboardDocument .mainDrawer-scrollContainer {
|
.dashboardDocument .mainDrawer-scrollContainer {
|
||||||
margin-top: 4.6em !important;
|
margin-top: 4.65em !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -606,12 +609,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.detailLogo {
|
.detailLogo {
|
||||||
width: 67.25vw;
|
width: 30vw;
|
||||||
height: 14.5vh;
|
height: 25vh;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 15vh;
|
top: 10vh;
|
||||||
right: 0;
|
right: 20vw;
|
||||||
-webkit-background-size: contain;
|
|
||||||
background-size: contain;
|
background-size: contain;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -619,26 +621,8 @@
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media all and (max-width: 87.5em) {
|
|
||||||
.detailLogo {
|
|
||||||
right: 5%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media all and (max-width: 75em) {
|
|
||||||
.detailLogo {
|
|
||||||
right: 2%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media all and (max-width: 68.75em) {
|
@media all and (max-width: 68.75em) {
|
||||||
.detailLogo {
|
.detailLogo {
|
||||||
width: 14.91em;
|
|
||||||
height: 3.5em;
|
|
||||||
right: 5%;
|
|
||||||
bottom: 5%;
|
|
||||||
top: auto;
|
|
||||||
background-position: center right;
|
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1119,50 +1103,3 @@ div:not(.sectionTitleContainer-cards) > .sectionTitle-cards {
|
|||||||
.itemsViewSettingsContainer > .button-flat {
|
.itemsViewSettingsContainer > .button-flat {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.layout-mobile #myPreferencesMenuPage {
|
|
||||||
padding-top: 3.75em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.itemDetailsGroup {
|
|
||||||
margin-bottom: 1.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.trackSelections {
|
|
||||||
max-width: 44em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.detailsGroupItem,
|
|
||||||
.trackSelections .selectContainer {
|
|
||||||
display: flex;
|
|
||||||
max-width: 44em;
|
|
||||||
margin: 0 0 0.5em !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.trackSelections .selectContainer {
|
|
||||||
margin: 0 0 0.3em !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.detailsGroupItem .label,
|
|
||||||
.trackSelections .selectContainer .selectLabel {
|
|
||||||
cursor: default;
|
|
||||||
flex-grow: 0;
|
|
||||||
flex-shrink: 0;
|
|
||||||
flex-basis: 6.25em;
|
|
||||||
margin: 0 0.6em 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.trackSelections .selectContainer .selectLabel {
|
|
||||||
margin: 0 0.2em 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.trackSelections .selectContainer .detailTrackSelect {
|
|
||||||
font-size: inherit;
|
|
||||||
padding: 0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.trackSelections .selectContainer .selectArrowContainer .selectArrow {
|
|
||||||
margin-top: 0;
|
|
||||||
font-size: 1.4em;
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user