Bugfix/ux pass 2 (#1107)

* Adding margin bottom to series detail tabs

* Styling tag badges with green on dark

- Added 3 new css vars

* Removing underline from readmore

* Fixing see more to be on one line

* adding gutter to see more

* Changing queue toasts to info

* adding api key tooltip

* Updating active accordion on user preference.

* Fixing search bar and close btn position

* Fixed a bug where entering book reader in dark mode then closing out, would leave you in a broken white state.

* Fixed broken wiki links

Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
This commit is contained in:
Robbie Davis 2022-02-24 07:53:20 -05:00 committed by GitHub
parent cd0af70a37
commit d0c255de68
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 41 additions and 22 deletions

View file

@ -58,7 +58,7 @@ export class ActionService implements OnDestroy {
return;
}
this.libraryService.scan(library?.id).pipe(take(1)).subscribe((res: any) => {
this.toastr.success('Scan queued for ' + library.name);
this.toastr.info('Scan queued for ' + library.name);
if (callback) {
callback(library);
}
@ -84,7 +84,7 @@ export class ActionService implements OnDestroy {
}
this.libraryService.refreshMetadata(library?.id).pipe(take(1)).subscribe((res: any) => {
this.toastr.success('Scan queued for ' + library.name);
this.toastr.info('Scan queued for ' + library.name);
if (callback) {
callback(library);
}
@ -128,7 +128,7 @@ export class ActionService implements OnDestroy {
*/
scanSeries(series: Series, callback?: SeriesActionCallback) {
this.seriesService.scan(series.libraryId, series.id).pipe(take(1)).subscribe((res: any) => {
this.toastr.success('Scan queued for ' + series.name);
this.toastr.info('Scan queued for ' + series.name);
if (callback) {
callback(series);
}
@ -149,7 +149,7 @@ export class ActionService implements OnDestroy {
}
this.seriesService.refreshMetadata(series).pipe(take(1)).subscribe((res: any) => {
this.toastr.success('Refresh covers queued for ' + series.name);
this.toastr.info('Refresh covers queued for ' + series.name);
if (callback) {
callback(series);
}