diff options
| author | Steve S <[email protected]> | 2013-09-16 09:16:53 -0500 |
|---|---|---|
| committer | Steve S <[email protected]> | 2013-09-16 09:16:53 -0500 |
| commit | ae3a9169e077a74baa1e2702ccdd06f8a4c91e3e (patch) | |
| tree | e2882401c209fcd1fc10e78a0ef25cd4df101a8c | |
| parent | 6b97970d31221edcad8016dbccf5246fa7a97dd2 (diff) | |
| download | bootstrap-ae3a9169e077a74baa1e2702ccdd06f8a4c91e3e.tar.xz bootstrap-ae3a9169e077a74baa1e2702ccdd06f8a4c91e3e.zip | |
Simplified CSS responsive-invisibility mixin
| -rw-r--r-- | less/mixins.less | 4 |
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; } } |
