updated css/js libraries
[e-DoKo.git] / css / bootstrap / breadcrumbs.less
index fd269b31a07564188d24cf3ff29bc25d54220d88..cb01d503fbe5f7615e53c989bbee20c07c86e7ef 100644 (file)
@@ -4,21 +4,23 @@
 
 
 .breadcrumb {
-  padding: 8px 15px;
-  margin: 0 0 @baseLineHeight;
+  padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;
+  margin-bottom: @line-height-computed;
   list-style: none;
-  background-color: #f5f5f5;
-  .border-radius(4px);
-  li {
+  background-color: @breadcrumb-bg;
+  border-radius: @border-radius-base;
+
+  > li {
     display: inline-block;
-    .ie7-inline-block();
-    text-shadow: 0 1px 0 @white;
-  }
-  .divider {
-    padding: 0 5px;
-    color: #ccc;
+
+    + li:before {
+      content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
+      padding: 0 5px;
+      color: @breadcrumb-color;
+    }
   }
-  .active {
-    color: @grayLight;
+
+  > .active {
+    color: @breadcrumb-active-color;
   }
 }