Edgewall Software

Opened 7 years ago

Last modified 7 years ago

#12875 closed defect

Wikiformatting hint for ticket description not visible with wiki toolbars disabled — at Version 2

Reported by: Ryan J Ollos Owned by: Ryan J Ollos
Priority: normal Milestone: 1.2.3
Component: ticket system Version:
Severity: normal Keywords:
Cc: Branch:
Release Notes:

Fixed wiki formatting hint not visible for ticket description when wiki toolbars disabled.

API Changes:
Internal Changes:

Description (last modified by Ryan J Ollos)

The following patch seems to fix the issue, and so far I see only improvements in layout from the change:

  • trac/htdocs/css/ticket.css

    diff --git a/trac/htdocs/css/ticket.css b/trac/htdocs/css/ticket.css
    index a08ed108b..735e74d22 100644
    a b label[for=comment] { float: right }  
    284284 box-sizing: border-box;
    285285 width: 100%;
    286286}
    287 #properties { white-space: nowrap; line-height: 160%; padding: 1em }
     287#properties { line-height: 160%; padding: 1em }
    288288#properties table.trac-properties > tbody > tr > th,
    289289#properties table.trac-properties > colgroup > col.th {
    290290 padding: .4em;
    291291 text-align: right;
    292292 vertical-align: middle;
    293  white-space: normal;
    294293 width: 17%;
    295294}
    296295#properties table.trac-properties > tbody > tr > th.col2 { border-left: 1px dotted #d7d7d7 }

Change History (7)

by Ryan J Ollos, 7 years ago

by Ryan J Ollos, 7 years ago

by Ryan J Ollos, 7 years ago

by Ryan J Ollos, 7 years ago

by Ryan J Ollos, 7 years ago

comment:1 by Ryan J Ollos, 7 years ago

Additionally, the following prevents the Your email or username label from colliding with the associated hint on very narrow screens:

  • trac/htdocs/css/ticket.css

    diff --git a/trac/htdocs/css/ticket.css b/trac/htdocs/css/ticket.css
    index 735e74d22..1d8137c4b 100644
    a b label[for=comment] { float: right }  
    287287#properties { line-height: 160%; padding: 1em }
    288288#properties table.trac-properties > tbody > tr > th,
    289289#properties table.trac-properties > colgroup > col.th {
     290 overflow: hidden;
    290291 padding: .4em;
    291292 text-align: right;
    292293 vertical-align: middle;

Before:

After:

Last edited 7 years ago by Ryan J Ollos (previous) (diff)

comment:2 by Ryan J Ollos, 7 years ago

Description: modified (diff)
Note: See TracTickets for help on using tickets.