Fix user input not focusing on safari

This commit is contained in:
Chrystian Huot 2020-07-13 13:16:06 -04:00
parent 7bc9d881de
commit f00521214c
2 changed files with 2 additions and 7 deletions

View file

@ -8,10 +8,6 @@
justify-content: center;
}
* {
user-select: none;
}
:host,
.mat-sidenav,
.mat-sidenav-container {
@ -49,7 +45,6 @@
position: relative;
text-overflow: ellipsis;
text-shadow: 0 0 4px rgb(0, 0, 0);
user-select: none;
white-space: nowrap;
width: auto;
@ -287,6 +282,7 @@
.rdio-search,
.rdio-select {
min-width: 370px;
user-select: none;
}
.rdio-main {
@ -336,7 +332,6 @@
}
.rdio-search-results {
.mat-cell,
.mat-header-cell {
&:first-of-type {

View file

@ -785,7 +785,7 @@ export class AppRdioScannerComponent implements AfterViewInit, OnDestroy {
this.clockRefresh = setTimeout(() => this.syncClock(), (60 - this.clock.getSeconds()) * 1000);
this.ngDetectChanges();
};
}
private transformCall(call: RdioScannerCall): RdioScannerCall {
if (call && Array.isArray(this.config && this.config.systems)) {