Pre-Shakeout (#1429)
* Fixed zindex on some buttons due to a bug being fixed by bootstrap. Tweaked some styles from new bootstrap design. * Fixed a bug where scan series, when generating cover images wouldn't emit cover updates to the UI. * Fixed an issue where opening directory picker to change bookmark directory then clicking Share without chaning directory, would show the field as empty. * Updating workflow * Reverting version Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
This commit is contained in:
parent
6ebad6cb48
commit
e9c5cf3c92
8 changed files with 20 additions and 27 deletions
|
|
@ -90,7 +90,7 @@ export class ManageSettingsComponent implements OnInit {
|
|||
modalRef.componentInstance.startingFolder = existingDirectory || '';
|
||||
modalRef.componentInstance.helpUrl = '';
|
||||
modalRef.closed.subscribe((closeResult: DirectoryPickerResult) => {
|
||||
if (closeResult.success) {
|
||||
if (closeResult.success && closeResult.folderPath !== '') {
|
||||
this.settingsForm.get(formControl)?.setValue(closeResult.folderPath);
|
||||
this.settingsForm.markAsDirty();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@
|
|||
&:not(.collapsed) {
|
||||
color: var(--accordion-header-text-color);
|
||||
background-color: var(--accordion-body-bg-color);
|
||||
box-shadow: var(--accordion-body-box-shadow);
|
||||
}
|
||||
|
||||
&.collapsed {
|
||||
|
|
|
|||
|
|
@ -14,7 +14,3 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
z-index: 1055 !important; // ngb v12 bug: https://github.com/ng-bootstrap/ng-bootstrap/issues/2686
|
||||
}
|
||||
|
|
@ -162,6 +162,7 @@
|
|||
--accordion-button-focus-border-color: unset;
|
||||
--accordion-button-focus-box-shadow: unset;
|
||||
--accordion-active-body-bg-color: #292929;
|
||||
--accordion-body-box-shadow: none;
|
||||
|
||||
/* Breadcrumb */
|
||||
--breadcrumb-bg-color: #292d32;
|
||||
|
|
|
|||
|
|
@ -164,6 +164,7 @@
|
|||
--accordion-button-focus-border-color: unset;
|
||||
--accordion-button-focus-box-shadow: unset;
|
||||
--accordion-active-body-bg-color: #292929;
|
||||
--accordion-body-box-shadow: none;
|
||||
|
||||
/* Breadcrumb */
|
||||
--breadcrumb-bg-color: #292d32;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue