From: <dai...@us...> - 2012-12-19 06:59:19
|
Revision: 5767 http://sourceforge.net/p/web-erp/reponame/5767 Author: daintree Date: 2012-12-19 06:59:15 +0000 (Wed, 19 Dec 2012) Log Message: ----------- remerge translations - increase font size - redump DB Modified Paths: -------------- trunk/GLAccountInquiry.php trunk/css/aguapop/default.css trunk/css/default/default.css trunk/css/fluid/default.css trunk/css/fresh/default.css trunk/css/gel/default.css trunk/css/professional/default.css trunk/css/silverwolf/default.css trunk/css/wood/default.css trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.mo trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.po trunk/locale/cs_CZ.utf8/LC_MESSAGES/messages.mo trunk/locale/cs_CZ.utf8/LC_MESSAGES/messages.po trunk/locale/de_DE.utf8/LC_MESSAGES/messages.mo trunk/locale/de_DE.utf8/LC_MESSAGES/messages.po trunk/locale/el_GR.utf8/LC_MESSAGES/messages.mo trunk/locale/el_GR.utf8/LC_MESSAGES/messages.po trunk/locale/en_GB.utf8/LC_MESSAGES/messages.pot trunk/locale/en_US.utf8/LC_MESSAGES/messages.mo trunk/locale/en_US.utf8/LC_MESSAGES/messages.po trunk/locale/es_ES.utf8/LC_MESSAGES/messages.mo trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po trunk/locale/et_EE.utf8/LC_MESSAGES/messages.mo trunk/locale/et_EE.utf8/LC_MESSAGES/messages.po trunk/locale/fa_IR.utf8/LC_MESSAGES/messages.mo trunk/locale/fa_IR.utf8/LC_MESSAGES/messages.po trunk/locale/fr_CA.utf8/LC_MESSAGES/messages.po trunk/locale/fr_FR.utf8/LC_MESSAGES/messages.mo trunk/locale/fr_FR.utf8/LC_MESSAGES/messages.po trunk/locale/hi_IN.utf8/LC_MESSAGES/messages.mo trunk/locale/hi_IN.utf8/LC_MESSAGES/messages.po trunk/locale/hr_HR.utf8/LC_MESSAGES/messages.mo trunk/locale/hr_HR.utf8/LC_MESSAGES/messages.po trunk/locale/hu_HU.utf8/LC_MESSAGES/messages.mo trunk/locale/hu_HU.utf8/LC_MESSAGES/messages.po trunk/locale/id_ID.utf8/LC_MESSAGES/messages.mo trunk/locale/id_ID.utf8/LC_MESSAGES/messages.po trunk/locale/it_IT.utf8/LC_MESSAGES/messages.mo trunk/locale/it_IT.utf8/LC_MESSAGES/messages.po trunk/locale/ja_JP.utf8/LC_MESSAGES/messages.mo trunk/locale/ja_JP.utf8/LC_MESSAGES/messages.po trunk/locale/lv_LV.utf8/LC_MESSAGES/messages.mo trunk/locale/lv_LV.utf8/LC_MESSAGES/messages.po trunk/locale/nl_NL.utf8/LC_MESSAGES/messages.mo trunk/locale/nl_NL.utf8/LC_MESSAGES/messages.po trunk/locale/pl_PL.utf8/LC_MESSAGES/messages.mo trunk/locale/pl_PL.utf8/LC_MESSAGES/messages.po trunk/locale/pt_BR.utf8/LC_MESSAGES/messages.mo trunk/locale/pt_BR.utf8/LC_MESSAGES/messages.po trunk/locale/pt_PT.utf8/LC_MESSAGES/messages.mo trunk/locale/pt_PT.utf8/LC_MESSAGES/messages.po trunk/locale/ro_RO.utf8/LC_MESSAGES/messages.mo trunk/locale/ro_RO.utf8/LC_MESSAGES/messages.po trunk/locale/ru_RU.utf8/LC_MESSAGES/messages.mo trunk/locale/ru_RU.utf8/LC_MESSAGES/messages.po trunk/locale/sq_AL.utf8/LC_MESSAGES/messages.mo trunk/locale/sq_AL.utf8/LC_MESSAGES/messages.po trunk/locale/sv_SE.utf8/LC_MESSAGES/messages.mo trunk/locale/sv_SE.utf8/LC_MESSAGES/messages.po trunk/locale/sw_KE.utf8/LC_MESSAGES/messages.mo trunk/locale/sw_KE.utf8/LC_MESSAGES/messages.po trunk/locale/tr_TR.utf8/LC_MESSAGES/messages.mo trunk/locale/tr_TR.utf8/LC_MESSAGES/messages.po trunk/locale/vi_VN.utf8/LC_MESSAGES/messages.mo trunk/locale/vi_VN.utf8/LC_MESSAGES/messages.po trunk/locale/zh_CN.utf8/LC_MESSAGES/messages.mo trunk/locale/zh_CN.utf8/LC_MESSAGES/messages.po trunk/locale/zh_HK.utf8/LC_MESSAGES/messages.mo trunk/locale/zh_HK.utf8/LC_MESSAGES/messages.po trunk/sql/mysql/upgrade4.09-4.10.sql trunk/sql/mysql/weberp-demo.sql trunk/sql/mysql/weberp-new.sql Modified: trunk/GLAccountInquiry.php =================================================================== --- trunk/GLAccountInquiry.php 2012-12-19 06:45:03 UTC (rev 5766) +++ trunk/GLAccountInquiry.php 2012-12-19 06:59:15 UTC (rev 5767) @@ -31,7 +31,11 @@ $DefaultPeriodDate = Date ('Y-m-d', Mktime(0,0,0,Date('m'),0,Date('Y'))); /*Show a form to allow input of criteria for TB to show */ -echo '<table class="selection"><tr><td>'._('Account').':</td><td><select name="Account">'; +echo '<table class="selection"> + <tr> + <td>'._('Account').':</td> + <td><select name="Account">'; + $sql = "SELECT accountcode, accountname FROM chartmaster ORDER BY accountcode"; $Account = DB_query($sql,$db); while ($myrow=DB_fetch_array($Account,$db)){ @@ -41,10 +45,13 @@ echo '<option value="' . $myrow['accountcode'] . '">' . $myrow['accountcode'] . ' ' . htmlspecialchars($myrow['accountname'], ENT_QUOTES, 'UTF-8', false) . '</option>'; } } -echo '</select></td></tr>'; +echo '</select></td> + </tr>'; //Select the tag -echo '<tr><td>' . _('Select Tag') . ':</td><td><select name="tag">'; +echo '<tr> + <td>' . _('Select Tag') . ':</td> + <td><select name="tag">'; $SQL = "SELECT tagref, tagdescription @@ -53,6 +60,7 @@ $result=DB_query($SQL,$db); echo '<option value="0">0 - '._('All tags') . '</option>'; + while ($myrow=DB_fetch_array($result)){ if (isset($_POST['tag']) and $_POST['tag']==$myrow['tagref']){ echo '<option selected="selected" value="' . $myrow['tagref'] . '">' . $myrow['tagref'].' - ' .$myrow['tagdescription'] . '</option>'; @@ -60,9 +68,13 @@ echo '<option value="' . $myrow['tagref'] . '">' . $myrow['tagref'].' - ' .$myrow['tagdescription'] . '</option>'; } } -echo '</select></td></tr>'; +echo '</select></td> + </tr>'; // End select tag -echo '<tr> <td>'._('For Period range').':</td><td><select name="Period[]" size="12" multiple="multiple">'; +echo '<tr> + <td>'._('For Period range').':</td> + <td><select name="Period[]" size="12" multiple="multiple">'; + $sql = "SELECT periodno, lastdate_in_period FROM periods ORDER BY periodno DESC"; $Periods = DB_query($sql,$db); $id=0; @@ -74,10 +86,15 @@ echo '<option value="' . $myrow['periodno'] . '">' . _(MonthAndYearFromSQLDate($myrow['lastdate_in_period'])) . '</option>'; } } -echo '</select></td></tr></table>'; -echo '<br /><div class="centre"><input type="submit" name="Show" value="'._('Show Account Transactions').'" /></div> - </div> - </form>'; +echo '</select></td> + </tr> + </table> + <br /> + <div class="centre"> + <input type="submit" name="Show" value="'._('Show Account Transactions').'" /> + </div> + </div> + </form>'; /* End of the Form rest of script is what happens if the show button is hit*/ @@ -105,38 +122,44 @@ if ($_POST['tag']==0) { $sql= "SELECT type, - typename, - gltrans.typeno, - trandate, - narrative, - amount, - periodno, - tag - FROM gltrans, systypes - WHERE gltrans.account = '" . $SelectedAccount . "' - AND systypes.typeid=gltrans.type - AND posted=1 - AND periodno>='" . $FirstPeriodSelected . "' - AND periodno<='" . $LastPeriodSelected . "' - ORDER BY periodno, gltrans.trandate, counterindex"; + typename, + gltrans.typeno, + trandate, + narrative, + amount, + periodno, + gltrans.tag, + tagdescription + FROM gltrans INNER JOIN systypes + ON systypes.typeid=gltrans.type + LEFT JOIN tags + ON gltrans.tag = tags.tagref + WHERE gltrans.account = '" . $SelectedAccount . "' + AND posted=1 + AND periodno>='" . $FirstPeriodSelected . "' + AND periodno<='" . $LastPeriodSelected . "' + ORDER BY periodno, gltrans.trandate, counterindex"; } else { $sql= "SELECT type, - typename, - gltrans.typeno, - trandate, - narrative, - amount, - periodno, - tag - FROM gltrans, systypes - WHERE gltrans.account = '" . $SelectedAccount . "' - AND systypes.typeid=gltrans.type - AND posted=1 - AND periodno>= '" . $FirstPeriodSelected . "' - AND periodno<= '" . $LastPeriodSelected . "' - AND tag='".$_POST['tag']."' - ORDER BY periodno, gltrans.trandate, counterindex"; + typename, + gltrans.typeno, + trandate, + narrative, + amount, + periodno, + gltrans.tag, + tagdescription + FROM gltrans INNER JOIN systypes + ON systypes.typeid=gltrans.type + LEFT JOIN tags + ON gltrans.tag = tags.tagref + WHERE gltrans.account = '" . $SelectedAccount . "' + AND posted=1 + AND periodno>= '" . $FirstPeriodSelected . "' + AND periodno<= '" . $LastPeriodSelected . "' + AND tag='" . $_POST['tag'] . "' + ORDER BY periodno, gltrans.trandate, counterindex"; } $namesql = "SELECT accountname FROM chartmaster WHERE accountcode='" . $SelectedAccount . "'"; @@ -146,51 +169,53 @@ $ErrMsg = _('The transactions for account') . ' ' . $SelectedAccount . ' ' . _('could not be retrieved because') ; $TransResult = DB_query($sql,$db,$ErrMsg); - echo '<br /><table class="selection">'; - - echo '<tr><th colspan="8"><b>' ._('Transactions for account').' '.$SelectedAccount. ' - '. $SelectedAccountName.'</b></th></tr>'; + echo '<br /> + <table class="selection"> + <tr> + <th colspan="8"><b>' ._('Transactions for account').' '.$SelectedAccount. ' - '. $SelectedAccountName.'</b></th> + </tr>'; + $TableHeader = '<tr> - <th>' . _('Type') . '</th> - <th>' . _('Number') . '</th> - <th>' . _('Date') . '</th> - <th>' . _('Debit') . '</th> - <th>' . _('Credit') . '</th> - <th>' . _('Narrative') . '</th> - <th>' . _('Balance') . '</th> - <th>' . _('Tag') . '</th> - </tr>'; - + <th>' . _('Type') . '</th> + <th>' . _('Number') . '</th> + <th>' . _('Date') . '</th> + <th>' . _('Debit') . '</th> + <th>' . _('Credit') . '</th> + <th>' . _('Narrative') . '</th> + <th>' . _('Balance') . '</th> + <th>' . _('Tag') . '</th> + </tr>'; + echo $TableHeader; if ($PandLAccount==True) { $RunningTotal = 0; } else { // added to fix bug with Brought Forward Balance always being zero - $sql = "SELECT bfwd, - actual, - period - FROM chartdetails - WHERE chartdetails.accountcode='" . $SelectedAccount . "' - AND chartdetails.period='" . $FirstPeriodSelected . "'"; + $sql = "SELECT bfwd, + actual, + period + FROM chartdetails + WHERE chartdetails.accountcode='" . $SelectedAccount . "' + AND chartdetails.period='" . $FirstPeriodSelected . "'"; - $ErrMsg = _('The chart details for account') . ' ' . $SelectedAccount . ' ' . _('could not be retrieved'); - $ChartDetailsResult = DB_query($sql,$db,$ErrMsg); - $ChartDetailRow = DB_fetch_array($ChartDetailsResult); - // -------------------- - + $ErrMsg = _('The chart details for account') . ' ' . $SelectedAccount . ' ' . _('could not be retrieved'); + $ChartDetailsResult = DB_query($sql,$db,$ErrMsg); + $ChartDetailRow = DB_fetch_array($ChartDetailsResult); + $RunningTotal =$ChartDetailRow['bfwd']; if ($RunningTotal < 0 ){ //its a credit balance b/fwd echo '<tr style="background-color:#FDFEEF"> - <td colspan="3"><b>' . _('Brought Forward Balance') . '</b><td> - </td></td> - <td class="number"><b>' . locale_number_format(-$RunningTotal,$_SESSION['CompanyRecord']['decimalplaces']) . '</b></td> - <td></td> + <td colspan="3"><b>' . _('Brought Forward Balance') . '</b></td> + <td></td> + <td class="number"><b>' . locale_number_format(-$RunningTotal,$_SESSION['CompanyRecord']['decimalplaces']) . '</b></td> + <td></td> </tr>'; } else { //its a debit balance b/fwd echo '<tr style="background-color:#FDFEEF"> - <td colspan="3"><b>' . _('Brought Forward Balance') . '</b></td> - <td class="number"><b>' . locale_number_format($RunningTotal,$_SESSION['CompanyRecord']['decimalplaces']) . '</b></td> - <td colspan="2"></td> + <td colspan="3"><b>' . _('Brought Forward Balance') . '</b></td> + <td class="number"><b>' . locale_number_format($RunningTotal,$_SESSION['CompanyRecord']['decimalplaces']) . '</b></td> + <td colspan="2"></td> </tr>'; } } @@ -264,36 +289,31 @@ } $FormatedTranDate = ConvertSQLDate($myrow['trandate']); - $URL_to_TransDetail = $rootpath . '/GLTransInquiry.php?' . SID . '&TypeID=' . $myrow['type'] . '&TransNo=' . $myrow['typeno']; + $URL_to_TransDetail = $rootpath . '/GLTransInquiry.php?TypeID=' . $myrow['type'] . '&TransNo=' . $myrow['typeno']; - $tagsql="SELECT tagdescription FROM tags WHERE tagref='".$myrow['tag'] . "'"; - $tagresult=DB_query($tagsql,$db); - $tagrow = DB_fetch_array($tagresult); - if ($tagrow['tagdescription']=='') { - $tagrow['tagdescription']=_('None'); - } printf('<td>%s</td> - <td class="number"><a href="%s">%s</a></td> - <td>%s</td> - <td class="number">%s</td> - <td class="number">%s</td> - <td>%s</td> - <td class="number"><b>%s</b></td> - <td>%s</td> - </tr>', - $myrow['typename'], - $URL_to_TransDetail, - $myrow['typeno'], - $FormatedTranDate, - $DebitAmount, - $CreditAmount, - $myrow['narrative'], - locale_number_format($RunningTotal,$_SESSION['CompanyRecord']['decimalplaces']), - $tagrow['tagdescription']); - + <td class="number"><a href="%s">%s</a></td> + <td>%s</td> + <td class="number">%s</td> + <td class="number">%s</td> + <td>%s</td> + <td class="number"><b>%s</b></td> + <td>%s</td> + </tr>', + $myrow['typename'], + $URL_to_TransDetail, + $myrow['typeno'], + $FormatedTranDate, + $DebitAmount, + $CreditAmount, + $myrow['narrative'], + locale_number_format($RunningTotal,$_SESSION['CompanyRecord']['decimalplaces']), + $myrow['tagdescription']); + } - echo '<tr style="background-color:#FDFEEF"><td colspan="3"><b>'; + echo '<tr style="background-color:#FDFEEF"> + <td colspan="3"><b>'; if ($PandLAccount==True){ echo _('Total Period Movement'); } else { /*its a balance sheet account*/ @@ -311,8 +331,10 @@ -if (isset($ShowIntegrityReport) and $ShowIntegrityReport==True){ - if (!isset($IntegrityReport)) {$IntegrityReport='';} +if (isset($ShowIntegrityReport) AND $ShowIntegrityReport==True AND $_POST['tag']=='0'){ + if (!isset($IntegrityReport)) { + $IntegrityReport=''; + } prnMsg( _('There are differences between the sum of the transactions and the recorded movements in the ChartDetails table') . '. ' . _('A log of the account differences for the periods report shows below'),'warn'); echo '<p>'.$IntegrityReport; } Modified: trunk/css/aguapop/default.css =================================================================== --- trunk/css/aguapop/default.css 2012-12-19 06:45:03 UTC (rev 5766) +++ trunk/css/aguapop/default.css 2012-12-19 06:59:15 UTC (rev 5767) @@ -10,7 +10,7 @@ body { font-family:Arial, Verdana, Helvetica, sans-serif; - font-size:12px; + font-size:10pt; background: silver; margin:0; padding:0; @@ -96,7 +96,6 @@ input { /*specifies the input field text characteristics*/ font-family: Arial, Verdana, Helvetica, sans-serif; - font-size: 12px; font-style: italic; } input.number{ @@ -112,7 +111,6 @@ select { font-family: Arial, Verdana, Helvetica, sans-serif; - font-size: 12px; } select:hover { /* drop down */ background:#9ffffb; @@ -120,7 +118,6 @@ textarea{ font-family: Arial, Verdana, Helvetica, sans-serif; - font-size:12px; } textarea:hover{ background:#9ffffb; @@ -176,7 +173,6 @@ position: static; font-family: Arial, Verdana, Helvetica, sans-serif; font-weight: normal; - font-size: 12px; color: black; text-align:center; padding-left: 24px; @@ -230,7 +226,6 @@ .label { font-weight: bold; font-style: normal; - font-size: 12px; color: black; background-color: gainsboro; } @@ -286,7 +281,6 @@ } #AppInfoModuleDiv{ font-weight:bold; - font-size:12px; padding:3px; } Modified: trunk/css/default/default.css =================================================================== --- trunk/css/default/default.css 2012-12-19 06:45:03 UTC (rev 5766) +++ trunk/css/default/default.css 2012-12-19 06:59:15 UTC (rev 5767) @@ -5,100 +5,100 @@ ***/ body{ -background-color:#ccd; -font-family:Arial, Verdana, Helvetica, sans-serif; -font-size:10pt; -margin:0; -padding:0 + background-color:#ccd; + font-family:Arial, Verdana, Helvetica, sans-serif; + font-size:10pt; + margin:0; + padding:0 } a{ -color:blue; -text-decoration:none; + color:blue; + text-decoration:none; } a:hover{ -color:blue; -text-decoration:underline; + color:blue; + text-decoration:underline; } img{ -border:none; -vertical-align:middle; + border:none; + vertical-align:middle; } .page_title_text{ -padding:5px; -font-weight:bold; -color:black; -TEXT-ALIGN:center; + padding:5px; + font-weight:bold; + color:black; + TEXT-ALIGN:center; } p.good{ -font-weight:bold; -color:green; + font-weight:bold; + color:green; } p.bad{ -font-weight:bold; -color:red; + font-weight:bold; + color:red; } table{ -margin:0 auto; -width:auto; -max-width:90%; -padding-bottom:5px; + margin:0 auto; + width:auto; + max-width:90%; + padding-bottom:5px; } table.selection{ -padding-bottom:5px; + padding-bottom:5px; } th{ -font-weight:normal; -background-color:#B06161; -color:white; + font-weight:normal; + background-color:#B06161; + color:white; } th.number{ -text-align:right; -font-weight:normal; -background-color:#B06161; -color:white; + text-align:right; + font-weight:normal; + background-color:#B06161; + color:white; } td{ -text-align:left; + text-align:left; } td.select{ -background-color:#eee; + background-color:#eee; } td.number{ -text-align:right; + text-align:right; } div.centre{ -margin:0 auto; -text-align:center; -padding:5px; + margin:0 auto; + text-align:center; + padding:5px; } input{ -font-family:Arial, Verdana, Helvetica, sans-serif; + font-family:Arial, Verdana, Helvetica, sans-serif; } input.number{ -text-align:right; + text-align:right; } input.image{ -border-width:0px; -background-color:transparent; + border-width:0px; + background-color:transparent; } input:hover{ } select{ -font-family:Arial, Verdana, Helvetica, sans-serif; + font-family:Arial, Verdana, Helvetica, sans-serif; } textarea{ -font-family:Arial, Verdana, Helvetica, sans-serif; + font-family:Arial, Verdana, Helvetica, sans-serif; } textarea:hover{ } .EvenTableRows{ -background-color:#CCCCCC; + background-color:#CCCCCC; } .OddTableRows{ -background-color:#EEEEEE; + background-color:#EEEEEE; } div.error{ background-color:#fddbdb; @@ -116,78 +116,78 @@ border:1px solid darkgreen; } div.info{ -background-color:#c7ccf6; -color:navy; -border:1px solid navy; + background-color:#c7ccf6; + color:navy; + border:1px solid navy; } DIV.page_help_text{ -background:lightgrey url(images/help.png) top left no-repeat; -BORDER:#a52a2a 1px solid; -padding-top:2px; -padding-bottom:2px; -PADDING-LEFT:10px; -Z-INDEX:1; -width:80%; -FLOAT:none; -VISIBILITY:visible; -MARGIN:0 auto; -POSITION:static; -font-family:Arial, Verdana, Helvetica, sans-serif; -font-weight:normal; -color:black; -TEXT-ALIGN:center; + background:lightgrey url(images/help.png) top left no-repeat; + BORDER:#a52a2a 1px solid; + padding-top:2px; + padding-bottom:2px; + PADDING-LEFT:10px; + Z-INDEX:1; + width:80%; + FLOAT:none; + VISIBILITY:visible; + MARGIN:0 auto; + POSITION:static; + font-family:Arial, Verdana, Helvetica, sans-serif; + font-weight:normal; + color:black; + TEXT-ALIGN:center; } DIV.system_check{ -BORDER:#a52a2a 1px solid; -PADDING-LEFT:3px; -Z-INDEX:1; -width:40%; -FLOAT:none; -VISIBILITY:visible; -MARGIN:0 auto; -POSITION:static; -background:lightgray; -font-family:Arial, Verdana, Helvetica, sans-serif; -padding-top:1px; -padding-bottom:1px; -font-weight:normal; -color:black; -TEXT-ALIGN:left; + BORDER:#a52a2a 1px solid; + PADDING-LEFT:3px; + Z-INDEX:1; + width:40%; + FLOAT:none; + VISIBILITY:visible; + MARGIN:0 auto; + POSITION:static; + background:lightgray; + font-family:Arial, Verdana, Helvetica, sans-serif; + padding-top:1px; + padding-bottom:1px; + font-weight:normal; + color:black; + TEXT-ALIGN:left; } .dpTbl { /* date picker background */ -border:thin solid black; -background:white; -box-shadow: 3px 3px 4px #000; /* shadow on modern browsers */ + border:thin solid black; + background:white; + box-shadow: 3px 3px 4px #000; /* shadow on modern browsers */ } .dpTD{ -border:0; -width:20px; -background-color:#EEEEEE; -text-align:right; -cursor:pointer; + border:0; + width:20px; + background-color:#EEEEEE; + text-align:right; + cursor:pointer; } .dpDayHighlight{ -border:0; -width:20px; -background-color:yellow; -text-align:right; -cursor:pointer; + border:0; + width:20px; + background-color:yellow; + text-align:right; + cursor:pointer; } .dpTDHover{ -border:0; -width:20px; -background-color:#CCCCCC; -text-align:right; -cursor:pointer; + border:0; + width:20px; + background-color:#CCCCCC; + text-align:right; + cursor:pointer; } /* Table type is used for UI tables type 1 */ .table1{ -width:90%; -background:#eee; -border:0px 0px 2px 2px #222 solid; -margin:0 auto; + width:90%; + background:#eee; + border:0px 0px 2px 2px #222 solid; + margin:0 auto; } /* Table type is used for UI tables type 2 */ /*.table2{ @@ -198,46 +198,46 @@ }*/ .tableheader{ -font-weight:normal; -background-color:#800000; -color:white; + font-weight:normal; + background-color:#800000; + color:white; } .notavailable{ -font-weight:lighter; -font-style:italic; -color:#555555; + font-weight:lighter; + font-style:italic; + color:#555555; } .label{ -font-weight:bold; -font-style:normal; -font-size:120%; -color:black; -background-color:#cccccc; + font-weight:bold; + font-style:normal; + font-size:120%; + color:black; + background-color:#cccccc; } .table_index{ -background-color:#F1FFDD; + background-color:#F1FFDD; } .header{ -background-image:url(""); -background-repeat:no-repeat; -background-attachment:fixed; -border:none; -margin:0px; -padding:0px; + background-image:url(""); + background-repeat:no-repeat; + background-attachment:fixed; + border:none; + margin:0px; + padding:0px; } input.inputerror{ -background-color:#fddbdb; + background-color:#fddbdb; } textarea.texterror{ -background-color:#fddbdb; + background-color:#fddbdb; } select.selecterror{ -background-color:#fddbdb; + background-color:#fddbdb; } .OsRow{ -background-color:#234567; -color:white; + background-color:#234567; + color:white; } /*** CANVAS ***/ @@ -249,15 +249,15 @@ /*** HEADER ***/ #HeaderDiv{ -color:white; -/*background:#588BB6;*/ -/*overflow:hidden;*/ + color:white; + /*background:#588BB6;*/ + /*overflow:hidden;*/ } #HeaderDiv a{ -color:white; + color:white; } #HeaderDiv a:hover{ -text-decoration:underline; + text-decoration:underline; } #HeaderWrapDiv{ } @@ -265,156 +265,155 @@ /*** HEADER - APP INFO ***/ #AppInfoDiv{ -float:left; -padding:0; + float:left; + padding:0; } #AppInfoCompanyDiv,#AppInfoUserDiv{ -display:table-cell; + display:table-cell; } #AppInfoModuleDiv{ -font-weight:bold; -font-size:120%; -padding:3px; + font-weight:bold; + font-size:120%; + padding:3px; } /*** HEADER - QUICK MENU ***/ #QuickMenuDiv{ -float:right; -margin-top:2px; + float:right; + margin-top:2px; } #QuickMenuDiv ul{ } #QuickMenuDiv li{ -display:inline; -border-left:thin ridge #588BB6; -padding:14px 12px; + display:inline; + border-left:thin ridge #588BB6; + padding:14px 12px; } /*** BODY ***/ #BodyDiv{ -clear:both; + clear:both; } #BodyWrapDiv{ -background:#CCCCCC; -/*border:thin solid #ccc;*/ -clear:both; + background:#CCCCCC; + /*border:thin solid #ccc;*/ + clear:both; } /*** BODY - MAIN MENU ***/ #MainMenuDiv{ -float:left; -width:11%; -border:thin solid #000; -text-align:center; -white-space:nowrap; + float:left; + width:11%; + border:thin solid #000; + text-align:center; + white-space:nowrap; } #MainMenuDiv ul{ -margin:0; -padding:0; + margin:0; + padding:0; } #MainMenuDiv li{ -list-style:none; + list-style:none; } #MainMenuDiv li a{ -color:black; + color:black; } #MainMenuDiv li a:hover{ -color:black; -text-decoration:underline; + color:black; + text-decoration:underline; } .main_menu_unselected{ -background:#8EDE8D; -padding:2px; + background:#8EDE8D; + padding:2px; } .main_menu_unselected:hover{ -background:white; + background:white; } .main_menu_selected{ -background-color:white; -padding:2px; + background-color:white; + padding:2px; } /*** BODY - SUB MENU ***/ #SubMenuDiv{ -display:table; -float:right; -overflow:hidden; -width:88.5%; + display:table; + float:right; + overflow:hidden; + width:88.5%; } #SubMenuDiv ul{ -margin:0; -padding:0; -background:#fff; -border:thin solid black; -margin-left:3px; + margin:0; + padding:0; + background:#fff; + border:thin solid black; + margin-left:3px; } #SubMenuDiv li{ -list-style:none; + list-style:none; } #SubMenuDiv a{ -color:blue; + color:blue; } #SubMenuDiv a:hover{ -color:blue; -text-decoration:underline; + color:blue; + text-decoration:underline; } #TransactionsDiv, #InquiriesDiv, #MaintenanceDiv{ -display:table-cell; + display:table-cell; } .menu_group_headers{ -text-align:center; -color:black; -background:#eee; -border-bottom:thin solid black; + text-align:center; + color:black; + background:#eee; + border-bottom:thin solid black; } .menu_group_item{ -background-color:white; -padding:2px; + background-color:white; + padding:2px; } .menu_group_item p{ -color:#00f; /* This is the color for bullets, I like it to be the same as the anchor color, but it's up to you */ -text-indent:-12px; /* this makes the bullet to appear as the li tag previously used */ -margin:0 0 0 12px; /* One thing that I didn´t like of the li was that it had no left margin applied */ + color:#00f; /* This is the color for bullets, I like it to be the same as the anchor color, but it's up to you */ + text-indent:-12px; /* this makes the bullet to appear as the li tag previously used */ + margin:0 0 0 12px; /* One thing that I didn´t like of the li was that it had no left margin applied */ } #InquiriesDiv div{ /* header for standard reports/forms, custom reports */ -border-top:thin solid black; -border-bottom:thin solid black; -background:#eee; -color:black; -padding:2px; + border-top:thin solid black; + border-bottom:thin solid black; + background:#eee; + color:black; + padding:2px; } /*** FOOTER ***/ #FooterDiv{ -clear:both; -overflow:hidden; -color:#CCCCCC; -padding:3px 2px; + clear:both; + overflow:hidden; + color:#CCCCCC; + padding:3px 2px; } #FooterWrapDiv{ } #FooterLogoDiv{ -background:white; -border-radius:7px; -float:left; -padding:3px; + background:white; + border-radius:7px; + float:left; + padding:3px; } #FooterVersionDiv{ -float:left; -margin-left:10px; -margin-top:15px; - + float:left; + margin-left:10px; + margin-top:15px; } #FooterTimeDiv{ -float:right; -margin-top:15px; + float:right; + margin-top:15px; } Modified: trunk/css/fluid/default.css =================================================================== --- trunk/css/fluid/default.css 2012-12-19 06:45:03 UTC (rev 5766) +++ trunk/css/fluid/default.css 2012-12-19 06:59:15 UTC (rev 5767) @@ -9,7 +9,7 @@ body{ font-family:Arial, Verdana, Helvetica, sans-serif; - font-size:12px; + font-size:10pt; margin:0; padding:0; } @@ -46,21 +46,18 @@ table.selection{} th{ /* table heading */ font-weight:normal; - font-size:12px; background-color:#cccce5; color:#330000; text-align:center; } th.number{ font-weight:normal; - font-size:12px; background-color:#cccce5; color:#330000; text-align:right; } td{ font-family:Arial, Verdana, Helvetica; - font-size:12px; text-align:left; } td.select{ @@ -77,7 +74,6 @@ input{ font-family:Arial, Verdana, Helvetica; - font-size:12px; } input.number{ text-align:right; @@ -94,7 +90,6 @@ } select{ font-family:Arial, Verdana, Helvetica; - font-size:12px; } select:hover{ background:lightblue; @@ -104,7 +99,6 @@ } textarea{ /* default style for textarre */ font-family:Arial, Verdana, Helvetica; - font-size:12px; } textarea:hover{} textarea.texterror{ @@ -153,7 +147,6 @@ padding-top:1px; padding-bottom:1px; font-weight:normal; - font-size:12px; TEXT-ALIGN:center; } DIV.page_help_text{ @@ -170,7 +163,6 @@ POSITION:static; font-family:Arial, Verdana, Helvetica; font-weight:normal; - font-size:12px; color:black; TEXT-ALIGN:center; } @@ -220,7 +212,6 @@ .label{ /* used */ font-weight:bold; font-style:normal; - font-size:12px; color:black; background-color:#cccccc; } @@ -238,7 +229,6 @@ } button{ - font-size:12px; } button:hover{ background:lightblue; Modified: trunk/css/fresh/default.css =================================================================== --- trunk/css/fresh/default.css 2012-12-19 06:45:03 UTC (rev 5766) +++ trunk/css/fresh/default.css 2012-12-19 06:59:15 UTC (rev 5767) @@ -19,7 +19,7 @@ body { font-family: Arial, Verdana, Helvetica, sans-serif; - font-size:12px; + font-size:10pt; margin:0; padding:0; } @@ -39,11 +39,9 @@ vertical-align:middle; } p.page_title_text { - font-family: Arial, Verdana, Helvetica, sans-serif; padding-top: 2px; padding-bottom: 2px; font-weight: bold; - font-size:12px; color: black; background-color: #C9D392; width: 30%; @@ -67,7 +65,6 @@ } th { font-weight: normal; - font-size:12px; background-color: #777C59; color: white; text-align: center; @@ -79,8 +76,6 @@ color: white; } td { - font-family: Arial, Verdana, Helvetica, sans-serif;; - font-size:12px; text-align: left; } td.select { @@ -94,8 +89,6 @@ text-align:center; } input { - font-family: Arial, Verdana, Helvetica, sans-serif;; - font-size:12px; } input.number{ text-align: right; @@ -111,8 +104,6 @@ font-size:12px; } textarea{ - font-family: Arial, Verdana, Helvetica, sans-serif; - font-size:12px; } textarea:hover{ } @@ -145,21 +136,19 @@ } DIV.page_help_text { background: lightgrey url(images/help.png) top left no-repeat; - BORDER: #a52a2a 1px solid; + border: #a52a2a 1px solid; padding-top:2px; padding-bottom: 2px; - PADDING-LEFT: 10px; - Z-INDEX: 1; + padding-left: 10px; + z-index: 1; width: 80%; - FLOAT: none; - VISIBILITY: visible; - MARGIN: 0 auto; - POSITION: static; - font-family: Arial, Verdana, Helvetica, sans-serif; + float: none; + visibility: visible; + margin: 0 auto; + position: static; font-weight: normal; - font-size:12px; color: black; - TEXT-ALIGN:center; + text-align:center; } /*** calendar picker ***/ @@ -219,7 +208,7 @@ .label { font-weight:bold; font-style:normal; - font-size:12px; + font-size:120%; color:black; } .table_index { Modified: trunk/css/gel/default.css =================================================================== --- trunk/css/gel/default.css 2012-12-19 06:45:03 UTC (rev 5766) +++ trunk/css/gel/default.css 2012-12-19 06:59:15 UTC (rev 5767) @@ -17,7 +17,7 @@ body { font-family: Arial, Verdana, Helvetica, sans-serif; - font-size: 12px; + font-size: 10pt; background-color: white; margin:0; padding:5px; @@ -37,13 +37,11 @@ vertical-align:middle; } .page_title_text { - font-family: Arial, Verdana, Helvetica, sans-serif; padding-top: 2px; padding-bottom: 2px; font-weight: bold; - font-size: 12px; color: black; - TEXT-ALIGN:center; + text-align:center; } p.good { font-weight: bold; @@ -67,7 +65,6 @@ th { font-weight: normal; background-color: #ccc; - font-size: 12px; color: #330000; text-align: center; } @@ -75,12 +72,10 @@ text-align: right; font-weight: normal; background-color: #ccc; - font-size: 12px; color: #330000; } td { font-family: Arial, Verdana, Helvetica, sans-serif; - font-size: 12px; text-align: left; } td.select { @@ -97,8 +92,6 @@ background: url(images/input.png) #eee; color:#000; border: 0px 0px 1px 1px #000 dashed; - font-family: Arial, Verdana, Helvetica, sans-serif; - font-size: 12px; } input:hover{ background: url(images/inputh.png) #eee; @@ -115,15 +108,11 @@ select { background:#eee; color:#111; - font-family: Arial, Verdana, Helvetica, sans-serif; - font-size: 12px; } textarea{ background: url(images/input.png) #eee; color:#000; border: 0px 0px 1px 1px #000 dashed; - font-family: Arial, Verdana, Helvetica, sans-serif; - font-size: 12px; } textarea:hover{ } @@ -137,8 +126,6 @@ background: url(images/inputtxt.png) #eee; color:#000; border: 0px 0px 1px 1px #000 dashed; - font-family: Verdana, Arial, Helvetica; - font-size: 12px; } textarea:hover{ background: url(images/inputhtxt.png) #eee; @@ -148,7 +135,8 @@ div.error { /*** is this used??? ***/ background-color:red; color: white; - font-style: italic; font-weight:bold; + font-style: italic; + font-weight:bold; border: 3px solid red; } div.warn { @@ -168,71 +156,67 @@ } DIV.page_help_text { background: lightgrey url(images/help.png) top left no-repeat; - BORDER: #a52a2a 1px solid; + border: #a52a2a 1px solid; padding-top:2px; - padding-bottom: 2px; - PADDING-LEFT: 10px; - Z-INDEX: 1; + padding-bottom: 2px; + padding-left: 10px; + z-index: 1; width: 80%; - FLOAT: none; - VISIBILITY: visible; - MARGIN: 0 auto; - POSITION: static; - font-family: Arial, Verdana, Helvetica, sans-serif; + float: none; + visibility: visible; + margin: 0 auto; + position: static; font-weight: normal; - font-size: 12px; color: black; - TEXT-ALIGN:center; + text-align:center; } DIV.system_check { /*** is this used??? */ - BORDER: #a52a2a 1px solid; - PADDING-LEFT: 3px; - Z-INDEX: 1; - width: 40%; - FLOAT: none; - VISIBILITY: visible; - MARGIN: 0 auto; - POSITION: static; - background: lightgray; - font-family: Arial, Verdana, Helvetica, sans-serif; - padding-top: 1px; - padding-bottom: 1px; - font-weight: normal; - font-size: 12px; - color: black; - TEXT-ALIGN:left; + border: #a52a2a 1px solid; + padding-left: 3px; + z-index: 1; + width: 40%; + float: none; + visibility: visible; + margin: 0 auto; + position: static; + background: lightgray; + padding-top: 1px; + padding-bottom: 1px; + font-weight: normal; + color: black; + text-align:left; } .dpTbl { border: solid navy 1px; } .dpTD{ -border:0; -width:20px; -background-color:#EEEEEE; -text-align:right; -cursor:pointer; + border:0; + width:20px; + background-color:#EEEEEE; + text-align:right; + cursor:pointer; } .dpDayHighlight{ -border:0; -width:20px; -background-color:yellow; -text-align:right; -cursor:pointer; + border:0; + width:20px; + background-color:yellow; + text-align:right; + cursor:pointer; } .dpTDHover{ -border:0; -width:20px; -background-color:#CCCCCC; -text-align:right; -cursor:pointer; + border:0; + width:20px; + background-color:#CCCCCC; + text-align:right; + cursor:pointer; } .table1 { /*** used ***/ - width:90%; - background: #eee; - border: 1px solid #222; - margin: 0 auto; + width:90%; + background: #eee; + border: 1px solid #222; + margin: 0 auto; } .tableheader { /* used */ font-weight: normal; @@ -247,7 +231,7 @@ .label { /* used */ font-weight:bold; font-style:normal; - font-size:12px; + font-size:120%; color:black; background-color:#cccccc; } Modified: trunk/css/professional/default.css =================================================================== --- trunk/css/professional/default.css 2012-12-19 06:45:03 UTC (rev 5766) +++ trunk/css/professional/default.css 2012-12-19 06:59:15 UTC (rev 5767) @@ -19,7 +19,7 @@ body { font-family: Arial, Verdana, Helvetica, sans-serif; - font-size:12px; + font-size:10pt; background-color: #ddd; margin:0; padding:0; @@ -45,8 +45,6 @@ /*table detail items default format */ td { - font-family: Arial, Verdana, Helvetica; - font-size:12px; text-align: left; } td.select { @@ -92,14 +90,12 @@ th { /* table heading */ font-weight: normal; - font-size:12px; background-color: #cccce5; color: #330000; text-align: center; } th.number { font-weight: normal; - font-size:12px; background-color: #cccce5; color: #330000; text-align: right; @@ -132,8 +128,6 @@ which should have the same width as the column where it is located e.g.: class input_button, input_column_button, input_text */ input { - font-family: Arial, Verdana, Helvetica; - font-size:12px; } input.number{ text-align: right; @@ -157,7 +151,6 @@ /* for buttons ***HJ***/ button{ - font-size:12px; } button:hover{ background:lightblue; @@ -166,8 +159,6 @@ /* dropdown box */ select { - font-family: Arial, Verdana, Helvetica; - font-size:12px; } select.selecterror { background-color: #fddbdb; @@ -194,9 +185,7 @@ padding: 0px; } -textarea{ /* default style for textarre */ - font-family: Arial, Verdana, Helvetica; - font-size:12px; +textarea{ /* default style for textarea */ } textarea:hover{ } @@ -217,19 +206,18 @@ background:lightgray; color: black; border: 1px solid black; - PADDING-LEFT: 3px; - Z-INDEX: 1; + padding-left: 3px; + z-index: 1; width: 50%; - FLOAT: none; - VISIBILITY: visible; - MARGIN: 0 auto; - POSITION: static; - font-family: Arial, Verdana, Helvetica; + float: none; + visibility: visible; + margin: 0 auto; + position: static; + font-family: arial, verdana, helvetica; padding-top: 1px; padding-bottom: 1px; font-weight: normal; - font-size:12px; - TEXT-ALIGN:center; + text-align:center; } .page_title_text { /* used */ @@ -237,28 +225,25 @@ padding-top: 2px; padding-bottom: 2px; font-weight: bold; - font-size:12px; color: black; - TEXT-ALIGN:center; + text-align:center; } DIV.page_help_text { background: lightgrey url(images/help.png) top left no-repeat; - BORDER: #a52a2a 1px solid; + border: #a52a2a 1px solid; padding-top:2px; padding-bottom: 2px; - PADDING-LEFT: 10px; - Z-INDEX: 1; + padding-left: 10px; + z-index: 1; width: 80%; - FLOAT: none; - VISIBILITY: visible; - MARGIN: 0 auto; - POSITION: static; - font-family: Arial, Verdana, Helvetica; + float: none; + visibility: visible; + margin: 0 auto; + position: static; font-weight: normal; - font-size:12px; color: black; - TEXT-ALIGN:center; + text-align:center; } .menu_group_item a { @@ -268,14 +253,10 @@ text-decoration: underline; } - - textarea.texterror { background-color: #fddbdb; } - - .tableheader { font-weight: normal; background-color: #cccce5; @@ -291,7 +272,7 @@ .label { /* used */ font-weight:bold; font-style:normal; - font-size:12px; + font-size:120%; color:black; background-color:#cccccc; } Modified: trunk/css/silverwolf/default.css =================================================================== --- trunk/css/silverwolf/default.css 2012-12-19 06:45:03 UTC (rev 5766) +++ trunk/css/silverwolf/default.css 2012-12-19 06:59:15 UTC (rev 5767) @@ -18,7 +18,7 @@ body{ font-family:Arial, Verdana, Helvetica, sans-serif; - font-size:12px; + font-size:10pt; background:url(images/stripe.png) white; margin:0; padding:5px; @@ -48,7 +48,6 @@ } p.page_title_text{ /* page title, used in many *.php */ background:gainsboro; - font-size:12px; margin:10px auto; padding:5px; text-align:center; @@ -236,7 +235,7 @@ .label{ /*WorkOrderCosting.php, WorkOrderEntry.php, WorkOrderIssue.php, WorkOrderStatus.php */ font-weight:bold; font-style:normal; - font-size:12px; + font-size:120%; color:black; background-color:#ccc; } @@ -245,37 +244,36 @@ } .header{ /* used in \includes\InputSerialItemsFile.php */ -background-image:url(""); -background-repeat:no-repeat; -background-attachment:fixed; -border:none; -margin:0px; -padding:0px; + background-image:url(""); + background-repeat:no-repeat; + background-attachment:fixed; + border:none; + margin:0px; + padding:0px; } input.inputerror{ /* many * .php */ -background-color:#fddbdb; + background-color:#fddbdb; } textarea{ -font-family:Arial, Verdana, Helvetica, sans-serif; -font-size:100%; -background-color:#e3e1e1; -border-width:1px; -border-bottom-color:gray; -border-bottom-style:solid; -border-top-color:gray; -border-top-style:solid; -border-left-color:gray; -border-left-style:solid; -border-right-color:gray; -border-right-style:solid; + font-size:100%; + background-color:#e3e1e1; + border-width:1px; + border-bottom-color:gray; + border-bottom-style:solid; + border-top-color:gray; + border-top-style:solid; + border-left-color:gray; + border-left-style:solid; + border-right-color:gray; + border-right-style:solid; } select.selecterror{ /*AccountGroups.php, BankAccounts.php, BOMs.php, Stocks.php */ -background-color:#fddbdb; + background-color:#fddbdb; } .OsRow{ /* PO_OrderDetails.php */ -background-color:#234567; -color:white; + background-color:#234567; + color:white; } /*** CANVAS ***/ @@ -286,11 +284,11 @@ /*** HEADER ***/ #HeaderDiv{ -overflow:hidden; /* REQUIRED:height according to items contained */ -background:url(images/menu_bg_grey.png) repeat-x #cfcfcf; -color:gray; -padding:3px; -border:thin solid lightgray; + overflow:hidden; /* REQUIRED:height according to items contained */ + background:url(images/menu_bg_grey.png) repeat-x #cfcfcf; + color:gray; + padding:3px; + border:thin solid lightgray; } #HeaderWrapDiv{ } @@ -298,23 +296,23 @@ /*** HEADER - APP INFO ***/ #AppInfoDiv{ -float:left; /* REQUIRED:to the left */ + float:left; /* REQUIRED:to the left */ } #AppInfoDiv img{ -vertical-align:middle; /* center image and text vertically */ + vertical-align:middle; /* center image and text vertically */ } #AppInfoCompanyDiv{ -display:table-cell; /* REQUIRED:as a cell */ + display:table-cell; /* REQUIRED:as a cell */ } #AppInfoUserDiv{ -display:table-cell; /* REQUIRED:as a cell */ + display:table-cell; /* REQUIRED:as a cell */ } #AppInfoUserDiv a{ -color:gray; + color:gray; } #AppInfoUserDiv a:hover{ -color:black; -text-decoration:underline; + color:black; + text-decoration:underline; } #AppInfoModuleDiv{ } @@ -322,146 +320,146 @@ /*** HEADER - QUICK MENU ***/ #QuickMenuDiv{ -float:right; /* to the right side */ -margin-top:2px; + float:right; /* to the right side */ + margin-top:2px; } #QuickMenuDiv ul{ -list-style:none; /* hide the bullets */ + list-style:none; /* hide the bullets */ } #QuickMenuDiv li{ -display:inline; /* items are inline */ + display:inline; /* items are inline */ } /*** links as buttons!!! clicking anywhere in the button will activate the link!!! ***HJ***/ #QuickMenuDiv li a{ -padding:9px; /* links as button */ -border:thin outset lightgray; /* un-pressed state */ + padding:9px; /* links as button */ + border:thin outset lightgray; /* un-pressed state */ } #QuickMenuDiv li a:hover{ -padding:9px; /* links as button */ -border:thin inset lightgray; /* pressed state */ -text-decoration:none; /* no underline */ -color:black; + padding:9px; /* links as button */ + border:thin inset lightgray; /* pressed state */ + text-decoration:none; /* no underline */ + color:black; } /*** BODY ***/ #BodyDiv{ -clear:both; /* REQUIRED */ -overflow:hidden; /* REQUIRED */ -color:black; -background:whitesmoke; -padding-bottom:5px; -text-align:center; + clear:both; /* REQUIRED */ + overflow:hidden; /* REQUIRED */ + color:black; + background:whitesmoke; + padding-bottom:5px; + text-align:center; } /*** BODY - MAIN MENU ***/ #MainMenuDiv{ -float:left; /* REQUIRED:to the left side */ -white-space:nowrap; /* don't break text */ -text-align:center; -width:12%; -margin-top:3px; + float:left; /* REQUIRED:to the left side */ + white-space:nowrap; /* don't break text */ + text-align:center; + width:12%; + margin-top:3px; } #MainMenuDiv ul{ -padding:0; /* REQUIRED:remove extra gaps (ex-bullets) */ -margin:0 3px 0 0; -border:thin outset silver; + padding:0; /* REQUIRED:remove extra gaps (ex-bullets) */ + margin:0 3px 0 0; + border:thin outset silver; } #MainMenuDiv li{ -list-style:none; /* REQUIRED */ -padding:0; /* REQUIRED */ + list-style:none; /* REQUIRED */ + padding:0; /* REQUIRED */ } #MainMenuDiv li a, #MainMenuDiv li a:hover, #MainMenuDiv li a:active, #MainMenuDiv .main_menu_selected a, #MainMenuDiv .main_menu_selected a:hover{ /* common styles */ -display:block; /* REQUIRED */ -padding:3px; -border:thin outset silver; -color:black; -text-decoration:none; -background:silver; + display:block; /* REQUIRED */ + padding:3px; + border:thin outset silver; + color:black; + text-decoration:none; + background:silver; } #MainMenuDiv li a:hover{ /* link as button!!! pressed state */ -border:thin inset silver; + border:thin inset silver; } #MainMenuDiv .main_menu_selected a,#MainMenuDiv .main_menu_selected a:hover{ /* the selected button */ -border:thin inset silver; -background:dimgray; -color:white; + border:thin inset silver; + background:dimgray; + color:white; } /*** BODY - SUB MENU ***/ #SubMenuDiv{ -display:table; -float:right; -overflow:hidden; -width:88%; -margin-top:3px; -text-align:left; + display:table; + float:right; + overflow:hidden; + width:88%; + margin-top:3px; + text-align:left; } #SubMenuDiv ul{ -list-style-type:none; /* REQUIRED:hide bullets */ -padding:0; /* REQUIRED:remove extra gaps (ex-bullets) */ -margin:0; -background:gainsboro; -border:thin outset gainsboro; -margin-left:3px; + list-style-type:none; /* REQUIRED:hide bullets */ + padding:0; /* REQUIRED:remove extra gaps (ex-bullets) */ + margin:0; + background:gainsboro; + border:thin outset gainsboro; + margin-left:3px; } #SubMenuDiv li{ -list-style:none; /* REQUIRED:hide the bullets */ -padding:2px; + list-style:none; /* REQUIRED:hide the bullets */ + padding:2px; } .menu_group_headers{ -background:silver; -outline:thin outset silver; -text-align:center; -color:black; + background:silver; + outline:thin outset silver; + text-align:center; + color:black; } #TransactionsDiv,#InquiriesDiv,#MaintenanceDiv{ -display:table-cell; + display:table-cell; } #InquiriesDiv div{ /* default div, used for custom report header */ -background:silver; -color:black; -padding:2px; + background:silver; + color:black; + padding:2px; } .menu_group_item p{ -color:#00f; /* This is the color for bullets, I like it to be the same as the anchor color, but it's up to you */ -text-indent:-10px; /* this makes the bullet to appear as the li tag previously used */ -margin:0 0 0 12px; /* One thing that I didnÃÂôt like of the li was that it had no left margin applied */ + color:#00f; /* This is the color for bullets, I like it to be the same as the anchor color, but it's up to you */ + text-indent:-10px; /* this makes the bullet to appear as the li tag previously used */ + margin:0 0 0 12px; /* One thing that I didnÃÂôt like of the li was that it had no left margin applied */ } /*** FOOTER ***/ #FooterDiv{ -clear:both; /* REQUIRED */ -overflow:hidden; -color:gray; -background:url(images/menu_bg_grey.png) repeat-x #cfcfcf; -border:thin solid lightgray; + clear:both; /* REQUIRED */ + overflow:hidden; + color:gray; + background:url(images/menu_bg_grey.png) repeat-x #cfcfcf; + border:thin solid lightgray; } #FooterWrapDiv{ -overflow:hidden; -padding:3px; + overflow:hidden; + padding:3px; } #FooterLogoDiv{ -float:left; -background:white; -border-radius:8px 8px 8px 8px; -padding:3px; -margin-left:47%; /* to the center (approx) */ + float:left; + background:white; + border-radius:8px 8px 8px 8px; + padding:3px; + margin-left:47%; /* to the center (approx) */ } #FooterLogoDiv img{ -vertical-align:middle; + vertical-align:middle; } #FooterVersionDiv{ clear:both; /* below the logo */ @@ -469,8 +467,8 @@ margin-left:47%; /* to the center (approx) */ } #FooterTimeDiv{ -float:right; -margin-top:-22px; /* go up to center */ + float:right; + margin-top:-22px; /* go up to center */ } /*** END ***/ \ No newline at end of file Modified: trunk/css/wood/default.css =================================================================== --- trunk/css/wood/default.css 2012-12-19 06:45:03 UTC (rev 5766) +++ trunk/css/wood/default.css 2012-12-19 06:59:15 UTC (rev 5767) @@ -20,7 +20,7 @@ body{ font-family:Arial, Verdana, Helvetica, sans-serif; - font-size:12px; + font-size:10pt; margin:10px; background:url(images/desk.jpg) #631; } @@ -74,7 +74,7 @@ } th { /* table headers */ font-weight: normal; - font-size:12px; + font-size:100%; background-color: #ffd980; color: black; text-align: center; @@ -102,7 +102,7 @@ input { /* used for text box and buttons (buttons should have their own styles) */ font-family: Arial, Verdana, Helvetica, sans-serif; - font-size: 12px; + font-size:100%; } input.number{ text-align: right; @@ -116,8 +116,8 @@ } select { /* drop down */ - font-family: Arial, Verdana, Helvetica, sans-serif;; - font-size: 12px; + font-family: Arial, Verdana, Helvetica, sans-serif; + font-size: 100%; } select:hover { /* drop down */ background:#fff791; @@ -125,7 +125,7 @@ textarea{ font-family: Arial, Verdana, Helvetica, sans-serif; - font-size: 12px; + font-size: 100%; } textarea:hover{ background:#fff791; @@ -188,7 +188,7 @@ POSITION: static; font-family: Arial, Verdana, Helvetica, sans-serif; font-weight: normal; - font-size:12px; + font-size: 100%; color: black; TEXT-ALIGN:center; @@ -198,18 +198,17 @@ width:80%; } DIV.system_check { /* probably not used anywhere */ - BORDER: #a52a2a 1px solid; - Z-INDEX: 1; - FLOAT: none; - VISIBILITY: visible; - POSITION: static; + border: #a52a2a 1px solid; + z-index: 1; + float: none; + visibility: visible; + position: static; background: lightgray; - font-family: Arial, Verdana, Helvetica, sans-serif; + font-family: arial, verdana, helvetica, sans-serif; font-weight: normal; - font-size:12px; + font-size:100%; color: black; - TEXT-ALIGN:left; - + text-align:left; box-shadow:3px 3px 4px; margin:0 auto 10px; padding:10px; @@ -267,7 +266,7 @@ .label { font-weight:bold; font-style:normal; - font-size:12px; + font-size:120%; color:black; background-color:#cccccc; } @@ -363,7 +362,7 @@ } #AppInfoModuleDiv{ font-weight:bold; - font-size:12px; + font-size:120%; padding:3px; } Modified: trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.po 2012-12-19 06:45:03 UTC (rev 5766) +++ trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.po 2012-12-19 06:59:15 UTC (rev 5767) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: web-erp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-14 10:03+1200\n" +"POT-Creation-Date: 2012-12-18 21:50+1300\n" "PO-Revision-Date: 2012-01-26 10:26+0000\n" "Last-Translator: JC_Chuck <Unknown>\n" "Language-Team: Arabic <ar...@li...>\n" @@ -17,11 +17,11 @@ "X-Launchpad-Export-Date: 2012-03-07 23:01+0000\n" "X-Generator: Launchpad (build 14907)\n" -#: AccountGroups.php:7 includes/MainMenuLinksArray.php:379 +#: AccountGroups.php:7 includes/MainMenuLinksArray.php:381 msgid "Account Groups" msgstr "مجموعات العضوية" -#: AccountGroups.php:18 +#: AccountGroups.php:19 msgid "" "An error occurred in retrieving the account groups of the parent account " "group during the check for recursion" @@ -29,73 +29,73 @@ "لقد حدث خطأ فى استرجاع بيانات مجموعات العضو الخاصة باعضوية الأب اثناء " "االتحقق من وجود استدعاء ذاتي" -#: AccountGroups.php:19 +#: AccountGroups.php:20 msgid "" "The SQL that was used to retrieve the account groups of the parent account " "group and that failed in the process was" msgstr "" -#: AccountGroups.php:45 +#: AccountGroups.php:46 #, fuzzy msgid "An error occurred in moving the account group" msgstr "حدث خطأ اثناء تحديث مجموعة العضو" -#: AccountGroups.php:46 +#: AccountGroups.php:47 #, fuzzy msgid "The SQL that was used to moving the account group was" msgstr "الطلب المستخدم لإضافة مجموعة الحسابات هي" -#: AccountGroups.php:48 AccountGroups.php:309 +#: AccountGroups.php:49 AccountGroups.php:310 msgid "Review Account Groups" msgstr "" -#: AccountGroups.php:49 +#: AccountGroups.php:50 #, fuzzy msgid "All accounts in the account group:" msgstr "حدث خطأ اثناء تحديث مجموعة العضو" -#: AccountGroups.php:49 +#: AccountGroups.php:50 #, fuzzy msgid "have been changed to the account group:" msgstr "الطلب المستخدم لإضافة مجموعة الحسابات هي" -#: AccountGroups.php:68 AccountGroups.php:105 AccountGroups.php:186 -#: AccountGroups.php:221 +#: AccountGroups.php:69 AccountGroups.php:106 AccountGroups.php:187 +#: AccountGroups.php:222 msgid "The SQL that was used to retrieve the information was" msgstr "الطلب المستخدم لإسترجاع المعلومات كان" -#: AccountGroups.php:69 +#: AccountGroups.php:70 msgid "Could not check whether the group exists because" msgstr "لم يتم التحقق من وجود المجموعة بسبب" -#: AccountGroups.php:76 +#: AccountGroups.php:77 msgid "The account group name already exists in the database" msgstr "اسم المجموعة موجود مسبقاً" -#: AccountGroups.php:82 +#: AccountGroups.php:83 msgid "The account group name cannot contain the character" msgstr "لا يمكن وضع هذا الحرف في اسم المجموعة" -#: AccountGroups.php:82 Departments.php:30 TaxCategories.php:31 +#: AccountGroups.php:83 Departments.php:30 TaxCategories.php:31 msgid "or the character" msgstr "او الحرف" -#: AccountGroups.php:88 +#: AccountGroups.php:89 msgid "The account group name must be at least one character long" msgstr "اسم المجموعة يجب ان يحتوي علي الأقل علي حرف واحد" -#: AccountGroups.php:95 +#: AccountGroups.php:96 msgid "" "The parent account group selected appears to result in a recursive account " "structure - select an alternative parent account group or make this group a " "top level account group" msgstr "" -#: AccountGroups.php:106 +#: AccountGroups.php:107 msgid "Could not check whether the group is recursive because" msgstr "لم أستطيع التخقق اذا كانت المجموعة ذاتيى الأسترجاع لأن" -#: AccountGroups.php:114 +#: AccountGroups.php:115 msgid "" "Since this account group is a child group, the sequence in the trial " "balance, the section in the accounts and whether or not the account group " @@ -104,60 +104,60 @@ "will have no effect." msgstr "" -#: AccountGroups.php:119 +#: AccountGroups.php:120 msgid "The section in accounts must be an integer" msgstr "يجب ان يكون القسم فى الحساب عدد صحيح" -#: AccountGroups.php:125 +#: AccountGroups.php:126 msgid "The sequence in the trial balance must be an integer" msgstr "التسلسل فى الحساب التجريبى يجب ان يكون عدد صحيح" -#: AccountGroups.php:131 +#: AccountGroups.php:132 msgid "The sequence in the TB must be numeric and less than" msgstr "" -#: AccountGroups.php:147 +#: AccountGroups.php:148 msgid "An error occurred in updating the account group" msgstr "حدث خطأ اثناء تحديث مجموعة العضو" -#: AccountGroups.php:148 +#: AccountGroups.php:149 msgid "The SQL that was used to update the account group was" msgstr "" -#: AccountGroups.php:150 AccountSections.php:98 PaymentMethods.php:83 +#: AccountGroups.php:151 AccountSections.php:98 PaymentMethods.php:83 msgid "Record Updated" msgstr "تم التحديث" -#: AccountGroups.php:166 +#: AccountGroups.php:167 msgid "An error occurred in inserting the account group" msgstr "حدث خطأ ما اثناء اضافة المجموعة" -#: AccountGroups.php:167 +#: AccountGroups.php:168 msgid "The SQL that was used to insert the account group was" msgstr "الطلب المستخدم لإضافة مجموعة الحسابات هي" -#: AccountGroups.php:168 AccountSections.php:108 +#: AccountGroups.php:169 AccountSections.php:108 msgid "Record inserted" msgstr "تمت الإضافة بنجاح" -#: AccountGroups.php:185 +#: AccountGroups.php:186 msgid "An error occurred in retrieving the group information from chartmaster" msgstr "" -#: AccountGroups.php:190 +#: AccountGroups.php:191 msgid "" "Cannot delete this account group because general ledger accounts have been " "created using this group" msgstr "" -#: AccountGroups.php:191 AccountGroups.php:226 AccountSections.php:130 +#: AccountGroups.php:192 AccountGroups.php:227 AccountSections.php:130 #: Areas.php:115 Areas.php:124 BankAccounts.php:159 CreditStatus.php:125 #: Currencies.php:167 Currencies.php:175 Currencies.php:183 #: CustomerBranches.php:290 CustomerBranches.php:300 CustomerBranches.php:310 #: CustomerBranches.php:320 Customers.php:286 Customers.php:295 #: Customers.php:303 Customers.php:311 CustomerTypes.php:147 #: CustomerTypes.php:157 Departments.php:141 Factors.php:134 -#: FixedAssetCategories.php:134 GLAccounts.php:80 GLAccounts.php:96 +#: FixedAssetCategories.php:134 GLAccounts.php:83 GLAccounts.php:99 #: Locations.php:249 Locations.php:257 Locations.php:268 Locations.php:277 #: Locations.php:286 Locations.php:295 Locations.php:304 Locations.php:313 #: Locations.php:321 MRPDemandTypes.php:87 PaymentMethods.php:142 @@ -173,82 +173,83 @@ msgid "There are" msgstr "يوجد" -#: AccountGroups.php:191 +#: AccountGroups.php:192 msgid "general ledger accounts that refer to this account group" msgstr "" -#: AccountGroups.php:198 AccountGroups.php:269 AccountGroups.php:390 +#: AccountGroups.php:199 AccountGroups.php:270 AccountGroups.php:391 msgid "Parent Group" msgstr "" -#: AccountGroups.php:214 +#: AccountGroups.php:215 msgid "Move Group" msgstr "" -#: AccountGroups.php:220 +#: AccountGroups.php:221 msgid "An error occurred in retrieving the parent group information" msgstr "" -#: AccountGroups.php:225 +#: AccountGroups.php:226 msgid "" "Cannot delete this account group because it is a parent account group of " "other account group(s)" msgstr "" -#: AccountGroups.php:226 +#: AccountGroups.php:227 msgid "account groups that have this group as its/there parent account group" msgstr "" -#: AccountGroups.php:230 +#: AccountGroups.php:231 msgid "An error occurred in deleting the account group" msgstr "حدث خطأ ما اثناء حذف مجموعة الحسابات" -#: AccountGroups.php:231 +#: AccountGroups.php:232 msgid "The SQL that was used to delete the account group was" msgstr "" -#: AccountGroups.php:233 +#: AccountGroups.php:234 msgid "group has been deleted" msgstr "تم حذف المجموعة" -#: AccountGroups.php:258 +#: AccountGroups.php:259 msgid "The sql that was used to retrieve the account group information was " msgstr "" -#: AccountGroups.php:259 +#: AccountGroups.php:260 msgid "Could not get account groups because" msgstr "لم يتمكن الحصول على مجموات العضو لان" -#: AccountGroups.php:261 AccountSections.php:169 AddCustomerContacts.php:25 +#: AccountGroups.php:262 AccountSections.php:169 AddCustomerContacts.php:25 #: AddCustomerContacts.php:27 AddCustomerNotes.php:101 #: AddCustomerTypeNotes.php:94 AgedDebtors.php:444 AgedSuppliers.php:276 #: Areas.php:144 AuditTrail.php:11 BankReconciliation.php:14 #: BOMExtendedQty.php:250 BOMIndented.php:246 BOMIndentedReverse.php:235 #: BOMInquiry.php:187 BOMListing.php:109 BOMs.php:231 BOMs.php:858 -#: COGSGLPostings.php:19 CompanyPreferences.php:155 CounterSales.php:2045 -#: CounterSales.php:2170 Credit_Invoice.php:256 CreditStatus.php:21 -#: Currencies.php:29 CustEDISetup.php:17 DailyBankTransactions.php:11 -#: DebtorsAtPeriodEnd.php:125 Departments.php:10 DiscountCategories.php:12 -#: DiscountCategories.php:136 DiscountMatrix.php:16 EDIMessageFormat.php:105 -#: FixedAssetLocations.php:9 FixedAssetRegister.php:13 -#: FixedAssetRegister.php:249 FixedAssetTransfer.php:11 FormDesigner.php:129 -#: GLBalanceSheet.php:378 GLBudgets.php:29 GLJournalInquiry.php:7 -#: GLJournal.php:247 InternalStockRequest.php:300 InventoryPlanning.php:379 +#: COGSGLPostings.php:19 CompanyPreferences.php:155 CounterReturns.php:1610 +#: CounterSales.php:2074 CounterSales.php:2199 Credit_Invoice.php:270 +#: CreditStatus.php:21 Currencies.php:29 CustEDISetup.php:17 +#: DailyBankTransactions.php:11 DebtorsAtPeriodEnd.php:125 +#: DiscountCategories.php:12 DiscountCategories.php:136 DiscountMatrix.php:16 +#: EDIMessageFormat.php:105 FixedAssetLocations.php:9 +#: FixedAssetRegister.php:13 FixedAssetRegister.php:249 +#: FixedAssetTransfer.php:11 FormDesigner.php:129 GLBalanceSheet.php:378 +#: GLBudgets.php:29 GLJournalInquiry.php:7 GLJournal.php:247 +#: InternalStockRequest.php:300 InventoryPlanning.php:379 #: InventoryPlanningPrefSupplier.php:469 MRPReport.php:516 NoSalesItems.php:89 #: OutstandingGRNs.php:163 PcAssignCashToTab.php:59 PcAssignCashToTab.php:133 #: PcAssignCashToTab.php:149 PcAssignCashToTab.php:193 PDFPickingList.php:28 #: PDFStockLocTransfer.php:16 PO_AuthorisationLevels.php:10 POReport.php:... [truncated message content] |