diff options
| author | Mark Otto <[email protected]> | 2013-07-23 22:53:30 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-07-23 22:53:30 -0700 |
| commit | b0dd2f902d494f46c238e31ef3a711c11d44f501 (patch) | |
| tree | a6e3cb18a15c1a935cb5bd3519e5b465e463208a | |
| parent | 1803b2f09ee4ecdc23fb3d371441c4ac1526b43d (diff) | |
| download | bootstrap-b0dd2f902d494f46c238e31ef3a711c11d44f501.tar.xz bootstrap-b0dd2f902d494f46c238e31ef3a711c11d44f501.zip | |
Update and add `@btn-hover-color` to Customize page
| -rw-r--r-- | customize.html | 3 | ||||
| -rw-r--r-- | less/variables.less | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/customize.html b/customize.html index 1e1f0e67e..8d70d0445 100644 --- a/customize.html +++ b/customize.html @@ -569,6 +569,9 @@ lead: Customize Bootstrap's components, LESS variables, and jQuery plugins to ge <input type="text" placeholder="@brand-info"> <label>@btn-info-border</label> <input type="text" placeholder="@btn-info-bg"> + <h4>Button hover</h4> + <label>@btn-hover-color</label> + <input type="text" placeholder="@btn-default-color"> </div> <div class="col-lg-6"> <h4>Success</h4> diff --git a/less/variables.less b/less/variables.less index 0bd576a66..6d16346b9 100644 --- a/less/variables.less +++ b/less/variables.less @@ -117,7 +117,7 @@ @btn-info-bg: @brand-info; @btn-info-border: @btn-info-bg; -@btn-hover-color: #fff; +@btn-hover-color: @btn-default-color; // Forms |
