diff --git a/css/theme/serif.css b/css/theme/serif.css index 37833f651826f72bd1b024a833a273bed4e9fe70..734de56f8e653576f1367d5641fd9964e746e39b 100644 --- a/css/theme/serif.css +++ b/css/theme/serif.css @@ -1,10 +1,12 @@ /** * A simple theme for reveal.js presentations, similar - * to the default theme. The accent color is darkblue. + * to the default theme. The accent color is brown. * - * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. - * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se; so is the theme - beige.css - that this is based off of. + * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed. */ +.reveal a:not(.image) { + line-height: 1.3em; } + /********************************************* * GLOBAL STYLES *********************************************/ diff --git a/css/theme/sky.css b/css/theme/sky.css index 79eaf7fe973404cd1e02a15213ef1d524a9e9e64..35d048e7015a12dcb99759b5bad0fcf7920a7ce1 100644 --- a/css/theme/sky.css +++ b/css/theme/sky.css @@ -5,6 +5,9 @@ * * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se */ +.reveal a:not(.image) { + line-height: 1.3em; } + /********************************************* * GLOBAL STYLES *********************************************/ diff --git a/css/theme/source/serif.scss b/css/theme/source/serif.scss index 06eaca8ece6ddb1f1831acb7647e0e5919b76253..404b8bfb347404835a790713f8523ea331d51269 100644 --- a/css/theme/source/serif.scss +++ b/css/theme/source/serif.scss @@ -1,9 +1,8 @@ /** * A simple theme for reveal.js presentations, similar - * to the default theme. The accent color is darkblue. + * to the default theme. The accent color is brown. * - * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. - * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se; so is the theme - beige.css - that this is based off of. + * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed. */ @@ -26,8 +25,11 @@ $linkColor: #51483D; $linkColorHover: lighten( $linkColor, 20% ); $selectionBackgroundColor: #26351C; +.reveal a:not(.image) { + line-height: 1.3em; +} // Theme template ------------------------------ @import "../template/theme"; -// --------------------------------------------- \ No newline at end of file +// --------------------------------------------- diff --git a/css/theme/source/sky.scss b/css/theme/source/sky.scss index f3d7570894059f8a8133f35c1b5937798b03416b..72a3a90669157915a294dc93edd38eb8df1f4a83 100644 --- a/css/theme/source/sky.scss +++ b/css/theme/source/sky.scss @@ -29,6 +29,11 @@ $linkColor: #3b759e; $linkColorHover: lighten( $linkColor, 20% ); $selectionBackgroundColor: #134674; +// Fix links so they are not cut off +.reveal a:not(.image) { + line-height: 1.3em; +} + // Background generator @mixin bodyBackground() { @include radial-gradient( #add9e4, #f7fbfc ); @@ -38,4 +43,4 @@ $selectionBackgroundColor: #134674; // Theme template ------------------------------ @import "../template/theme"; -// --------------------------------------------- \ No newline at end of file +// --------------------------------------------- diff --git a/js/reveal.js b/js/reveal.js index 3003a2c355b456de49fdbefd139958c269d323e0..e7788c21b768dd6437999e034bb60af882a10b69 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -2051,9 +2051,9 @@ var Reveal = (function(){ var previousSlide = document.querySelector( HORIZONTAL_SLIDES_SELECTOR + '.past:nth-child(' + indexh + ')' ); if( previousSlide ) { - indexv = ( previousSlide.querySelectorAll( 'section' ).length + 1 ) || undefined; - indexh --; - slide( indexh, indexv ); + var v = ( previousSlide.querySelectorAll( 'section' ).length - 1 ) || undefined; + var h = indexh - 1; + slide( h, v ); } } }