From: William Theaker Date: Wed, 24 Dec 2014 02:20:54 +0000 (-0500) Subject: Themed wizard-bar X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=68ca70d55f29467107f07d156d26aac8d70d62f8;p=civicrm-core.git Themed wizard-bar Added a border radius to the first and last elements, plus made the current step more prominent. --- diff --git a/css/civicrm.css b/css/civicrm.css index b3f34ffd96..451f3d82be 100644 --- a/css/civicrm.css +++ b/css/civicrm.css @@ -1148,6 +1148,7 @@ input.crm-form-entityref { width: auto; line-height: normal; border-top: 3px solid #bbb; + text-align: center; } #crm-container ul.wizard-bar li { @@ -1155,7 +1156,7 @@ input.crm-form-entityref { background-color: #FAFAFA; border: 1px solid #999999; height: auto; - margin-right: 1em; + margin: -2px; padding: .5em 1em .5em; text-decoration: none; font-size: .95em; @@ -1163,8 +1164,9 @@ input.crm-form-entityref { } #crm-container ul.wizard-bar li.current-step { - background-color: #FAFAFA; - border-color: #999999; + background-color: #4A89DC; + border-color: #4A89DC; + color: #ffffff; font-weight: bold; } @@ -1173,6 +1175,14 @@ input.crm-form-entityref { color: #666; } +#crm-container ul.wizard-bar li:first-child { + border-radius: 8px 0px 0px 8px; +} + +#crm-container ul.wizard-bar li:last-child { + border-radius: 0px 8px 8px 0px; +} + /* Recently Viewed bar */ #crm-recently-viewed ul { list-style-image: none;