From 543e4903b285c7211dc95cb35d55dbcdd839e9da Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Tue, 28 May 2013 21:12:31 +0100 Subject: Use misanthrozot as dark scheme, fix some PCSS bugs --- view/theme/redbasic/css/style.css | 8 ++++---- view/theme/redbasic/php/config.php | 1 + view/theme/redbasic/php/style.php | 4 +++- 3 files changed, 8 insertions(+), 5 deletions(-) (limited to 'view') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 60f4e3fe2..70a994809 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -929,12 +929,12 @@ footer { /* background: #fff; */ /* border-radius: 5px; */ /* box-shadow: 12px 12px 12px #111; */ - border-left: 1px solid #eec; +/* border-left: 1px solid #eec; */ } .wall-item-content-wrapper.comment { /* background: #fff; */ - border-left: 1px solid #e0e0e0; +/* border-left: 1px solid #e0e0e0; */ margin-left: 50px; /* box-shadow: 5px 5px 5px #222; */ } @@ -945,9 +945,9 @@ footer { .wall-item-content-wrapper.comment { - background: #ffffff; +/* background: #ffffff; border-left: 1px solid #e0e0e0; - +*/ } .wall-item-like.comment, .wall-item-dislike.comment { diff --git a/view/theme/redbasic/php/config.php b/view/theme/redbasic/php/config.php index 21399945c..9b1cf1fbd 100644 --- a/view/theme/redbasic/php/config.php +++ b/view/theme/redbasic/php/config.php @@ -96,6 +96,7 @@ function redbasic_form(&$a, $font_size, $line_height, $colour, $shadow, $navcolo $colour_schemes = array( 'redbasic' => 'redbasic', 'fancyred' => 'fancyred', + 'dark' => 'dark', ); $shadows = array( 'true' => 'Yes', diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index e011d6185..e5b128546 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -41,7 +41,9 @@ // In non-expert mode, we just let them choose font size, line height, and a colour scheme. A colour scheme is just a pre-defined set of the above variables. // But only apply these settings in non-expert mode to prevent confusion when turning expert mode on and off. if(! feature_enabled(local_user(),'expert')) { - if ($colour_scheme === 'fancyred') {$shadows = true; $navcolour = 'black'; $shadows = true; $displaystyle = 'fancy'; $linkcolour = 'f00'; $shiny = "opaque";} + if ($colour_scheme === 'fancyred') {$shadows = true; $navcolour = 'black'; $displaystyle = 'fancy'; $linkcolour = 'f00'; $shiny = "opaque";} + // Dark themes are very different - we need to do some of these from scratch, so don't bother setting vars for anything else + if ($colour_scheme === 'dark') {$colour = 'dark'; $navcolour = 'black';} } // This is probably the easiest place to apply global settings. Don't bother with site line height and such. Instead, check pconfig for global user settings. -- cgit v1.2.3