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; justify-content: center;
} }
* {
user-select: none;
}
:host, :host,
.mat-sidenav, .mat-sidenav,
.mat-sidenav-container { .mat-sidenav-container {
@ -49,7 +45,6 @@
position: relative; position: relative;
text-overflow: ellipsis; text-overflow: ellipsis;
text-shadow: 0 0 4px rgb(0, 0, 0); text-shadow: 0 0 4px rgb(0, 0, 0);
user-select: none;
white-space: nowrap; white-space: nowrap;
width: auto; width: auto;
@ -287,6 +282,7 @@
.rdio-search, .rdio-search,
.rdio-select { .rdio-select {
min-width: 370px; min-width: 370px;
user-select: none;
} }
.rdio-main { .rdio-main {
@ -336,7 +332,6 @@
} }
.rdio-search-results { .rdio-search-results {
.mat-cell, .mat-cell,
.mat-header-cell { .mat-header-cell {
&:first-of-type { &: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.clockRefresh = setTimeout(() => this.syncClock(), (60 - this.clock.getSeconds()) * 1000);
this.ngDetectChanges(); this.ngDetectChanges();
}; }
private transformCall(call: RdioScannerCall): RdioScannerCall { private transformCall(call: RdioScannerCall): RdioScannerCall {
if (call && Array.isArray(this.config && this.config.systems)) { if (call && Array.isArray(this.config && this.config.systems)) {