[Koha-patches] [PATCH] Fix for Bug 5679 - funds planning showing strange borders

Owen Leonard oleonard at myacpl.org
Wed Feb 9 15:01:16 CET 2011


Table border style needed more specificity
---
 .../intranet-tmpl/prog/en/css/staff-global.css     |   10 +++++-----
 .../prog/en/modules/admin/aqplan.tmpl              |    4 +---
 2 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css b/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css
index b6d439d..494d97f 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css
+++ b/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css
@@ -237,11 +237,11 @@ table {
 	border-right : 1px solid #BCBCBC;
 }
 
-table.invis{
-	border : white;
-}
-table.invis tr,table.invis td {
-	border : white;
+table.invis,
+table.invis tr,
+table.invis td,
+tr.highlight table.invis td {
+	border : none;
 }
 
 td, th {
diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqplan.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqplan.tmpl
index 46ab6d7..0472c5e 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqplan.tmpl
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqplan.tmpl
@@ -190,10 +190,8 @@ YAHOO.util.Event.onAvailable("popmenu", function () {
                 <td width="50%">
             <!--/TMPL_IF -->
                     <!-- TMPL_VAR NAME="budget_act_remain"-->
-        <!-- TMPL_ELSE -->
-            <td width="50%">
-        <!-- /TMPL_IF -->
             </td>
+        <!-- /TMPL_IF -->
 
         <!-- TMPL_IF NAME="est_negative" -->
             <td width="50%" style="color: red;" id="budget_est_<!-- TMPL_VAR NAME="budget_id"-->">
-- 
1.7.3



More information about the Koha-patches mailing list