From 62083a45b7864d23231505d1c9c6bcdfab31e52a Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 16 Aug 2013 14:12:18 -0700 Subject: fixes #9701: fix up offcanvas example --- examples/offcanvas/offcanvas.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'examples/offcanvas/offcanvas.css') diff --git a/examples/offcanvas/offcanvas.css b/examples/offcanvas/offcanvas.css index e83e71824..df60d6af6 100644 --- a/examples/offcanvas/offcanvas.css +++ b/examples/offcanvas/offcanvas.css @@ -17,7 +17,6 @@ footer { @media screen and (max-width: 768px) { .row-offcanvas { position: relative; - overflow: hidden; /* Needed for Internet Explorer */ -webkit-transition: all 0.25s ease-out; -moz-transition: all 0.25s ease-out; transition: all 0.25s ease-out; @@ -25,24 +24,25 @@ footer { .row-offcanvas-right .sidebar-offcanvas { - right: -58.333333333333336%; /* 6 columns */ + right: -50%; /* 6 columns */ } .row-offcanvas-left .sidebar-offcanvas { - left: -58.333333333333336%; /* 6 columns */ + left: -50%; /* 6 columns */ } .row-offcanvas-right.active { - right: 58.333333333333336%; /* 6 columns */ + right: 50%; /* 6 columns */ } .row-offcanvas-left.active { - left: 58.333333333333336%; /* 6 columns */ + left: 50%; /* 6 columns */ } .sidebar-offcanvas { position: absolute; - width: 58.333333333333336%; /* 6 columns */ + top: 0; + width: 50%; /* 6 columns */ } } \ No newline at end of file -- cgit v1.2.3