#52662 closed defect (bug) (fixed)
Classic Editor: word count not hidden by `hide-if-no-js`
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 5.8 | Priority: | normal |
Severity: | minor | Version: | 4.4 |
Component: | Editor | Keywords: | has-patch |
Focuses: | css | Cc: |
Description
Changeset [34275] added a hide-if-no-js
class to <td id="wp-word-count">
, but the display property on #wp-word-count
overrides that.
#wp-word-count { display: block; padding: 2px 10px; }
Attachments (2)
Change History (8)
#1
follow-up:
↓ 3
@
4 years ago
- Keywords has-patch added
The display: block
style had been specified at least since changeset 12553, but I don't know of any reason to keep that when .autosave-info
is still the browser default (table-cell
).
#2
@
4 years ago
I can reproduce the issue in the classic editor with disabling JS and patch 52662.patch working fine for me.
#3
in reply to:
↑ 1
@
4 years ago
Replying to sabernhardt:
The
display: block
style had been specified at least since changeset 12553
Just confirming that it was indeed a part of the initial commit in [7854] / #4807.
This ticket was mentioned in Slack in #core-test by boniu91. View the logs.
4 years ago
Note: See
TracTickets for help on using
tickets.
removing
display: block