1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00

Merge pull request #6776 from ndabas/fix-inline-lists-ie7

Fix inline lists for IE7
This commit is contained in:
Mark Otto 2013-02-01 13:04:17 -08:00
commit f328ebbc73
2 changed files with 3 additions and 0 deletions

View file

@ -835,8 +835,10 @@ ol.inline {
ul.inline > li,
ol.inline > li {
display: inline-block;
*display: inline;
padding-right: 5px;
padding-left: 5px;
*zoom: 1;
}
dl {

View file

@ -125,6 +125,7 @@ ol.inline {
list-style: none;
> li {
display: inline-block;
.ie7-inline-block();
padding-left: 5px;
padding-right: 5px;
}