BUGFIX:fixed broken styling of iframe in IE for member and group import

This commit is contained in:
Jeremy Bridson 2013-01-15 12:16:45 +13:00 committed by Ingo Schommer
parent 80feb8c0b4
commit a93f8841d7
3 changed files with 9 additions and 2 deletions

View File

@ -105,7 +105,7 @@ class SecurityAdmin extends LeftAndMain implements PermissionProvider {
new LiteralField(
'MemberImportFormIframe',
sprintf(
'<iframe src="%s" id="MemberImportFormIframe" width="100%%" height="250px" border="0">'
'<iframe src="%s" id="MemberImportFormIframe" width="100%%" height="250px" frameBorder="0">'
. '</iframe>',
$this->Link('memberimport')
)
@ -117,7 +117,7 @@ class SecurityAdmin extends LeftAndMain implements PermissionProvider {
new LiteralField(
'GroupImportFormIframe',
sprintf(
'<iframe src="%s" id="GroupImportFormIframe" width="100%%" height="250px" border="0">'
'<iframe src="%s" id="GroupImportFormIframe" width="100%%" height="250px" frameBorder="0">'
. '</iframe>',
$this->Link('groupimport')
)

View File

@ -679,6 +679,8 @@ form.small .cms-file-info-data .field .middleColumn { margin-left: 120px; }
.members_grid p button#action_export span.btn-icon-download-csv { height: 17px; }
/** Import forms */
body.SecurityAdmin { background-color: #eceff1; }
form.import-form ul { list-style: disc; }
form.import-form ul li { margin-left: 20px; }
form.import-form p { margin-bottom: 5px; }

View File

@ -1573,6 +1573,11 @@ form.small {
/**
* Import forms
*/
body.SecurityAdmin {
background-color: $tab-panel-texture-color; //adds background to import members/groups iframe
}
form.import-form {
ul {
list-style: disc;