Improve status tracking for upgrades; add package version diff

This commit is contained in:
Lance Edgar 2017-08-07 22:23:07 -05:00
parent 430a1416c6
commit e14b5a89c3
7 changed files with 209 additions and 11 deletions

View file

@ -0,0 +1,31 @@
table.diff {
background-color: White;
border-collapse: collapse;
border-left: 1px solid Black;
border-top: 1px solid Black;
}
table.diff th,
table.diff td {
border-bottom: 1px solid Black;
border-right: 1px solid Black;
}
table.diff td {
padding: 2px 5px;
}
table.diff td.old-value,
table.diff td.new-value{
font-family: monospace;
white-space: pre;
}
table.diff tr.diff td.new-value {
background-color: #cfc;
}
table.diff tr.diff td.old-value {
background-color: #fcc;
}