diff options
| author | Mark Otto <[email protected]> | 2012-09-30 23:11:54 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-09-30 23:11:54 -0700 |
| commit | 9872902e4784220f3add1a1af256dfc89cd6e31a (patch) | |
| tree | d293139e1a9cb6e9f07add39d3884b4ac445eaa5 /less/dropdowns.less | |
| parent | 0cd186183c5e18f0517d6037d53f29c56adbac72 (diff) | |
| download | bootstrap-9872902e4784220f3add1a1af256dfc89cd6e31a.tar.xz bootstrap-9872902e4784220f3add1a1af256dfc89cd6e31a.zip | |
remove .border-radius mixin and replace with standard border-radius property, since -webkit-* and -moz-* are only needed for older versions
Diffstat (limited to 'less/dropdowns.less')
| -rw-r--r-- | less/dropdowns.less | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/less/dropdowns.less b/less/dropdowns.less index ef3da396f..e0baf42cb 100644 --- a/less/dropdowns.less +++ b/less/dropdowns.less @@ -48,13 +48,9 @@ background-color: @dropdownBackground; border: 1px solid #ccc; // IE8 fallback border: 1px solid @dropdownBorder; - *border-right-width: 2px; - *border-bottom-width: 2px; - .border-radius(6px); + border-radius: 6px; .box-shadow(0 5px 10px rgba(0,0,0,.2)); - -webkit-background-clip: padding-box; - -moz-background-clip: padding; - background-clip: padding-box; + .background-clip(padding-box); // Aligns the dropdown menu to right &.pull-right { @@ -212,5 +208,5 @@ // --------- .typeahead { margin-top: 2px; // give it some space to breathe - .border-radius(4px); + border-radius: 4px; } |
