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

Fix missing border radius and Poster/Thumb Card style

This commit is contained in:
Dmitry Lyzo 2021-04-13 15:06:02 +03:00
parent 2fc3dff75a
commit 3d7562d3ff
2 changed files with 11 additions and 8 deletions

View file

@ -228,9 +228,17 @@ button::-moz-focus-inner {
background-color: #242424;
}
.visualCardBox .cardContent {
border-top-left-radius: 0.2em;
border-top-right-radius: 0.2em;
.blurhash-canvas,
.cardContent,
.cardOverlayContainer {
border-radius: 0.2em;
}
.visualCardBox .blurhash-canvas,
.visualCardBox .cardContent,
.visualCardBox .cardOverlayContainer {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.cardContent-shadow,

View file

@ -229,11 +229,6 @@ a[data-role=button] {
border-radius: 0.8em;
}
.visualCardBox .cardOverlayContainer {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.defaultCardBackground1 {
background-color: #9c20ab;
}