From 08f799fff59b092711c96e4d19a733bb33a41544 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 4 May 2015 15:58:49 +0200 Subject: fix center page content setting --- view/theme/redbasic/php/style.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'view/theme') diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 2d17e6d08..2133331c6 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -311,8 +311,9 @@ echo str_replace(array_keys($options), array_values($options), $x); if($narrow_navbar && file_exists('view/theme/redbasic/css/narrow_navbar.css')) { echo file_get_contents('view/theme/redbasic/css/narrow_navbar.css'); } + if($converse_center && file_exists('view/theme/redbasic/css/converse_center.css')) { - echo str_replace(array_keys($options), array_values($options), $x); + echo file_get_contents('view/theme/redbasic/css/converse_center.css'); } if($schemecss) { -- cgit v1.2.3 From a3c37f145817407df28e9ffea6a83a6cd2b31cdd Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 5 May 2015 03:56:10 -0700 Subject: first pass name change --- view/theme/redbasic/php/theme.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/theme') diff --git a/view/theme/redbasic/php/theme.php b/view/theme/redbasic/php/theme.php index e68533bb4..f0679a532 100644 --- a/view/theme/redbasic/php/theme.php +++ b/view/theme/redbasic/php/theme.php @@ -2,7 +2,7 @@ /** * * Name: Redbasic - * * Description: RedMatrix standard theme + * * Description: Hubzilla standard theme * * Version: 1.0 * * Author: Fabrixxm * * Maintainer: Mike Macgirvin -- cgit v1.2.3 From 5b5f0666f9addc4b2c0cd69495d9fe8f76011ee2 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 5 May 2015 03:59:51 -0700 Subject: second pass name change --- view/theme/redbasic/php/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/theme') diff --git a/view/theme/redbasic/php/config.php b/view/theme/redbasic/php/config.php index 8ab31efc0..2603fb267 100644 --- a/view/theme/redbasic/php/config.php +++ b/view/theme/redbasic/php/config.php @@ -79,7 +79,7 @@ function theme_post(&$a) { function redbasic_form(&$a, $arr) { $scheme_choices = array(); - $scheme_choices["---"] = t("Light (Red Matrix default)"); + $scheme_choices["---"] = t("Light (Hubzilla default)"); $files = glob('view/theme/redbasic/schema/*.php'); if($files) { foreach($files as $file) { -- cgit v1.2.3 From 8ca10dcbab6c645f6a2c791ea0d062c25d5d842e Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 7 May 2015 10:35:22 +0200 Subject: adjust icon size --- 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 a5e5dffdb..83b10b527 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -790,7 +790,7 @@ a.rateme, div.rateme { } nav .acpopup { - top: 49px !important; + top: 50px !important; margin-left: -35px; width: 290px; } @@ -1231,7 +1231,7 @@ div.jGrowl div.jGrowl-notification { #nav-search-text-ac .autocomplete { position: fixed; - top: 50px; + top: 51px; border: 1px solid $nav_bd; border-top: none; } -- cgit v1.2.3