Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/wp-admin/css/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -2969,6 +2969,11 @@ div.action-links {
line-height: 1.7;
}

#plugin-information #section-description iframe {
width: 100%;
height: auto;
}

#plugin-information #section-screenshots ol {
list-style: none;
margin: 0;
Expand Down
7 changes: 7 additions & 0 deletions src/wp-admin/includes/plugin-install.php
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,13 @@ function install_plugin_information() {
'alt' => array(),
),
'blockquote' => array( 'cite' => true ),
'iframe' => array(
'src' => array(),
'width' => array(),
'height' => array(),
'frameborder' => array(),
'allowfullscreen' => array(),
),
);

$plugins_section_titles = array(
Expand Down
Loading