Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
<div class="contents">
<mat-form-field class="search-area">
<mat-icon matPrefix class="search-icon" svgIcon="search_24px"></mat-icon>
<mat-label>Search</mat-label>
<input
matInput
#search
[(ngModel)]="searchInput"
placeholder="Search"
(ngModelChange)="searchInputChanged()"
/>
</mat-form-field>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,6 @@ limitations under the License.

.search-area {
margin-bottom: 4px;

mat-icon.search-icon {
font-size: 1em;

::ng-deep svg {
padding-top: 6px;
}
}
}

.column-list {
Expand All @@ -58,7 +50,11 @@ limitations under the License.
}

.column-button {
text-align: left;
// Don't allow buttons to shrink when there are many of them.
flex-shrink: 0;
// Match height of button touch target to avoid unnecessary scrollbar.
height: 48px;
justify-content: left;
width: 100%;

&.selected {
Expand Down