Themed wizard-bar
authorWilliam Theaker <williamtheaker@users.noreply.github.com>
Wed, 24 Dec 2014 02:20:54 +0000 (21:20 -0500)
committerWilliam Theaker <williamtheaker@users.noreply.github.com>
Wed, 24 Dec 2014 02:20:54 +0000 (21:20 -0500)
Added a border radius to the first and last elements, plus made the current step more prominent.

css/civicrm.css

index b3f34ffd9644e60b28c2bbe0506ac91e5175ecfc..451f3d82be6adcd91e3992652e406c822e5a85bc 100644 (file)
@@ -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;