diff options
| author | erdgeist <erdgeist@erdgeist.org> | 2026-07-16 13:50:15 +0200 |
|---|---|---|
| committer | erdgeist <erdgeist@erdgeist.org> | 2026-07-16 13:50:15 +0200 |
| commit | 603ccfbd5fe96f0b83aaf3d5118aded2a39992fb (patch) | |
| tree | 0e88ec41af6ce1a03e65bedb3f68a5a9881d96bb /public/stylesheets/admin.css | |
| parent | bb7ef80d084f474bb4c3be0ae0d033aff3de0272 (diff) | |
Condense the action log into a scannable table
Several minor improvements to the action log presentation:
* Now a table with date and human readable presentation as
rows is displayed
* If no changes in a title were detected, the old version
is omitted
* The "inferred" flag is demoted to the end of the line
* You can zoom in on the node's history directly from a
log line
* byline for the first publish action is preserved
* Revisions are directly linked to when a new one i
published
Diffstat (limited to 'public/stylesheets/admin.css')
| -rw-r--r-- | public/stylesheets/admin.css | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/public/stylesheets/admin.css b/public/stylesheets/admin.css index 5f0b165..c1273c6 100644 --- a/public/stylesheets/admin.css +++ b/public/stylesheets/admin.css | |||
| @@ -1494,3 +1494,37 @@ div#image_browser ul li { | |||
| 1494 | gap: 8px; | 1494 | gap: 8px; |
| 1495 | flex-wrap: wrap; | 1495 | flex-wrap: wrap; |
| 1496 | } | 1496 | } |
| 1497 | |||
| 1498 | /* ============================================================ | ||
| 1499 | Action log | ||
| 1500 | ============================================================ */ | ||
| 1501 | |||
| 1502 | #node_action_list td.node_action_time { | ||
| 1503 | white-space: nowrap; | ||
| 1504 | vertical-align: top; | ||
| 1505 | font-family: monospace; | ||
| 1506 | font-size: 0.8em; | ||
| 1507 | color: #777; | ||
| 1508 | padding-right: 1em; | ||
| 1509 | } | ||
| 1510 | |||
| 1511 | #node_action_list td.node_action_body { | ||
| 1512 | vertical-align: top; | ||
| 1513 | } | ||
| 1514 | |||
| 1515 | .node_action_inferred { | ||
| 1516 | opacity: 0.5; | ||
| 1517 | font-size: smaller; | ||
| 1518 | margin-left: 0.5em; | ||
| 1519 | } | ||
| 1520 | |||
| 1521 | .node_action_zoom { | ||
| 1522 | font-size: smaller; | ||
| 1523 | margin-left: 0.5em; | ||
| 1524 | } | ||
| 1525 | |||
| 1526 | .node_action_details summary { | ||
| 1527 | cursor: pointer; | ||
| 1528 | font-size: smaller; | ||
| 1529 | color: #777; | ||
| 1530 | } | ||
