Skip to content
Snippets Groups Projects
Commit 99382979 authored by khawkins98's avatar khawkins98
Browse files

Improve figure > figcaption

Only target first children and support divs in ckeditor while editing.
parent aed0777e
No related branches found
No related tags found
No related merge requests found
......@@ -116,9 +116,12 @@
display: table-row;
}
// Don't inherit figcaption width when image is responsive
.columns > &,
.columns > & img {
// Don't inherit figcaption width when image is responsive
// and account for ckeditor nesting
.columns > div.cke_widget_image:first-child > &,
.columns > div.cke_widget_image:first-child > & img,
.columns > &:first-child,
.columns > &:first-child img {
max-width: 100%;
width: auto;
display: block;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment