From 83be1a8b43724ef662ab0a720eb81f059c3e607c Mon Sep 17 00:00:00 2001 From: jbridson Date: Mon, 19 Mar 2012 16:39:10 +1300 Subject: [PATCH] BUGFIX:removed unnecessary horizontal line from new members page and replaced cms-help-toggle text with ?icon Trac #6956 --- admin/css/screen.css | 3 +++ admin/scss/_style.scss | 15 +++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/admin/css/screen.css b/admin/css/screen.css index 24d69f187..452c87f26 100644 --- a/admin/css/screen.css +++ b/admin/css/screen.css @@ -421,6 +421,9 @@ form.member-profile-form .ui-tabs-nav .ui-corner-all, form.member-profile-form . .cms .cms-content { border-right: 1px solid rgba(201, 205, 206, 0.8); -moz-box-shadow: 3px 0 4px rgba(0, 0, 0, 0.15); -webkit-box-shadow: 3px 0 4px rgba(0, 0, 0, 0.15); -o-box-shadow: 3px 0 4px rgba(0, 0, 0, 0.15); box-shadow: 3px 0 4px rgba(0, 0, 0, 0.15); -moz-border-radius: 0; -webkit-border-radius: 0; -o-border-radius: 0; -ms-border-radius: 0; -khtml-border-radius: 0; border-radius: 0; } .cms .cms-content-fields { /* always show a y scroll bar as popups like TreeDropdowns can trigger longer pages and the extra scroll bar doesn't fire our sizing bar */ overflow-y: auto; overflow-x: auto; background: none; width: 100%; } .cms .cms-content-fields .aligned-right-label { margin-left: 184px; padding: 8px 0; } +.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; } /** -------------------------------------------- "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 014639d60..8e6884f74 100644 --- a/admin/scss/_style.scss +++ b/admin/scss/_style.scss @@ -963,6 +963,21 @@ form.member-profile-form { margin-left:$grid-x*23; padding:$grid-x 0; } + #Root_Main { + .confirmedpassword { + border-bottom:none; + box-shadow:none; + } + .customFormat { + max-width:80px; + } + .cms-help-toggle { + text-indent: -9999em; + display: inline-block; + width: 20px; + background:url(../images/question.png) no-repeat 0px 0px; + } + } } }