From f6367bc0e4d66ab56f61d9aee3d326dcce19847f Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 8 Jul 2014 16:25:01 -0700 Subject: Implement the new border-radius guard: only round things if global @enable-rounded == true --- less/navbar.less | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'less/navbar.less') diff --git a/less/navbar.less b/less/navbar.less index a9515a158a..abb4aa2911 100644 --- a/less/navbar.less +++ b/less/navbar.less @@ -18,7 +18,7 @@ &:extend(.clearfix all); @media (min-width: @grid-float-breakpoint) { - border-radius: @navbar-border-radius; + .border-radius(@navbar-border-radius); } } @@ -200,7 +200,7 @@ background-color: transparent; background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214 border: 1px solid transparent; - border-radius: @border-radius-base; + .border-radius(@border-radius-base); // We remove the `outline` here, but later compensate by attaching `:hover` // styles to `:focus`. @@ -213,7 +213,7 @@ display: block; width: 22px; height: 2px; - border-radius: 1px; + .border-radius(1px); } .icon-bar + .icon-bar { margin-top: 4px; -- cgit v1.2.3