aboutsummaryrefslogtreecommitdiff
path: root/less/theme.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-07-08 16:25:01 -0700
committerMark Otto <[email protected]>2014-07-08 16:25:01 -0700
commitf6367bc0e4d66ab56f61d9aee3d326dcce19847f (patch)
treec7692865a22e379339b7140cd89c7c5d30c5aaf4 /less/theme.less
parent86099bfb330ae43026e07ce7d14b67201fbb96d4 (diff)
downloadbootstrap-f6367bc0e4d66ab56f61d9aee3d326dcce19847f.tar.xz
bootstrap-f6367bc0e4d66ab56f61d9aee3d326dcce19847f.zip
Implement the new border-radius guard: only round things if global @enable-rounded == true
Diffstat (limited to 'less/theme.less')
-rw-r--r--less/theme.less6
1 files changed, 3 insertions, 3 deletions
diff --git a/less/theme.less b/less/theme.less
index 1f3ef8964..2902a3d20 100644
--- a/less/theme.less
+++ b/less/theme.less
@@ -111,7 +111,7 @@
.navbar-default {
#gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg);
.reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered
- border-radius: @navbar-border-radius;
+ .border-radius(@navbar-border-radius);
box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);
.navbar-nav > .active > a {
@@ -144,7 +144,7 @@
.navbar-static-top,
.navbar-fixed-top,
.navbar-fixed-bottom {
- border-radius: 0;
+ .border-radius(0);
}
@@ -206,7 +206,7 @@
// --------------------------------------------------
.list-group {
- border-radius: @border-radius-base;
+ .border-radius(@border-radius-base);
box-shadow: 0 1px 2px rgba(0,0,0,.075);
}
.list-group-item.active,