config.inc.php3, libraries/sqlparser.lib.php3:

- Fix code to work around CSS bug in Mozilla/Konqueror with 'inherit'
This commit is contained in:
Robin Johnson
2002-07-25 22:49:34 +00:00
parent c25713f777
commit c6ea79ba9b
3 changed files with 18 additions and 8 deletions

View File

@@ -5,6 +5,11 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2002-07-24 Robin Johnson <robbat2@users.sourceforge.net>
* config.inc.php3, libraries/sqlparser.lib.php3:
- Fix code to work around CSS bug in Mozilla/Konqueror with 'inherit'
value.
2002-07-25 Marc Delisle <lem9@users.sourceforge.net> 2002-07-25 Marc Delisle <lem9@users.sourceforge.net>
* Documentation.html, clarify about mysql extensions * Documentation.html, clarify about mysql extensions
* tbl_properties_options.php3, tbl_properties_table_info.php3: * tbl_properties_options.php3, tbl_properties_table_info.php3:

View File

@@ -294,12 +294,12 @@ $cfg['SQP']['fmtInd'] = '1'; // Amount to indent each level (floa
$cfg['SQP']['fmtIndUnit'] = 'em'; // Units for indenting each level (CSS Types - {em,px,pt}) $cfg['SQP']['fmtIndUnit'] = 'em'; // Units for indenting each level (CSS Types - {em,px,pt})
$cfg['SQP']['fmtColor'] = array( // Syntax colouring data $cfg['SQP']['fmtColor'] = array( // Syntax colouring data
'comment' => '#808000', 'comment' => '#808000',
'digit' => 'inherit', 'digit' => '',
'digit_hex' => 'teal', 'digit_hex' => 'teal',
'digit_integer' => 'teal', 'digit_integer' => 'teal',
'digit_float' => 'aqua', 'digit_float' => 'aqua',
'punct' => 'fuchsia', 'punct' => 'fuchsia',
'alpha' => 'inherit', 'alpha' => '',
'alpha_columnType' => '#FF9900', 'alpha_columnType' => '#FF9900',
'alpha_columnAttrib' => '#0000FF', 'alpha_columnAttrib' => '#0000FF',
'alpha_reservedWord' => '#990099', 'alpha_reservedWord' => '#990099',
@@ -307,9 +307,9 @@ $cfg['SQP']['fmtColor'] = array( // Syntax colouring data
'alpha_identifier' => 'black', 'alpha_identifier' => 'black',
'alpha_variable' => '#800000', 'alpha_variable' => '#800000',
'quote' => '#008000', 'quote' => '#008000',
'quote_double' => 'inherit', 'quote_double' => '',
'quote_single' => 'inherit', 'quote_single' => '',
'quote_backtick' => 'inherit' 'quote_backtick' => ''
); );

View File

@@ -755,13 +755,18 @@ if (!defined('PMA_SQP_LIB_INCLUDED')) {
} // end of the "PMA_SQP_formatHtml()" function } // end of the "PMA_SQP_formatHtml()" function
function PMA_SQP_buildCssRule($classname, $property, $value) function PMA_SQP_BuildCssRule($classname, $property, $value)
{ {
return '.' . $classname . ' { ' . $property . ': ' . $value . '; } ' . "\n"; $str = '.' . $classname . ' {';
if($value != '') {
$str .= $property . ': ' . $value . '; ';
}
$str .= '}' . "\n";
return $str;
} // end of the "PMA_SQP_buildCssRule()" function } // end of the "PMA_SQP_buildCssRule()" function
function PMA_SQP_buildCssData() function PMA_SQP_BuildCssData()
{ {
global $cfg; global $cfg;