Browse Source

Reduced padding of lists.

pull/204/head
Sebastian Stehle 8 years ago
parent
commit
ef8290d20e
  1. 4
      src/Squidex/app/features/content/pages/contents/contents-page.component.html
  2. 2
      src/Squidex/app/features/content/shared/references-editor.component.html
  3. 2
      src/Squidex/app/theme/_lists.scss

4
src/Squidex/app/features/content/pages/contents/contents-page.component.html

@ -71,8 +71,8 @@
<colgroup>
<col *ngFor="let field of contentFields" [style.width]="columnWidth + '%'" />
<col style="width: 180px" />
<col style="width: 70px" />
<col style="width: 80px" *ngIf="!isReadOnly" />
<col style="width: 50px" />
<col style="width: 70px" *ngIf="!isReadOnly" />
</colgroup>
<thead>

2
src/Squidex/app/features/content/shared/references-editor.component.html

@ -14,7 +14,7 @@
<col *ngFor="let field of contentFields" [style.width]="columnWidth + '%'" />
<col style="width: 180px" />
<col style="width: 50px" />
<col style="width: 80px" />
<col style="width: 70px" />
</colgroup>
<tbody dnd-sortable-container [sortableData]="contentItems.mutableValues">

2
src/Squidex/app/theme/_lists.scss

@ -13,7 +13,7 @@
td {
// Unified padding for all table cells.
& {
padding: 1rem;
padding: .7rem;
}
// Additional padding for the first column.

Loading…
Cancel
Save