From 0da527f169dbf20a30db2a6ae57b479ac867fa6c Mon Sep 17 00:00:00 2001 From: Geremia Taglialatela Date: Thu, 30 Jan 2014 14:55:19 +0100 Subject: [PATCH] fixed first element padding of list-inline --- less/type.less | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/less/type.less b/less/type.less index a55730dfef..d7a7d58007 100644 --- a/less/type.less +++ b/less/type.less @@ -165,15 +165,12 @@ ol { // Inline turns list items into inline-block .list-inline { .list-unstyled(); + margin-left: -5px; > li { display: inline-block; padding-left: 5px; padding-right: 5px; - - &:first-child { - padding-left: 0; - } } }