Compare commits

..

3 Commits

Author SHA1 Message Date
f39482fe4c Corrected image path in publication preview 2023-05-25 15:48:38 +02:00
41f47b4d6b styling 2023-05-25 15:47:59 +02:00
be40091102 Publication background fade 2023-05-25 15:41:24 +02:00
2 changed files with 9 additions and 6 deletions

View File

@ -143,7 +143,7 @@ function ShowPublicationViewerWindow(publicationId, event, add){
publicationViewerName.innerText = publication.sortName;
publicationViewerDescription.innerText = publication.description;
publicationViewerAuthor.innerText = publication.author;
pubviewcover.src = publication.posterUrl;
pubviewcover.src = `imageCache/${publication.coverFileNameInCache}`;
toEditId = publicationId;
//Check what action should be listed

View File

@ -35,6 +35,8 @@ topbar {
align-items: center;
height: var(--topbar-height);
background-color: var(--secondary-color);
z-index: 100;
box-shadow: 0 0 20px black;
}
titlebox {
@ -70,9 +72,9 @@ searchdiv{
}
#searchbox {
padding: 6px 8px;
padding: 3px 10px;
border: 0;
border-radius: 3px;
border-radius: 4px;
font-size: 14pt;
width: 250px;
}
@ -80,7 +82,7 @@ searchdiv{
#settingscog {
cursor: pointer;
margin: 0px 30px;
height: calc(100% - 40px);
height: 50%;
filter: invert(100%) sepia(0%) saturate(7465%) hue-rotate(115deg) brightness(116%) contrast(101%);
}
@ -178,7 +180,8 @@ komga-settings input {
font-size: 12pt;
border-radius: 9pt;
background-color: var(--primary-color);
padding: 2pt 20px;
padding: 2pt 17px;
color: black;
}
publication{
@ -198,7 +201,7 @@ publication::after{
left: 0; top: 0;
border-radius: 5px;
width: 100%; height: 100%;
background: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.1));
background: linear-gradient(rgba(0,0,0,0.7), rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.2));
}
publication-information {