mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-19 23:02:33 +00:00
44 lines
613 B
CSS
Executable File
44 lines
613 B
CSS
Executable File
/* Structure */
|
|
.example-container {
|
|
position: relative;
|
|
}
|
|
|
|
.example-table-container {
|
|
position: relative;
|
|
max-height: 400px;
|
|
overflow: auto;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
}
|
|
|
|
.example-loading-shade {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 56px;
|
|
right: 0;
|
|
background: rgba(0, 0, 0, 0.15);
|
|
z-index: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.example-rate-limit-reached {
|
|
color: #980000;
|
|
max-width: 360px;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Column Widths */
|
|
.mat-column-number,
|
|
.mat-column-state {
|
|
max-width: 64px;
|
|
}
|
|
|
|
.mat-column-created {
|
|
max-width: 124px;
|
|
}
|