mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-11 13:05:08 +00:00
54 lines
834 B
CSS
54 lines
834 B
CSS
|
/* Structure */
|
||
|
.example-container {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
min-width: 300px;
|
||
|
}
|
||
|
|
||
|
.example-header {
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
.mat-form-field {
|
||
|
font-size: 14px;
|
||
|
flex-grow: 1;
|
||
|
margin-top: 8px;
|
||
|
}
|
||
|
|
||
|
.example-no-results {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
padding: 24px;
|
||
|
font-size: 12px;
|
||
|
font-style: italic;
|
||
|
}
|
||
|
|
||
|
/** Selection styles */
|
||
|
.example-selection-header {
|
||
|
font-size: 18px;
|
||
|
}
|
||
|
|
||
|
.mat-column-select {
|
||
|
max-width: 54px;
|
||
|
}
|
||
|
|
||
|
.mat-row:hover, .example-selected-row {
|
||
|
background: #f5f5f5;
|
||
|
}
|
||
|
|
||
|
.mat-row:active, .mat-row.example-selected-row {
|
||
|
background: #eaeaea;
|
||
|
}
|
||
|
|
||
|
.mat-table {
|
||
|
overflow: auto;
|
||
|
max-height: 500px;
|
||
|
}
|