RED-9578: fixed styles.
This commit is contained in:
parent
aa9de3c369
commit
fcf159d091
@ -1,6 +1,8 @@
|
||||
<div [ngStyle]="gridConfig()" class="table">
|
||||
@for (column of _columns(); track column.label) {
|
||||
<div [ngClass]="{ hide: !!column.hide }" class="col cell">{{ column.label }}</div>
|
||||
<div [ngClass]="{ hide: !!column.hide }" class="col cell">
|
||||
<label>{{ column.label }}</label>
|
||||
</div>
|
||||
}
|
||||
@for (row of _data(); track $index) {
|
||||
@for (cell of row; track cell.label) {
|
||||
|
||||
@ -12,6 +12,11 @@
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
background: white;
|
||||
|
||||
label {
|
||||
opacity: 0.7;
|
||||
font-weight: normal;
|
||||
}
|
||||
}
|
||||
|
||||
.cell {
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
|
||||
:host {
|
||||
height: 250px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.scrollable {
|
||||
margin-bottom: 8px;
|
||||
overflow-y: auto;
|
||||
max-height: 240px;
|
||||
@include common-mixins.scroll-bar;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user