mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 08:33:00 -06:00
Fix user input not focusing on safari
This commit is contained in:
parent
7bc9d881de
commit
f00521214c
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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)) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue