Minor scss fix and autocomplete off

This commit is contained in:
Chrystian Huot 2019-08-28 16:18:48 -04:00
parent 002f45c56e
commit 3fdc52d416
3 changed files with 5 additions and 10 deletions

View file

@ -74,14 +74,6 @@
} }
} }
// td {
// &:nth-child(2),
// &:nth-child(3) {
// text-transform: uppercase;
// }
// }
th { th {
color: rgba(0, 0, 0, .4); color: rgba(0, 0, 0, .4);
font-weight: 400; font-weight: 400;
@ -100,7 +92,6 @@
span { span {
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
user-select: none;
white-space: nowrap; white-space: nowrap;
} }
} }

View file

@ -62,7 +62,7 @@
[showFirstLastButtons]="true"> [showFirstLastButtons]="true">
</mat-paginator> </mat-paginator>
</div> </div>
<form class="radio-filters" [formGroup]="form"> <form class="radio-filters" [formGroup]="form" autocomplete="off">
<div> <div>
<mat-form-field> <mat-form-field>
<mat-label> <mat-label>

View file

@ -6,6 +6,10 @@
position: fixed; position: fixed;
right: 0; right: 0;
top: 0; top: 0;
>* {
user-select: none;
}
} }
.mat-sidenav { .mat-sidenav {