Opened 9 years ago
Closed 7 years ago
#42651 closed enhancement (fixed)
Code within a field description should not be italic
| Reported by: | johnbillion | Owned by: | johnbillion |
|---|---|---|---|
| Priority: | normal | Milestone: | 5.3 |
| Component: | Administration | Version: | |
| Severity: | trivial | Keywords: | has-screenshots has-patch |
| Cc: | Focuses: | administration |
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
@
9 years ago
- Resolution → worksforme
- Status new → 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
@
9 years ago
- Keywords good-first-bug ui-feedback removed
- Milestone Awaiting Review → 5.0
- Resolution worksforme
- Status closed → reopened
Right. The intention of this ticket is to include that by default.
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Created patch to make font style: normal for code within description.