From a34fa2f9493abe9129836b561bfce64529567140 Mon Sep 17 00:00:00 2001 From: Braulio Bhavamitra Date: Mon, 29 Aug 2011 15:26:47 -0300 Subject: [PATCH] Add missing clear fix css --- public/stylesheets/application.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+), 0 deletions(-) diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 8c20fc8..5d4c392 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -5211,3 +5211,32 @@ h1.page-title.no-boxes small { margin: .8em 0 .2em; line-height: 1.5; } + + +/* clear float elements */ +.clear { + clear: both; + display: block; + overflow: hidden; + visibility: hidden; + width: 0; + height: 0; + margin:0; + padding:0; + border: none; +} +.clearfix:before, +.clearfix:after { + content: '\0020'; + display: block; + overflow: hidden; + visibility: hidden; + width: 0; + height: 0; + margin:0; + padding:0; +} +.clearfix:after { + clear: both; +} + -- libgit2 0.21.2