Modify ↓
      
Opened 10 months ago
Closed 10 months 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
69 69 form#spamentry .meta td, 70 70 form#reportentry .meta th, 71 71 form#reportentry .meta td { font-size: 90%; } 72 form#spamentry fieldset { min-width: 0 } 72 73 form#spamentry pre, 73 74 form#reportentry pre { 74 75 background: #e6e6e6; … … 75 76 border: 1px solid #666; 76 77 font-size: 90%; 77 78 padding: .25em; 78 width: 90%; 79 width: 100%; 80 box-sizing: border-box; 79 81 overflow: auto; 80 82 } 81 83  
Attachments (1)
Change History (2)
by , 10 months ago
| Attachment: | spam-log-entry.png added | 
|---|
comment:1 by , 10 months ago
| Resolution: | → fixed | 
|---|---|
| Status: | new → closed | 
  Note:
 See   TracTickets
 for help on using tickets.
    



  
In r17872.