Skip to content

Commit

Permalink
prevent dropdown menu overlapping after enabling "left-thin" mode
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimiry committed Feb 16, 2020
1 parent 53d9c84 commit 92419db
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div *ngIf="initialized$ | async" [attr.class]="'wrapper layout-mode-' + (layoutMode$ | async)">
<div class="accounts-block px-2 pt-2" [ngClass]="{'d-none': hideControls$ | async}">
<div class="controls">
<div class="btn-group" dropdown>
<div class="btn-group" dropdown container="body">
<button (click)="openSettingsView()" class="btn btn-sm btn-secondary" id="optionsMenuItem" title="Options" type="button">
<i class="fa fa-cog"></i>
</button>
Expand Down
5 changes: 5 additions & 0 deletions src/web/browser-window/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ form .required label::after {
}
}

// "bootstrap"
bs-dropdown-container {
z-index: $zindex-dropdown;
}

// "ng-select"
ng-select.ng-invalid.ng-touched .ng-select-container { // sass-lint:disable-line no-qualifying-elements
border-color: #dc3545;
Expand Down

0 comments on commit 92419db

Please sign in to comment.