aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2013-09-16 10:59:22 -0700
committerChris Rebert <[email protected]>2013-09-16 10:59:22 -0700
commit46bb8b429003530c89d23c9d112d3a1c8b3845b7 (patch)
treec15e337f516ff4680e13c348aa2d9b3dc227255d
parent559fcbfbd6c876c2a65b37015d953c9708c02cb7 (diff)
parentae3a9169e077a74baa1e2702ccdd06f8a4c91e3e (diff)
downloadbootstrap-46bb8b429003530c89d23c9d112d3a1c8b3845b7.tar.xz
bootstrap-46bb8b429003530c89d23c9d112d3a1c8b3845b7.zip
Merge pull request #10661 from Shotster/simplified-responsive-invisibility
Simplified CSS responsive-invisibility mixin
-rw-r--r--less/mixins.less4
1 files changed, 2 insertions, 2 deletions
diff --git a/less/mixins.less b/less/mixins.less
index 42523c2aa..74e7177cd 100644
--- a/less/mixins.less
+++ b/less/mixins.less
@@ -559,8 +559,8 @@
}
.responsive-invisibility() {
- display: none !important;
- tr& { display: none !important; }
+ &,
+ tr&,
th&,
td& { display: none !important; }
}