diff --git a/src/popup/components/pop-out.component.ts b/src/popup/components/pop-out.component.ts index 3c32e46539..a03716bd37 100644 --- a/src/popup/components/pop-out.component.ts +++ b/src/popup/components/pop-out.component.ts @@ -20,11 +20,14 @@ export class PopOutComponent implements OnInit { @Input() show = true; constructor(private analytics: Angulartics2, private platformUtilsService: PlatformUtilsService, - private popupUtilsService: PopupUtilsService) {} + private popupUtilsService: PopupUtilsService) { } ngOnInit() { if (this.show) { this.show = !this.platformUtilsService.isSafari(); + if (this.show && this.popupUtilsService.inSidebar(window) && this.platformUtilsService.isFirefox()) { + this.show = false; + } } } diff --git a/src/popup/scss/base.scss b/src/popup/scss/base.scss index bcc1301475..444a961a97 100644 --- a/src/popup/scss/base.scss +++ b/src/popup/scss/base.scss @@ -177,7 +177,7 @@ header { .fa { position: absolute; top: 15px; - left: 10px; + left: 20px; color: lighten($brand-primary, 30%); } @@ -204,6 +204,10 @@ header { .left + .search { padding-left: 0; + + .fa { + left: 10px; + } } .search + .right { diff --git a/src/popup/vault/groupings.component.html b/src/popup/vault/groupings.component.html index 1529109901..e9a9a6a2e9 100644 --- a/src/popup/vault/groupings.component.html +++ b/src/popup/vault/groupings.component.html @@ -1,5 +1,5 @@
-
+