From 31d4629cdbb1497e9cf8590f14a5e0a38067e4fe Mon Sep 17 00:00:00 2001 From: jbridson Date: Mon, 19 Mar 2012 16:57:16 +1300 Subject: [PATCH] BUGFIX:removed the float from the li (checkboxes) in members permissions... fixed layout issues Trac #6958 --- admin/css/screen.css | 1 + admin/scss/_style.scss | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/admin/css/screen.css b/admin/css/screen.css index 452c87f26..f42ff1ba6 100644 --- a/admin/css/screen.css +++ b/admin/css/screen.css @@ -424,6 +424,7 @@ form.member-profile-form .ui-tabs-nav .ui-corner-all, form.member-profile-form . .cms .cms-content-fields #Root_Main .confirmedpassword { border-bottom: none; box-shadow: none; } .cms .cms-content-fields #Root_Main .customFormat { max-width: 80px; } .cms .cms-content-fields #Root_Main .cms-help-toggle { text-indent: -9999em; display: inline-block; width: 20px; background: url(../images/question.png) no-repeat 0px 0px; } +.cms .cms-content-fields #Root_Permissions ul.optionset li { float: none; } /** -------------------------------------------- "Settings" Form -------------------------------------------- */ #CanViewType .optionset li, #CanEditType .optionset li, #CanCreateTopLevelType .optionset li { float: none; width: auto; white-space: nowrap; } diff --git a/admin/scss/_style.scss b/admin/scss/_style.scss index 8e6884f74..41e2fff9b 100644 --- a/admin/scss/_style.scss +++ b/admin/scss/_style.scss @@ -978,6 +978,11 @@ form.member-profile-form { background:url(../images/question.png) no-repeat 0px 0px; } } + #Root_Permissions{ + ul.optionset li { + float:none; + } + } } }