Files
danbooru/app/javascript/src/styles/specific/wiki_page_versions.scss
BrokenEagle de1324098d Rework wiki page versions index/diff views
- 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
2020-02-08 22:57:29 +00:00

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;
}
}
}