Merge pull request #5272 from tsiegleauq/los-select-speaker-css

Full width for LOS search user
This commit is contained in:
Emanuel Schütze 2020-03-23 16:57:01 +01:00 committed by GitHub
commit 23a105bdb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 5 deletions

View File

@ -133,7 +133,7 @@
<!-- Search for speakers -->
<div *osPerms="'agenda.can_manage_list_of_speakers'">
<form *ngIf="filteredUsers && filteredUsers.value.length > 0" [formGroup]="addSpeakerForm">
<mat-form-field>
<mat-form-field class="search-users-field">
<os-search-value-selector
class="search-users"
formControlName="user_id"

View File

@ -105,10 +105,13 @@ form {
padding: 15px 25px 10px 25px;
width: auto;
.search-users {
display: grid;
.mat-form-field {
width: 100%;
.search-users-field {
width: 100%;
.search-users {
display: grid;
.mat-form-field {
width: 100%;
}
}
}
}