Fixed stylings #1.1.0.rc4
This commit is contained in:
parent
efce172c01
commit
d586cca672
@ -23,7 +23,7 @@ export class MultiSelectColumnsComponent {
|
||||
}
|
||||
|
||||
get visibleHiddenColumns(): Column[] {
|
||||
return this._hiddenColumns.filter(x => x.key.startsWith(`${this.table}_`));
|
||||
return this._hiddenColumns.filter(x => x.key?.startsWith(`${this.table}_`));
|
||||
}
|
||||
|
||||
@Output() hiddenColumnsChange: EventEmitter<Column[]> = new EventEmitter<Column[]>();
|
||||
|
@ -167,9 +167,7 @@
|
||||
<td hideable-th="xp" [parent]="this">
|
||||
<p-cellEditor>
|
||||
<ng-template pTemplate="input">
|
||||
<p-inputNumber class="table-edit-input" styleClass="input-number" [(ngModel)]="member.xp" mode="decimal" [min]="0" [useGrouping]="false" [showButtons]="true"
|
||||
inputId="minmax-buttons">
|
||||
</p-inputNumber>
|
||||
<input class="table-edit-input" pInputText min="0" type="number" [(ngModel)]="member.xp">
|
||||
</ng-template>
|
||||
<ng-template pTemplate="output">
|
||||
{{member.xp}}
|
||||
|
@ -729,6 +729,10 @@ p-inputNumber {
|
||||
}
|
||||
}
|
||||
|
||||
p-cellEditor {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.p-multiselect {
|
||||
width: 100% !important;
|
||||
}
|
||||
|
@ -97,8 +97,7 @@ p-table {
|
||||
}
|
||||
}
|
||||
|
||||
.p-dropdown,
|
||||
.p-inputnumber {
|
||||
.p-dropdown {
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user