From 991350fc9802caacbe14fa9052d7abd2e8fc00d6 Mon Sep 17 00:00:00 2001 From: "Alan J. Pippin" Date: Tue, 13 May 2008 08:34:49 -0600 Subject: [PATCH] Reduced font of drop down menus to allow appointment slot to fit on 1 line --- inc/class.eq.inc.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/inc/class.eq.inc.php b/inc/class.eq.inc.php index 32f8245..dd8cff7 100644 --- a/inc/class.eq.inc.php +++ b/inc/class.eq.inc.php @@ -3649,7 +3649,7 @@ class eq $this->t->set_var('schedule_ppi_link',$GLOBALS['phpgw']->link('/eq/index.php','menuaction=eq.eq.ppi_sched')); $this->t->set_var('schedule_ppi_link_title','Schedule Yearly PPIs'); - $date_width=150; $time_width=225; $elder_width=200; $family_width=200; $location_width=100; + $date_width=150; $time_width=220; $elder_width=170; $family_width=180; $location_width=100; $table_width=$date_width + $time_width + $elder_width + $family_width + $location_width; $header_row = "Date"; $header_row.= "Time"; @@ -3887,7 +3887,7 @@ class eq $table_data.= ""; // Elder drop down list (for PPIs) - $table_data.= ''; $table_data.= ''; for ($j=0; $j < count($elder_id); $j++) { $id = $elder_id[$j]; @@ -3898,7 +3898,7 @@ class eq $table_data.=''; // Family drop down list (for Visits) - $table_data.= ''; $table_data.= ''; for ($j=0; $j < count($elder_id); $j++) { $id = $family_id[$j]; @@ -3910,7 +3910,7 @@ class eq // Location text box $table_data.= ''; + $table_data.= 'name="sched['.$presidency.']['.$appointment.'][location]" value="'.$location.'" STYLE="font-size : 8pt">'; $table_data.= ''; $table_data.= ''; @@ -3936,7 +3936,7 @@ class eq $table_data.= ""; // Elder drop down list - $table_data.= ''; $table_data.= ''; for ($j=0; $j < count($elder_id); $j++) { $id = $elder_id[$j]; @@ -3946,7 +3946,7 @@ class eq $table_data.=''; // Family drop down list - $table_data.= ''; $table_data.= ''; for ($j=0; $j < count($elder_id); $j++) { $id = $family_id[$j]; @@ -3957,7 +3957,7 @@ class eq // Location text box $table_data.= ''; + $table_data.= 'name="sched['.$presidency.']['.$appointment.'][location]" value="" STYLE="font-size : 8pt">'; $table_data.= ''; $table_data.= ''; -- 2.34.1