mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fixed user image scaling
This commit is contained in:
parent
d5780727eb
commit
5218e67d4e
12 changed files with 59 additions and 24 deletions
BIN
dashboard-ui/css/fonts/RobotoLight.woff
Normal file
BIN
dashboard-ui/css/fonts/RobotoLight.woff
Normal file
Binary file not shown.
BIN
dashboard-ui/css/fonts/RobotoMedium.woff
Normal file
BIN
dashboard-ui/css/fonts/RobotoMedium.woff
Normal file
Binary file not shown.
BIN
dashboard-ui/css/fonts/RobotoRegular.woff
Normal file
BIN
dashboard-ui/css/fonts/RobotoRegular.woff
Normal file
Binary file not shown.
BIN
dashboard-ui/css/fonts/RobotoThin.woff
Normal file
BIN
dashboard-ui/css/fonts/RobotoThin.woff
Normal file
Binary file not shown.
|
@ -116,7 +116,7 @@
|
|||
|
||||
.listHeader {
|
||||
margin-top: .5em;
|
||||
margin-bottom: .25em;
|
||||
margin-bottom: .2em;
|
||||
padding-left: 7px;
|
||||
}
|
||||
|
||||
|
|
|
@ -338,11 +338,11 @@
|
|||
@media all and (min-width: 1440px) {
|
||||
|
||||
.squarePosterItem {
|
||||
width: 180px;
|
||||
width: 167px;
|
||||
}
|
||||
|
||||
.squarePosterItem .posterItemImage {
|
||||
height: 180px;
|
||||
height: 167px;
|
||||
}
|
||||
|
||||
.backdropPosterItem {
|
||||
|
|
|
@ -26,6 +26,31 @@
|
|||
src: local('Open Sans Extrabold'), local('OpenSans-Extrabold'), url(fonts/OpenSans-ExtraBold.woff) format('woff');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 100;
|
||||
src: local('Roboto Thin'), local('Roboto-Thin'), url(fonts/RobotoThin.woff) format('woff');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: local('Roboto Light'), local('Roboto-Light'), url(fonts/RobotoLight.woff) format('woff');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local('Roboto Regular'), local('Roboto-Regular'), url(fonts/RobotoRegular.woff) format('woff');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: local('Roboto Medium'), local('Roboto-Medium'), url(fonts/RobotoMedium.woff) format('woff');
|
||||
}
|
||||
|
||||
* {
|
||||
text-shadow: none!important;
|
||||
}
|
||||
|
@ -45,8 +70,9 @@ body {
|
|||
}
|
||||
|
||||
h1 {
|
||||
font-weight: 300;
|
||||
font-size: 2em;
|
||||
font-weight: 100;
|
||||
font-size: 28px;
|
||||
font-family: Roboto;
|
||||
}
|
||||
|
||||
.ui-loader h1 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue