From ceeeffc14593d0a8558f56877639118dded8cceb Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 12 Nov 2011 00:52:18 -0800 Subject: fix broken state of active buttons --- lib/patterns.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/patterns.less b/lib/patterns.less index 9cccf10a4..5b72081b2 100644 --- a/lib/patterns.less +++ b/lib/patterns.less @@ -581,7 +581,7 @@ footer { // Active and Disabled states &.active, - :active { + &:active { @shadow: inset 0 2px 4px rgba(0,0,0,.25), 0 1px 2px rgba(0,0,0,.05); .box-shadow(@shadow); } -- cgit v1.2.3 From 1f51ce058b97117cfc3811c9695fcbe6733b70ad Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 12 Nov 2011 01:05:19 -0800 Subject: ensure two-thirds grid offsets work the same as the others --- lib/scaffolding.less | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/scaffolding.less b/lib/scaffolding.less index a0066393e..e99046253 100644 --- a/lib/scaffolding.less +++ b/lib/scaffolding.less @@ -133,5 +133,7 @@ a { // Unique column sizes for 16-column grid .span-one-third { width: 300px; } .span-two-thirds { width: 620px; } -.offset-one-third { margin-left: 340px; } -.offset-two-thirds { margin-left: 660px; } +.row { + > .offset-one-third { margin-left: 340px; } + > .offset-two-thirds { margin-left: 660px; } +} \ No newline at end of file -- cgit v1.2.3