UX: prevent images and lightboxes from extending outside blockquotes (#7262)
This commit is contained in:
parent
4f04ae5692
commit
095ee6ac96
|
@ -203,6 +203,15 @@ aside.quote {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
// due to #image-sizing-hack large images and lightboxes extend past the
|
||||||
|
// limits blockquotes. Since #image-sizing-hack is inline, we need to use
|
||||||
|
// !important here otherwise it won't work.
|
||||||
|
img {
|
||||||
|
max-width: 100% !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.quote-controls,
|
.quote-controls,
|
||||||
.quote-controls .d-icon {
|
.quote-controls .d-icon {
|
||||||
color: dark-light-choose($primary-low-mid, $secondary-high);
|
color: dark-light-choose($primary-low-mid, $secondary-high);
|
||||||
|
|
Loading…
Reference in New Issue