]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
move breadcrumb.less inline properties and also added @color-2 missed in last commit
authorsyed <syed.sayal.shah@gmail.com>
Fri, 19 Jul 2013 13:39:51 +0000 (18:39 +0500)
committersyed <syed.sayal.shah@gmail.com>
Fri, 19 Jul 2013 13:39:51 +0000 (18:39 +0500)
less/breadcrumbs.less
less/variables.less

index 956944a8bacdc8077de092539a97f94d761a6cd2..2f7fb6ddc98311deb3a2bbec390d73786c4fce53 100644 (file)
@@ -7,11 +7,11 @@
   padding: 8px 15px;
   margin: 0 0 @line-height-computed;
   list-style: none;
-  background-color: #f5f5f5;
+  background-color: @breadcrumb-bg-color;
   border-radius: @border-radius-base;
   > li {
     display: inline-block;
-    text-shadow: 0 1px 0 #fff;
+    text-shadow: 0 1px 0 @breadcrumb-text-shadow-color;
     &+li:before {
       display: inline-block;
       content: "/\00a0"; // Unicode space added since inline-block means non-collapsing white-space
index 7ea1042d17fc02c5977cfe9cd7c17e412ce19e6f..541a38c530272ef5076eb61a8941156be924f375 100644 (file)
 // Inner Files color variables (can say inline colors)
 // --------------------------------------------------
 
-@color-1:  #e5e5e5; //Mercury, RGB: 229, 229, 229 
+@color-1:  #e5e5e5; //Mercury, RGB: 229, 229, 229
+@color-2:  #fff;    //white, RGB: 255, 255, 255
+@color-3:  #f5f5f5; //Wild Sand, RGB: 245, 245, 245
 
 @accordion-group-border-color:                    @color-1; 
 
 @active-badge-bg-color:                           @color-2; 
 @badge-link-hover-color:                          @color-2; 
 @badge-color:                                     @color-2;
+@breadcrumb-text-shadow-color:                    @color-2; 
+
+@breadcrumb-bg-color:                             @color-3;
 
 // Grays
 // -------------------------