#43195 closed enhancement (fixed)
dashicons fail w3c css validation
Reported by: | manuel_84 | Owned by: | SergeyBiryukov |
---|---|---|---|
Milestone: | 5.1 | Priority: | normal |
Severity: | normal | Version: | 4.9.2 |
Component: | Administration | Keywords: | has-patch |
Focuses: | ui, coding-standards | Cc: |
Description
/wp-includes/css/dashicons.min.css?ver=4.9.2
line 2: .dashicons, .dashicons-before:before
0 is not a value for transition : color 0.1s ease-in 0
Attachments (1)
Change History (14)
#2
@
7 years ago
Thank you @manuel_84 for opening your first ticket :-)
Good catch with the bug.
An alternative solution would be to drop the transition-delay completely since the default is 0s
anyway:
transition: color 0.1s ease-in;
#3
@
7 years ago
- Component changed from Bundled Theme to Administration
- Focuses template removed
- Milestone changed from Awaiting Review to 5.0
#5
@
7 years ago
Per https://developer.mozilla.org/en-US/docs/Web/CSS/time:
Although unitless zero is allowed for
<length>
s, it's invalid for<time>
s.
#6
@
7 years ago
- Owner set to SergeyBiryukov
- Resolution set to fixed
- Status changed from new to closed
In 42689:
#7
@
7 years ago
Created a GitHub issue for genericons.css
: https://github.com/Automattic/Genericons/issues/109, since it's bundled with Twenty Fifteen and Twenty Sixteen.
This ticket was mentioned in Slack in #core by malae. View the logs.
6 years ago
Note: See
TracTickets for help on using
tickets.
fix by adding a "s" after the final 0:
transition : color 0.1s ease-in 0s