Edgewall Software
Modify

Opened 5 hours ago

Closed 4 hours ago

#13862 closed enhancement (fixed)

Very long horizontal scrollbar in Spam Log Entry view

Reported by: Jun Omae Owned by: Dirk Stöcker
Priority: normal Milestone: plugin - spam-filter
Component: plugin/spamfilter Version:
Severity: normal Keywords:
Cc: Branch:
Release Notes:
API Changes:
Internal Changes:

Description

Spam Log Entry view almost always has very long horizontal scrollbar.

The admin.css intends that the <pre> element has scrollbar by overflow: auto, however it doesn't work. The behavior is caused by that <fieldset> element has min-inline-size: min-content by default.

The workaround is to apply min-width: 0 to the <fieldset> element.

  • tracspamfilter/htdocs/admin.css

     
    6969form#spamentry .meta td,
    7070form#reportentry .meta th,
    7171form#reportentry .meta td { font-size: 90%; }
     72form#spamentry fieldset { min-width: 0 }
    7273form#spamentry pre,
    7374form#reportentry pre {
    7475  background: #e6e6e6;
     
    7576  border: 1px solid #666;
    7677  font-size: 90%;
    7778  padding: .25em;
    78   width: 90%;
     79  width: 100%;
     80  box-sizing: border-box;
    7981  overflow: auto;
    8082}
    8183

Attachments (1)

spam-log-entry.png (82.2 KB ) - added by Jun Omae 5 hours ago.

Download all attachments as: .zip

Change History (2)

by Jun Omae, 5 hours ago

Attachment: spam-log-entry.png added

comment:1 by Dirk Stöcker, 4 hours ago

Resolution: fixed
Status: newclosed

In r17872.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Dirk Stöcker.
The resolution will be deleted. Next status will be 'reopened'.
to The owner will be changed from Dirk Stöcker to the specified user.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.