Skip to content
This repository has been archived by the owner on Feb 23, 2019. It is now read-only.

Missing commas in Generic_Page_Dashboard_View.css #487

Merged
merged 2 commits into from
May 20, 2017

Conversation

nigrosimone
Copy link
Collaborator

@nigrosimone nigrosimone commented May 20, 2017

in Generic_Page_Dashboard_View.css there are missing commas, eg. see the line #w3tc-dashboard-widgets #postbox-container-3 .meta-box-sortables:

#w3tc-dashboard-widgets div.postbox,
#w3tc-dashboard-widgets #postbox-container-3 .hndle,
#w3tc-dashboard-widgets #postbox-container-3 .inside,
#w3tc-dashboard-widgets #postbox-container-3 .meta-box-sortables
#w3tc-dashboard-widgets #postbox-container-3 .widefat{
    background: none;
}

this cause the css rule to become

#w3tc-dashboard-widgets div.postbox,
#w3tc-dashboard-widgets #postbox-container-3 .hndle,
#w3tc-dashboard-widgets #postbox-container-3 .inside,
#w3tc-dashboard-widgets #postbox-container-3 .meta-box-sortables #w3tc-dashboard-widgets #postbox-container-3 .widefat{
    background: none;
}

and does not match in the DOM the element that try to apply the style.

Add a commas at the end fix the issue, eg.:

#w3tc-dashboard-widgets div.postbox,
#w3tc-dashboard-widgets #postbox-container-3 .hndle,
#w3tc-dashboard-widgets #postbox-container-3 .inside,
#w3tc-dashboard-widgets #postbox-container-3 .meta-box-sortables,
#w3tc-dashboard-widgets #postbox-container-3 .widefat{
    background: none;
}

Thanks to @Furniel for fix the issue in #477

@nigrosimone nigrosimone merged commit dcbd574 into v0.9.5.x May 20, 2017
@nigrosimone nigrosimone deleted the missing-commas branch May 20, 2017 10:31
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant