From 5ab85b076bcab9f64903b74facce9466259fed15 Mon Sep 17 00:00:00 2001 From: marijus Date: Mon, 15 Sep 2014 10:39:38 +0200 Subject: heading font-size should not be tied to font-size for posts and comments --- view/theme/redbasic/css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'view/theme') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index bb11ddbb9..7c203d475 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2260,11 +2260,11 @@ h1, h2 { } h3, h4 { - font-size: $font_size; + font-size: 1rem; } h5, h6 { - font-size: $body_font_size; + font-size: 0.75rem; } .dropdown-menu { -- cgit v1.2.3 From eaf3bd3326a657662321df791280b41293f54ef2 Mon Sep 17 00:00:00 2001 From: Jeroen Date: Mon, 15 Sep 2014 15:35:40 +0000 Subject: See comments on commit 5ab85b0. Also fixed some bb typo's in docu index. --- view/theme/redbasic/css/style.css | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) (limited to 'view/theme') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 7c203d475..380d6d49c 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2060,11 +2060,11 @@ img.mail-list-sender-photo { .wall-item-ago { color: #777; - font-size: 0.8em; + font-size: 0.833em; } .wall-item-ago i { - font-size: 0.8em; + font-size: 0.833em; } .wall-item-content { @@ -2082,7 +2082,7 @@ img.mail-list-sender-photo { } .comment-icon { - font-size: 0.8em; + font-size: 0.833em; color: $toolicon_colour; } @@ -2256,15 +2256,27 @@ blockquote { } h1, h2 { - font-size: 1.15rem; + font-size: 1.583em; } h3, h4 { - font-size: 1rem; + font-size: 1.334em; } h5, h6 { - font-size: 0.75rem; + font-size: 0.75rem; +} + +.wall-item-content h1, .wall-item-content h2 { + font-size: 1.319em; +} + +.wall-item-title { + font-size: $font_size; +} + +.wall-item-title h3, .wall-item-content h3, .wall-item-content h4 { + font-size: 1.112em; } .dropdown-menu { -- cgit v1.2.3 From d2a4b34c98534940c12a2a5f093c7a2f7485b93c Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Tue, 16 Sep 2014 00:55:41 +0100 Subject: Trivial typo - concatenated string that should be. Doesn't really deserve it's own commit, but if I don't fix it now, nobody will notice for another18 months. --- view/theme/redbasic/php/style.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/theme') diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index dbe7c306d..cd91fcee7 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -64,7 +64,7 @@ if(! $a->install) { // should leave it for admins to define for themselves. if (! $schema) { if(file_exists('view/theme/redbasic/schema/default.php')) { - $schemefile = 'view/theme/redbasic/schema/' . 'default.php'; + $schemefile = 'view/theme/redbasic/schema/default.php'; require_once ($schemefile); } } -- cgit v1.2.3