UX: improve edit history display (#21474)

This commit is contained in:
Canapin 2023-05-24 02:59:13 +02:00 committed by GitHub
parent e880ede3d8
commit d537265ddd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 5 deletions

View File

@ -31,9 +31,28 @@
padding: 5px;
}
#revisions .row:first-of-type {
margin-top: 10px;
#revisions {
.row:first-of-type {
margin-top: 10px;
}
table {
thead {
th {
padding-bottom: 2px;
font-weight: bold;
color: var(--primary);
}
}
td {
padding: 3px 3px 3px 0.5em;
img {
max-width: none;
}
}
}
}
ins,
.diff-ins {
code,

View File

@ -8,9 +8,6 @@
.modal-inner-container {
min-height: 400px;
}
#revisions {
max-width: 90vw;
}
#revision-numbers {
line-height: var(--line-height-large);
}