Opened 7 years ago
Closed 6 years ago
#42651 closed enhancement (fixed)
Code within a field description should not be italic
Reported by: | johnbillion | Owned by: | johnbillion |
---|---|---|---|
Milestone: | 5.3 | Priority: | normal |
Severity: | trivial | Version: | |
Component: | Administration | Keywords: | has-screenshots has-patch |
Focuses: | administration | Cc: |
Description
Given some descriptive text in the admin area such as the following, the text within the <code>
element appears in italic, but ideally it should not.
<p class="description">This is italic and so is <code>$this</code>.</p>
Some CSS along the lines of .description code { font-style: normal; }
should do the trick.
Attachments (2)
Change History (12)
#3
@
7 years ago
- Resolution set to worksforme
- Status changed from new to closed
To make just the text inside the code tags not italic, you'll want to include this in the CSS:
.description code { font-style: normal; }
#4
@
7 years ago
- Keywords good-first-bug ui-feedback removed
- Milestone changed from Awaiting Review to 5.0
- Resolution worksforme deleted
- Status changed from closed to reopened
Right. The intention of this ticket is to include that by default.
Note: See
TracTickets for help on using
tickets.
Created patch to make font style: normal for code within description.