diff options
author | Hakim El Hattab | 2013-06-18 08:40:05 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-06-18 08:40:05 -0400 |
commit | c3da10636398043449dd29dc7a3a6f954ebba342 (patch) | |
tree | be8c923c58a25347a65dd05474a7fdfe42e543fb /css/reveal.css | |
parent | eb5b39e6850d5c7067a0cb9a113b60617c10f9d8 (diff) |
rename 'linear' background transition to 'slide'
Diffstat (limited to 'css/reveal.css')
-rw-r--r-- | css/reveal.css | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/css/reveal.css b/css/reveal.css index 7071516..89ea418 100644 --- a/css/reveal.css +++ b/css/reveal.css @@ -1345,8 +1345,8 @@ body { } /* Linear sliding transition style */ -.reveal[data-background-transition=linear]>.backgrounds .slide-background, -.reveal>.backgrounds .slide-background[data-background-transition=linear] { +.reveal[data-background-transition=slide]>.backgrounds .slide-background, +.reveal>.backgrounds .slide-background[data-background-transition=slide] { opacity: 1; -webkit-backface-visibility: hidden; @@ -1360,16 +1360,16 @@ body { -o-transition-duration: 800ms; transition-duration: 800ms; } - .reveal[data-background-transition=linear]>.backgrounds .slide-background.past, - .reveal>.backgrounds .slide-background.past[data-background-transition=linear] { + .reveal[data-background-transition=slide]>.backgrounds .slide-background.past, + .reveal>.backgrounds .slide-background.past[data-background-transition=slide] { -webkit-transform: translate(-100%, 0); -moz-transform: translate(-100%, 0); -ms-transform: translate(-100%, 0); -o-transform: translate(-100%, 0); transform: translate(-100%, 0); } - .reveal[data-background-transition=linear]>.backgrounds .slide-background.future, - .reveal>.backgrounds .slide-background.future[data-background-transition=linear] { + .reveal[data-background-transition=slide]>.backgrounds .slide-background.future, + .reveal>.backgrounds .slide-background.future[data-background-transition=slide] { -webkit-transform: translate(100%, 0); -moz-transform: translate(100%, 0); -ms-transform: translate(100%, 0); @@ -1377,16 +1377,16 @@ body { transform: translate(100%, 0); } - .reveal[data-background-transition=linear]>.backgrounds .slide-background>.slide-background.past, - .reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=linear] { + .reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.past, + .reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=slide] { -webkit-transform: translate(0, -100%); -moz-transform: translate(0, -100%); -ms-transform: translate(0, -100%); -o-transform: translate(0, -100%); transform: translate(0, -100%); } - .reveal[data-background-transition=linear]>.backgrounds .slide-background>.slide-background.future, - .reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=linear] { + .reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.future, + .reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=slide] { -webkit-transform: translate(0, 100%); -moz-transform: translate(0, 100%); -ms-transform: translate(0, 100%); |