#24947 closed defect (bug) (fixed)
Missing semi-colon in Twenty Fourteen style.css
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | 3.8 | Priority: | normal |
| Severity: | minor | Version: | 3.8 |
| Component: | Bundled Theme | Keywords: | |
| Focuses: | Cc: |
Description
Lines 658-663 are currently:
.social-links-toggle:hover,
.search-toggle:hover,
.social-links-toggle.active,
.search-toggle.active {
background-color: #35921f
}
Should be:
.social-links-toggle:hover,
.search-toggle:hover,
.social-links-toggle.active,
.search-toggle.active {
background-color: #35921f;
}
Technically not a bug or a defect, perfectly acceptable in it's given state. Could easily break and add developer anguish if someone starts adding styles.
Change History (2)
Note: See
TracTickets for help on using
tickets.
In 24991: