From: Mark Otto Date: Wed, 24 Jul 2013 06:09:06 +0000 (-0700) Subject: Update close vars X-Git-Tag: v3.0.0-rc1~78^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba954db159138d5b9aeef3df638f91daec5e12eb;p=thirdparty%2Fbootstrap.git Update close vars * Remove dupe hover color var (again, it's not necessary to have it's own var here since we're controlling it via `opacity`) * Add to customizer --- diff --git a/_includes/nav-customize.html b/_includes/nav-customize.html index c299badc57..3099d6c719 100644 --- a/_includes/nav-customize.html +++ b/_includes/nav-customize.html @@ -28,6 +28,7 @@
  • Pagination
  • Labels
  • Tooltips and popovers
  • +
  • Close button
  • Other
  • diff --git a/customize.html b/customize.html index 2ba72ba780..d08fad7374 100644 --- a/customize.html +++ b/customize.html @@ -1191,9 +1191,16 @@ lead: Customize Bootstrap's components, LESS variables, and jQuery plugins to ge

    Popover outer arrow color

    + +

    Close button

    + + + + +

    Other

    -
    +

    Horizontal line color

    diff --git a/less/close.less b/less/close.less index 454a73fdcb..f915667e5c 100644 --- a/less/close.less +++ b/less/close.less @@ -14,7 +14,7 @@ &:hover, &:focus { - color: @close-hover-color; + color: @close-color; text-decoration: none; cursor: pointer; .opacity(.5); diff --git a/less/variables.less b/less/variables.less index 885ea1d400..f4084ac03d 100644 --- a/less/variables.less +++ b/less/variables.less @@ -422,8 +422,7 @@ // Close // ------------------------ @close-color: #000; -@close-hover-color: #000; -@close-text-shadow: 0 1px 0 rgba(255,255,255,1); +@close-text-shadow: 0 1px 0 #fff; // Code