mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 16:33:01 -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;
|
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 {
|
||||||
|
|
|
||||||
|
|
@ -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)) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue