From 68ca70d55f29467107f07d156d26aac8d70d62f8 Mon Sep 17 00:00:00 2001 From: William Theaker Date: Tue, 23 Dec 2014 21:20:54 -0500 Subject: [PATCH] Themed wizard-bar Added a border radius to the first and last elements, plus made the current step more prominent. --- css/civicrm.css | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) 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; -- 2.25.1