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/code.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/code.less')
| -rw-r--r-- | less/code.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/less/code.less b/less/code.less index a60fdf080..b38601f56 100644 --- a/less/code.less +++ b/less/code.less @@ -10,7 +10,7 @@ pre { #font > #family > .monospace; font-size: @baseFontSize - 2; color: @grayDark; - .border-radius(3px); + border-radius: 3px; } // Inline code @@ -35,7 +35,7 @@ pre { background-color: #f5f5f5; border: 1px solid #ccc; // IE8 fallback border: 1px solid rgba(0,0,0,.15); - .border-radius(4px); + border-radius: 4px; // Make prettyprint styles more spaced out for readability &.prettyprint { |
