
* Fixed an underline on hover of pagination link * Ensure title of companion bar eats full width if there is no filter * If a user doesn't have the Download role, they will not be able to download over OPDS. * Fixed a bug where after going into webtoon reader mode then leaving, the bookmark effect would continue using the webtoon mode styling * Fixed a bug where continuous reader wasn't being triggered due to moving scrollbar to body and a floating point percision error on scroll top * Fixed how continuous trigger is shown so that we properly adjust scroll on the top (for prev chapter) * Fixed a bad merge that broke saving any edits to series metadata * When a epub key is not correct, even after we correct it, ignore the inlining of the style so the book is at least still readable. * Disabled double rendering (this feature is being postponed to a later release) * Disabled user setting and forced it to Single on any save * Removed cache directory from UpdateSettings validation as we don't allow changing it. * Fix security issue with url parse * After all migrations run, update the installed version in the Database. Send that installed version on the stat service. * Dependency bot to update some security stuff * Some misc code cleanup and fixes on the typeahead (still broken)
55 lines
776 B
SCSS
55 lines
776 B
SCSS
// DEBUG Only
|
|
.overlay {
|
|
background-color: rgba(0,0,0,0.5);
|
|
}
|
|
.active {
|
|
border: 2px solid red;
|
|
}
|
|
|
|
.full-opacity {
|
|
opacity: 0;
|
|
}
|
|
|
|
.spacer {
|
|
width: 100%;
|
|
height: 300px;
|
|
cursor: pointer;
|
|
|
|
.animate {
|
|
animation: move-up-down 1s linear infinite;
|
|
}
|
|
|
|
.text {
|
|
z-index: 101;
|
|
|
|
}
|
|
}
|
|
|
|
|
|
img, .full-width {
|
|
width: 100% !important;
|
|
height: auto;
|
|
}
|
|
|
|
|
|
@keyframes move-up-down {
|
|
0%, 100% {
|
|
transform: translateY(0);
|
|
}
|
|
50% {
|
|
transform: translateY(-10px);
|
|
}
|
|
}
|
|
|
|
.bookmark-effect {
|
|
animation: infinite-scroll-bookmark 1s cubic-bezier(0.165, 0.84, 0.44, 1);
|
|
}
|
|
|
|
@keyframes infinite-scroll-bookmark {
|
|
0%, 100% {
|
|
filter: opacity(1);
|
|
}
|
|
50% {
|
|
filter: opacity(0.25);
|
|
}
|
|
}
|