Opened 9 years ago
Closed 9 years ago
#26898 closed defect (bug) (fixed)
Typo in wp-admin.css ".widgets-chooser li" transition
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 3.9 | Priority: | normal |
Severity: | normal | Version: | 3.8 |
Component: | Widgets | Keywords: | has-patch |
Focuses: | ui | Cc: |
Description
In wp-admin/css/wp-admin.css (line 11209) reads followingly:
.widgets-chooser li { ... transition: background: 0.2s ease-in-out; }
I suspect this extra colon is typo, it should be:
.widgets-chooser li { ... transition: background 0.2s ease-in-out; }
However it's missing completely the browser specific syntaxes for transition, so perhaps those should be added also.
Attachments (1)
Change History (4)
Note: See
TracTickets for help on using
tickets.
It looks like all current browsers support this without prefix. Looking at http://caniuse.com/#feat=css-transitions it shows that the prefix would only work on mobile browsers. Most of the desktop browsers went from not supporting to support without the prefix between.