display feed and edit history as table

This commit is contained in:
Hana - Piralein
2023-06-20 19:31:35 +02:00
parent 5481f29e34
commit 154fbfe2b0
5 changed files with 86 additions and 71 deletions

View File

@@ -158,7 +158,7 @@ footer {
list-style: none;
}
.asset-list:not(.moderation-list) .asset-header {
.asset-list .asset-header {
flex: 1;
}
@@ -216,6 +216,14 @@ footer {
color: var(--base-color-text);
}
.table-tags .label {
display: block;
width: 100%;
padding: 0;
font-size: 14px;
text-align: center;
}
.asset-tags .label {
padding: 0 6px;
font-size: 13px;
@@ -229,10 +237,6 @@ footer {
gap: 6px;
}
.asset-tags-moderation {
justify-content: flex-end;
}
.asset-tags {
display: flex;
flex-wrap: wrap;
@@ -473,4 +477,22 @@ footer {
.asset-footer {
border-color: var(--primary-background-color)
}
.table-bordered {
border: 2px solid var(--secondary-background-color);
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th {
border: none;
}
.table-bordered thead {
border-bottom: 2px solid var(--default-background-color);
}
.table-striped > tbody > tr:nth-of-type(2n+1) {
background-color: var(--secondary-background-color);
}
}