diff options
| author | Mark Otto <[email protected]> | 2012-05-13 17:43:04 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-05-13 17:43:04 -0700 |
| commit | a2fb9ed42f4fedbf2045601bedc8dace4d8bbd36 (patch) | |
| tree | 7741bee713197a6cac72dbfb03fe7a21bd46d1c2 | |
| parent | c02c3c60c9a50d6e3e71805418fe41148e3d7f45 (diff) | |
| download | bootstrap-a2fb9ed42f4fedbf2045601bedc8dace4d8bbd36.tar.xz bootstrap-a2fb9ed42f4fedbf2045601bedc8dace4d8bbd36.zip | |
#3449: make legend and form-actions the same border color
| -rw-r--r-- | docs/assets/css/bootstrap.css | 6 | ||||
| -rw-r--r-- | less/forms.less | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index f13cad826..d6326a156 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -603,7 +603,7 @@ em { abbr[title] { cursor: help; - border-bottom: 1px dotted #ddd; + border-bottom: 1px dotted #999999; } abbr.initialism { @@ -740,7 +740,7 @@ legend { line-height: 36px; color: #333333; border: 0; - border-bottom: 1px solid #eee; + border-bottom: 1px solid #e5e5e5; } legend small { @@ -1190,7 +1190,7 @@ select:focus:required:invalid:focus { margin-top: 18px; margin-bottom: 18px; background-color: #f5f5f5; - border-top: 1px solid #ddd; + border-top: 1px solid #e5e5e5; *zoom: 1; } diff --git a/less/forms.less b/less/forms.less index 61e29b697..9f95dd64f 100644 --- a/less/forms.less +++ b/less/forms.less @@ -27,7 +27,7 @@ legend { line-height: @baseLineHeight * 2; color: @grayDark; border: 0; - border-bottom: 1px solid #eee; + border-bottom: 1px solid #e5e5e5; // Small small { @@ -329,7 +329,7 @@ select:focus:required:invalid { margin-top: @baseLineHeight; margin-bottom: @baseLineHeight; background-color: @formActionsBackground; - border-top: 1px solid #ddd; + border-top: 1px solid #e5e5e5; .clearfix(); // Adding clearfix to allow for .pull-right button containers } |
