summaryrefslogtreecommitdiff
path: root/public/stylesheets/admin.css
diff options
context:
space:
mode:
Diffstat (limited to 'public/stylesheets/admin.css')
-rw-r--r--public/stylesheets/admin.css25
1 files changed, 25 insertions, 0 deletions
diff --git a/public/stylesheets/admin.css b/public/stylesheets/admin.css
index 38c9e5a6..1bb6cf4c 100644
--- a/public/stylesheets/admin.css
+++ b/public/stylesheets/admin.css
@@ -511,6 +511,31 @@ table.revisions_table tr:hover {
511 background-color: #f1f1f1; 511 background-color: #f1f1f1;
512} 512}
513 513
514#diffview del {
515 background: #ffd7d5;
516 color: #82071e;
517 text-decoration: line-through;
518 padding: 0 2px;
519 border-radius: 2px;
520}
521
522#diffview ins {
523 background: #ccffd8;
524 color: #055d20;
525 text-decoration: none;
526 padding: 0 2px;
527 border-radius: 2px;
528}
529
530#diffview .diff_side_by_side {
531 display: flex;
532 gap: 1rem;
533}
534
535#diffview .diff_column {
536 flex: 1;
537}
538
514table.user_table td.user_login { 539table.user_table td.user_login {
515 padding-right: 30px; 540 padding-right: 30px;
516} 541}