Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HTML Lists not displaying bullets/numbers in edit view #30

Open
Prugh opened this issue Apr 29, 2015 · 2 comments
Open

HTML Lists not displaying bullets/numbers in edit view #30

Prugh opened this issue Apr 29, 2015 · 2 comments
Assignees
Labels

Comments

@Prugh
Copy link

Prugh commented Apr 29, 2015

Can we add to webedit css? Putting these rules in my stylesheet does not seem to affect the editor.

.cke_editable ul, .cke_editable ol {
margin-left:40px;
}

.cke_editable ul li {
list-style: disc;
}

.cke_editable ol li {
list-style: decimal;
}

@stopfstedt stopfstedt self-assigned this Apr 30, 2015
@stopfstedt stopfstedt added the bug label Apr 30, 2015
@stopfstedt
Copy link
Member

thanks @Prugh will review and roll these in as soon as possible.

@erykmynn
Copy link
Contributor

WebEdit should ingest your theme CSS and ultimately you want it inheriting
theme CSS for things like this. Do your standard bullets and numbering in
the theme have some sort of scoping that is keeping it from applying in
WebEdit? This is often the case.

Also, the CSS loaded into the editor is loaded by JS not Drupal itself, and
thus does not comply to the normal cache clear rules. Most likely your CSS
is there, but the CSS previously loaded by CKEDITOR is stuck in cache. Try
using incognito, or clearing browser cache in addition to clearing drupal
cache. That should bring in your CSS.

-Eric

On Thu, Apr 30, 2015 at 1:25 PM, Stefan Topfstedt [email protected]
wrote:

thanks @Prugh https://github.com/Prugh will review and roll these in as
soon as possible.


Reply to this email directly or view it on GitHub
#30 (comment)
.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants