From 9f668a557336f271f3c1bf701cc6a472e59aeedf Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Fri, 31 Jan 2014 14:20:33 +0200 Subject: Add examples/**/*.css in csscomb task. --- docs/examples/offcanvas/offcanvas.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/examples/offcanvas/offcanvas.css') diff --git a/docs/examples/offcanvas/offcanvas.css b/docs/examples/offcanvas/offcanvas.css index ef632dc00..50130a885 100644 --- a/docs/examples/offcanvas/offcanvas.css +++ b/docs/examples/offcanvas/offcanvas.css @@ -20,9 +20,9 @@ footer { @media screen and (max-width: 767px) { .row-offcanvas { position: relative; - -webkit-transition: all 0.25s ease-out; - -moz-transition: all 0.25s ease-out; - transition: all 0.25s ease-out; + -webkit-transition: all .25s ease-out; + -moz-transition: all .25s ease-out; + transition: all .25s ease-out; } .row-offcanvas-right -- cgit v1.2.3 From 6d232c2b9b5588cc2e06d0011e33c58e0e80aea4 Mon Sep 17 00:00:00 2001 From: Marti Kaljuve Date: Tue, 11 Feb 2014 18:18:21 +0200 Subject: Add initial right and left properties to offcanvas example for transitions. --- docs/examples/offcanvas/offcanvas.css | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'docs/examples/offcanvas/offcanvas.css') diff --git a/docs/examples/offcanvas/offcanvas.css b/docs/examples/offcanvas/offcanvas.css index 50130a885..eeace1601 100644 --- a/docs/examples/offcanvas/offcanvas.css +++ b/docs/examples/offcanvas/offcanvas.css @@ -25,6 +25,14 @@ footer { transition: all .25s ease-out; } + .row-offcanvas-right { + right: 0; + } + + .row-offcanvas-left { + left: 0; + } + .row-offcanvas-right .sidebar-offcanvas { right: -50%; /* 6 columns */ -- cgit v1.2.3