From 0069e3ad14fda52c6ad2413c31131fd9e50800c3 Mon Sep 17 00:00:00 2001 From: Florian Haas Date: Wed, 30 Oct 2013 14:34:27 +0100 Subject: [PATCH] CSS: Don't override font-weight for section .slides>section and .slides>section>section set the font-weight to "normal". This overrides any font-weight setting a theme may set at the body or .reveal level, and requires a theme author to also specifically set the font-weight for .slides>section and .slides>section>section. That's tedious and also counterintuitive. Adopt a saner default by setting the font-weight to inherit. --- css/reveal.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/reveal.css b/css/reveal.css index 7f1dd74..d03409b 100644 --- a/css/reveal.css +++ b/css/reveal.css @@ -530,7 +530,7 @@ body { z-index: 10; line-height: 1.2em; - font-weight: normal; + font-weight: inherit; -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d;