Commit 58dd1f20 authored by Mark Otto's avatar Mark Otto
Browse files

fix vertical button-groups in ie7

parent 6cf3752b
No related merge requests found
Showing with 5 additions and 0 deletions
+5 -0
...@@ -3516,6 +3516,10 @@ input[type="submit"].btn.btn-mini { ...@@ -3516,6 +3516,10 @@ input[type="submit"].btn.btn-mini {
.btn-group-vertical { .btn-group-vertical {
display: inline-block; display: inline-block;
*display: inline;
/* IE7 inline-block hack */
*zoom: 1;
} }
.btn-group-vertical .btn { .btn-group-vertical .btn {
......
...@@ -214,6 +214,7 @@ ...@@ -214,6 +214,7 @@
.btn-group-vertical { .btn-group-vertical {
display: inline-block; // makes buttons only take up the width they need display: inline-block; // makes buttons only take up the width they need
.ie7-inline-block();
} }
.btn-group-vertical .btn { .btn-group-vertical .btn {
display: block; display: block;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment