- Changed to using the diff-body CSS class -- Removed unnecessary elements from the CSS style file - Does a symmetric difference on the array fields to detect differences - Add more descriptors to the status/changes column - Specifically add <br> to statuses to cause line breaks
24 lines
496 B
SCSS
24 lines
496 B
SCSS
div#c-wiki-page-versions {
|
|
#a-diff {
|
|
ul.wiki-other-names-diff-list li.removed {
|
|
background: var(--wiki-page-versions-diff-del-background);
|
|
text-decoration: none;
|
|
}
|
|
|
|
ul.wiki-other-names-diff-list li.added {
|
|
background: var(--wiki-page-versions-diff-ins-background);
|
|
text-decoration: none;
|
|
}
|
|
|
|
ul.wiki-other-names-diff-list li.obsolete {
|
|
text-decoration: dotted underline;
|
|
}
|
|
}
|
|
|
|
#a-index {
|
|
table {
|
|
margin-bottom: 1em;
|
|
}
|
|
}
|
|
}
|