2017-09-27 16:40:59 +00:00
|
|
|
/* Structure */
|
|
|
|
.example-container {
|
2017-10-10 13:37:14 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
min-width: 300px;
|
2017-09-27 16:40:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.example-header {
|
2017-10-10 13:37:14 +00:00
|
|
|
min-height: 56px;
|
|
|
|
max-height: 56px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 8px 24px 0;
|
|
|
|
font-size: 20px;
|
|
|
|
justify-content: space-between;
|
|
|
|
border-bottom: 1px solid transparent;
|
2017-09-27 16:40:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.mat-form-field {
|
2017-10-10 13:37:14 +00:00
|
|
|
font-size: 14px;
|
|
|
|
flex-grow: 1;
|
|
|
|
margin-top: 8px;
|
2017-09-27 16:40:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.example-no-results {
|
2017-10-10 13:37:14 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 24px;
|
|
|
|
font-size: 12px;
|
|
|
|
font-style: italic;
|
2017-09-27 16:40:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Selection styles */
|
|
|
|
.example-selection-header {
|
2017-10-10 13:37:14 +00:00
|
|
|
font-size: 18px;
|
2017-09-27 16:40:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.mat-column-select {
|
2017-10-10 13:37:14 +00:00
|
|
|
max-width: 54px;
|
2017-09-27 16:40:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.mat-row:hover, .example-selected-row {
|
2017-10-10 13:37:14 +00:00
|
|
|
background: #F5F5F5;
|
2017-09-27 16:40:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.mat-row:active, .mat-row.example-selected-row {
|
2017-10-10 13:37:14 +00:00
|
|
|
background: #EAEAEA;
|
2017-09-27 16:40:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.mat-table {
|
2017-10-10 13:37:14 +00:00
|
|
|
overflow: auto;
|
|
|
|
max-height: 500px;
|
2017-09-27 16:40:59 +00:00
|
|
|
}
|