diff options
| author | Chris Rebert <[email protected]> | 2015-06-10 03:50:53 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-06-10 03:50:53 -0700 |
| commit | e11f7ffa797f8422f016576cb7c2f5bb6f66aa51 (patch) | |
| tree | e5c37954c03260a3a5268b1142886363c576140b /less | |
| parent | 6e8df2ba581accbbd267ce649d2fb24a7440ccef (diff) | |
| parent | 87e99b51551801eddf3664ee2ec9ac9f9118020c (diff) | |
| download | bootstrap-e11f7ffa797f8422f016576cb7c2f5bb6f66aa51.tar.xz bootstrap-e11f7ffa797f8422f016576cb7c2f5bb6f66aa51.zip | |
Merge pull request #16614 from simonpai/simonpai-patch-1
Fix asymmetry between dropup and dropdown carets.
Diffstat (limited to 'less')
| -rw-r--r-- | less/dropdowns.less | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/less/dropdowns.less b/less/dropdowns.less index d2a872d8c..f6876c1a9 100644 --- a/less/dropdowns.less +++ b/less/dropdowns.less @@ -185,7 +185,8 @@ // Reverse the caret .caret { border-top: 0; - border-bottom: @caret-width-base solid; + border-bottom: @caret-width-base dashed; + border-bottom: @caret-width-base solid ~"\9"; // IE8 content: ""; } // Different positioning for bottom up menu |
