Update template-list-dialog

This commit is contained in:
Piotr Pekala 2019-08-06 00:15:28 -07:00
parent 031291612f
commit 4487ab5167
2 changed files with 24 additions and 1 deletions

View File

@ -1,4 +1,4 @@
<div mat-dialog-content> <div mat-dialog-content class="content">
<div class="header"> <div class="header">
<mat-form-field floatPlaceholder="never"> <mat-form-field floatPlaceholder="never">
<input matInput #filter placeholder="Filter templates" /> <input matInput #filter placeholder="Filter templates" />

View File

@ -16,3 +16,26 @@
font-size: 16px; font-size: 16px;
flex-grow: 1; flex-grow: 1;
} }
div {
scrollbar-color: darkgrey #263238;
scrollbar-width: thin;
}
mat-table {
scrollbar-color: darkgrey #263238;
scrollbar-width: thin;
}
::-webkit-scrollbar {
width: 0.5em;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
::-webkit-scrollbar-thumb {
background-color: darkgrey;
outline: 1px solid #263238;
}