aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-02-21 17:34:27 -0800
committerMark Otto <[email protected]>2014-02-21 17:34:27 -0800
commitc7b07a56449cb6dffd1f8cea6d74b2694b022eb9 (patch)
tree58cc09852e6df4a06c2f27cf315ff9714f7d8d86
parentf3e172a81f0b0a08cc4aea1f252b74ed732d9939 (diff)
parentdfa5edca2c5a8dbdd48f27e031718a984f00c5da (diff)
downloadbootstrap-c7b07a56449cb6dffd1f8cea6d74b2694b022eb9.tar.xz
bootstrap-c7b07a56449cb6dffd1f8cea6d74b2694b022eb9.zip
Merge pull request #12742 from ZDroid/table-responsive-mixin
Make .table-responsive usable as mixin
-rw-r--r--less/tables.less4
1 files changed, 2 insertions, 2 deletions
diff --git a/less/tables.less b/less/tables.less
index c41989c04..d5c0afd01 100644
--- a/less/tables.less
+++ b/less/tables.less
@@ -168,8 +168,8 @@ table {
// by enabling horizontal scrolling. Only applies <768px. Everything above that
// will display normally.
-@media (max-width: @screen-xs-max) {
- .table-responsive {
+.table-responsive {
+ @media (max-width: @screen-xs-max) {
width: 100%;
margin-bottom: (@line-height-computed * 0.75);
overflow-y: hidden;