Getting Ready for Release (#1180)

* One more unit test for Tachiyomi

* Removed some debug code in the manga reader menu

* Fixed a typeahead bug where using Enter on add new item or selected options could cause items to disappear from selected state or other visual glitches

* Actually fix the selection issue. We needed to filter out selected before we access element

* Cleaned up collection detail page to align to new side nav design

* Cleaned up some styling on the reading list page

* Fixed a bug where side nav would not be visible on the main app due to some weird redirect logic

* Fixed a bug where when paging to the last page, a page will be skipped and user will have to refresh manually to view

* Fixed some styling bugs on drawer for light themes. Added missing pagination colors on light themes

* On mobile screens, add some padding on series-detail page

* Fixed a bad test case helper
This commit is contained in:
Joseph Milazzo 2022-03-27 16:19:22 -05:00 committed by GitHub
parent f55dbc0a2a
commit d639360e3c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 180 additions and 125 deletions

View file

@ -1,3 +1,9 @@
.hide-if-empty:empty {
display: none;
}
::ng-deep .companion-bar {
h1, h2, h3, h4, h5, h6 {
margin-bottom: 0px;
}
}

View file

@ -80,6 +80,7 @@
}
&:hover {
color: var(--side-nav-hover-color);
background-color: var(--side-nav-hover-bg-color);
}
}
@ -136,71 +137,4 @@ a {
}
}
}
}
// @media (max-width: 576px) {
// .side-nav-item {
// align-items: center;
// display: flex;
// justify-content: space-between;
// padding: 15px 10px;
// width: 100%;
// height: 70px;
// min-height: 40px;
// overflow: hidden;
// font-size: 1rem;
// cursor: pointer;
// .side-nav-text {
// padding-left: 10px;
// opacity: 1;
// min-width: 100px;
// width: 100%;
// div {
// min-width: 102px;
// width: 100%
// }
// }
// .card-actions {
// opacity: 1;
// }
// div {
// align-items: center;
// display: flex;
// height: 100%;
// justify-content: inherit;
// min-width: 30px;
// width: 100%;
// padding-left: 5px;
// i {
// font-size: 2rem;
// width: 50px;
// }
// }
// &.closed {
// .side-nav-text {
// opacity: 0;
// }
// .card-actions {
// opacity: 0;
// font-size: inherit
// }
// }
// span {
// &:last-child {
// flex-grow: 1;
// justify-content: end;
// }
// }
// }
// }
}