jQuery UI CSS when logged in
Permalink
When you're logged in to C5, jQuery UI js/css is included on the page. Annoyingly, jQuery UI CSS contains global css such as;
This plays havoc with our front end styles when logged in, does anyone have any suggestions on how this can be fixed without breaking C5 styles?
input[type="text"], input[type="email"], input[type="tel"], input[type="search"], input[type="url"], input[type="password"], textarea { display: inline-block; padding: 4px; font-size: 14px; line-height: 18px; color: #555555; border: 1px solid #ccc; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; }
This plays havoc with our front end styles when logged in, does anyone have any suggestions on how this can be fixed without breaking C5 styles?
Are your theme styles scoped/namespaced to .ccm-page? The .ccm-page class is added to the page wrapper by concrete5.
Are your block styles scoped/namespaced to .ccm-block-your_block_handle?
If not, this would make them more specific.