Improve status tracking for upgrades; add package version diff
This commit is contained in:
parent
430a1416c6
commit
e14b5a89c3
7 changed files with 209 additions and 11 deletions
31
tailbone/static/css/diffs.css
Normal file
31
tailbone/static/css/diffs.css
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue