Merge pull request #1543 from annando/1504-oembed-stylesheet

The oembed iframe now has a class name to use it for stylesheets.
This commit is contained in:
Tobias Diekershoff 2015-05-01 10:34:40 +02:00
commit c9e07fa3ac
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;