summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
Diffstat (limited to 'public')
-rw-r--r--public/stylesheets/admin.css60
1 files changed, 45 insertions, 15 deletions
diff --git a/public/stylesheets/admin.css b/public/stylesheets/admin.css
index b959597f..bd0c8412 100644
--- a/public/stylesheets/admin.css
+++ b/public/stylesheets/admin.css
@@ -763,21 +763,6 @@ table.revisions_table tr:hover {
763 background-color: var(--surface-tint); 763 background-color: var(--surface-tint);
764} 764}
765 765
766.events_table .rrule_text {
767 display: inline-block;
768 max-width: 300px;
769 overflow-wrap: break-word;
770}
771
772.events_table .truncate {
773 display: inline-block;
774 max-width: 200px;
775 overflow: hidden;
776 text-overflow: ellipsis;
777 white-space: nowrap;
778 vertical-align: bottom;
779}
780
781#diffview del { 766#diffview del {
782 background: var(--diff-del-bg); 767 background: var(--diff-del-bg);
783 color: var(--diff-del-fg); 768 color: var(--diff-del-fg);
@@ -832,6 +817,50 @@ table.revisions_table tr:hover {
832 padding-right: 0; 817 padding-right: 0;
833} 818}
834 819
820.events_table td.title,
821.events_table th.title {
822 padding-right: 0.75rem;
823}
824
825.events_table .event_title {
826 font-weight: bold;
827}
828
829.events_table .event_meta {
830 display: flex;
831 align-items: center;
832 gap: 0.3rem;
833 margin-top: 0.15rem;
834 font-size: 0.875rem;
835}
836
837.events_table .event_meta svg {
838 width: 0.875rem;
839 height: 0.875rem;
840 flex-shrink: 0;
841}
842
843.events_table .event_meta a {
844 overflow-wrap: anywhere;
845 color: var(--text-muted);
846}
847
848.events_table .event_when {
849 overflow-wrap: normal;
850 min-width: 7rem;
851 padding-right: 0.75rem;
852}
853
854.events_table .event_when .rrule_raw {
855 overflow-wrap: anywhere;
856}
857
858.events_table td.actions {
859 width: 1px;
860 white-space: nowrap;
861 padding-right: 0;
862}
863
835.action_grid { 864.action_grid {
836 display: grid; 865 display: grid;
837 gap: 0.4rem; 866 gap: 0.4rem;
@@ -840,6 +869,7 @@ table.revisions_table tr:hover {
840 869
841.user_table .action_grid { grid-template-columns: repeat(3, auto); } 870.user_table .action_grid { grid-template-columns: repeat(3, auto); }
842.node_table .action_grid { grid-template-columns: repeat(2, auto); } 871.node_table .action_grid { grid-template-columns: repeat(2, auto); }
872.events_table .action_grid { grid-template-columns: repeat(2, auto); }
843 873
844/* min-height keeps a row the same height whether or not the viewer may see 874/* min-height keeps a row the same height whether or not the viewer may see
845 the lower controls. */ 875 the lower controls. */