The oembed iframe now has a class name to use it for stylesheets.

This commit is contained in:
Michael Vogel 2015-04-30 06:12:21 +02:00
parent 37cd2c45d1
commit b5e10329f2
2 changed files with 5 additions and 1 deletions

View File

@ -210,7 +210,7 @@ function oembed_iframe($src,$width,$height) {
$a = get_app();
$s = $a->get_baseurl()."/oembed/".base64url_encode($src);
return '<iframe height="' . $height . '" width="' . $width . '" src="' . $s . '" frameborder="no" >' . t('Embedded content') . '</iframe>';
return '<iframe class="embed_rich" height="' . $height . '" width="' . $width . '" src="' . $s . '" frameborder="no" >' . t('Embedded content') . '</iframe>';
}

View File

@ -84,6 +84,10 @@ span.connector {
position: relative;
}
.embed_rich {
display: block;
}
/* Shared Messages */
.shared_header {
height: 32px;