diff --git a/db_operations.php b/db_operations.php index 190f9b649b..872811bc07 100644 --- a/db_operations.php +++ b/db_operations.php @@ -398,8 +398,7 @@ if ($db != 'mysql') { '; + echo ''; } echo __('Rename database to') . ':'; ?> @@ -434,8 +433,7 @@ if (($is_superuser || $GLOBALS['cfg']['AllowUserDropDatabase']) && ! $db_is_info
'; + echo ''; } echo __('Remove database'); ?> @@ -481,8 +479,7 @@ echo __('Remove database'); '; + echo ''; } echo __('Copy database to') . ':'; $drop_clause = 'DROP TABLE / DROP VIEW'; @@ -546,8 +543,7 @@ echo __('Remove database'); . '
' . "\n" . ' '; if ($cfg['PropertiesIconic']) { - echo ''; + echo ''; } echo ' ' . "\n" . ' ' . "\n" @@ -594,8 +590,7 @@ if ($cfgRelation['pdfwork'] && $num_tables > 0) { ?> */ echo ''; } // end if diff --git a/db_structure.php b/db_structure.php index 0054585bb4..c50cd77daf 100644 --- a/db_structure.php +++ b/db_structure.php @@ -283,9 +283,9 @@ foreach ($tables as $keyname => $each_table) { $tracking_icon = ''; if (PMA_Tracker::isActive()) { if (PMA_Tracker::isTracked($GLOBALS["db"], $truename)) { - $tracking_icon = '' . __('Tracking is active.') . ''; + $tracking_icon = '' . __('Tracking is active.') . ''; } elseif (PMA_Tracker::getVersion($GLOBALS["db"], $truename) > 0) { - $tracking_icon = '' . __('Tracking is not active.') . ''; + $tracking_icon = '' . __('Tracking is not active.') . ''; } } @@ -340,7 +340,7 @@ foreach ($tables as $keyname => $each_table) { - ' : ''. $do ? ' REPLICATED' : ''; ?> + ' : ''. $do ? ' REPLICATED' : ''; ?> @@ -547,15 +547,13 @@ PMA_listNavigator($total_num_tables, $pos, $_url_params, 'db_structure.php', 'fr echo '

'; echo ''; if ($cfg['PropertiesIconic']) { - echo ''; + echo ''; } echo __('Print view') . ' '; echo ''; if ($cfg['PropertiesIconic']) { - echo ''; + echo ''; } echo __('Data Dictionary') . ''; echo '

'; diff --git a/db_tracking.php b/db_tracking.php index 3a9b6954b7..38a231d4e0 100644 --- a/db_tracking.php +++ b/db_tracking.php @@ -98,7 +98,7 @@ if (PMA_DBI_num_rows($all_tables_result) > 0) { $drop_image_or_text = ''; if (true == $GLOBALS['cfg']['PropertiesIconic']) { - $drop_image_or_text .= '' . __('Delete tracking data for this table') . ''; + $drop_image_or_text .= '' . __('Delete tracking data for this table') . ''; } if ('both' === $GLOBALS['cfg']['PropertiesIconic'] || false === $GLOBALS['cfg']['PropertiesIconic']) { $drop_image_or_text .= __('Drop'); @@ -198,7 +198,7 @@ if (isset($my_tables)) { $my_link = ''; if ($cfg['PropertiesIconic']) { - $my_link .= '' . __('Track table') . ' '; + $my_link .= '' . __('Track table') . ' '; } $my_link .= __('Track table') . ''; ?> diff --git a/js/functions.js b/js/functions.js index 1841caf0ad..c873aa93b4 100644 --- a/js/functions.js +++ b/js/functions.js @@ -135,14 +135,13 @@ function displayPasswordGenerateButton() { * * @param object $this_element a jQuery object pointing to the element */ -function PMA_addDatepicker($this_element) { +function PMA_addDatepicker($this_element, options) { var showTimeOption = false; if ($this_element.is('.datetimefield')) { showTimeOption = true; } - - $this_element - .datepicker({ + + var defaultOptions = { showOn: 'button', buttonImage: themeCalendarImage, // defined in js/messages.php buttonImageOnly: true, @@ -159,7 +158,9 @@ function PMA_addDatepicker($this_element) { $this_element.data('comes_from', 'datepicker'); }, constrainInput: false - }); + }; + + $this_element.datepicker($.extend(defaultOptions, options)); } /** diff --git a/js/server_status.js b/js/server_status.js index 2fda29f784..6cb77d2faa 100644 --- a/js/server_status.js +++ b/js/server_status.js @@ -942,9 +942,9 @@ $(function() { $('a[href="#pauseCharts"]').click(function() { runtime.redrawCharts = ! runtime.redrawCharts; if(! runtime.redrawCharts) - $(this).html(' ' + PMA_messages['strResumeMonitor']); + $(this).html(' ' + PMA_messages['strResumeMonitor']); else { - $(this).html(' ' + PMA_messages['strPauseMonitor']); + $(this).html(' ' + PMA_messages['strPauseMonitor']); if(runtime.charts == null) { initGrid(); $('a[href="#settingsPopup"]').show(); @@ -968,7 +968,7 @@ $(function() { $.get('server_status.php?' + url_query, vars, function(data) { var logVars = $.parseJSON(data), - icon = 's_success.png', msg='', str=''; + icon = 'ic_s_success', msg='', str=''; if(logVars['general_log'] == 'ON') { if(logVars['slow_query_log'] == 'ON') @@ -982,26 +982,26 @@ $(function() { } if(msg.length == 0) { - icon = 's_error.png'; + icon = 'ic_s_success'; msg = PMA_messages['strBothLogOff']; } str = '' + PMA_messages['strCurrentSettings'] + '
'; - str += ' ' + msg + '
'; + str += ' ' + msg + '
'; if(logVars['log_output'] != 'TABLE') - str += ' ' + PMA_messages['strLogOutNotTable'] + '
'; + str += ' ' + PMA_messages['strLogOutNotTable'] + '
'; else - str += ' ' + PMA_messages['strLogOutIsTable'] + '
'; + str += ' ' + PMA_messages['strLogOutIsTable'] + '
'; if(logVars['slow_query_log'] == 'ON') { if(logVars['long_query_time'] > 2) - str += ' ' + str += ' ' + $.sprintf(PMA_messages['strSmallerLongQueryTimeAdvice'], logVars['long_query_time']) + '
'; if(logVars['long_query_time'] < 2) - str += ' ' + str += ' ' + $.sprintf(PMA_messages['strLongQueryTimeSet'], logVars['long_query_time']) + '
'; } @@ -1261,27 +1261,47 @@ $(function() { $('#logAnalyseDialog').html( '

' + PMA_messages['strSelectedTimeRange'] - + Highcharts.dateFormat('%H:%M:%S',new Date(min)) + ' - ' - + Highcharts.dateFormat('%H:%M:%S',new Date(max)) + '

' + + ' - ' + + '

' + '' + '' + PMA_messages['strLogAnalyseInfo'] ); + PMA_addDatepicker($('#logAnalyseDialog').find('input[name="dateStart"],input[name="dateEnd"]'), { + showOn: 'focus', + beforeShow: function() { + // Fix wrong timepicker z-index, doesn't work without timeout + setTimeout(function() { + $('#ui-timepicker-div').css('z-index',$('#ui-datepicker-div').css('z-index')) + },0); + } + }); + var dlgBtns = { }; dlgBtns[PMA_messages['strFromSlowLog']] = function() { + var dateStart = Date.parse($('#logAnalyseDialog input[name="dateStart"]').attr('value')) || min; + var dateEnd = Date.parse($('#logAnalyseDialog input[name="dateEnd"]').attr('value')) || max; + loadLogStatistics( - { src: 'slow', start: min, end: max, groupInserts: $('input#groupInserts').attr('checked') } + { src: 'slow', start: dateStart, end: dateEnd, groupInserts: $('input#groupInserts').attr('checked') } ); + + $('#logAnalyseDialog').find('dateStart,dateEnd').datepicker('destroy'); $(this).dialog("close"); } dlgBtns[PMA_messages['strFromGeneralLog']] = function() { + var dateStart = Date.parse($('#logAnalyseDialog input[name="dateStart"]').attr('value')) || min; + var dateEnd = Date.parse($('#logAnalyseDialog input[name="dateEnd"]').attr('value')) || max; + loadLogStatistics( - { src: 'general', start: min, end: max, groupInserts: $('input#groupInserts').attr('checked') } + { src: 'general', start: dateStart, end: dateEnd, groupInserts: $('input#groupInserts').attr('checked') } ); + + $('#logAnalyseDialog').find('dateStart,dateEnd').datepicker('destroy'); $(this).dialog("close"); } @@ -1515,7 +1535,7 @@ $(function() { // Append a tooltip to the count column, if there exist one if($('#logTable th:last').html() == '#') { - $('#logTable th:last').append(' '); + $('#logTable th:last').append(' '); var qtipContent = PMA_messages['strCountColumnExplanation']; if(groupInserts) qtipContent += '

' + PMA_messages['strMoreCountColumnExplanation'] + '

'; diff --git a/libraries/auth/cookie.auth.lib.php b/libraries/auth/cookie.auth.lib.php index ff758b8c97..1b7b82739b 100644 --- a/libraries/auth/cookie.auth.lib.php +++ b/libraries/auth/cookie.auth.lib.php @@ -198,7 +198,7 @@ if (top != self) { echo ''; if ($GLOBALS['cfg']['ReplaceHelpImg']) { - echo '' . __('phpMyAdmin documentation') . ''; + echo '' . __('phpMyAdmin documentation') . ''; } else { echo '(*)'; } diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 61f3102f66..2a75dcaa8d 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -97,9 +97,9 @@ function PMA_getIcon($icon, $alternate = '', $container = false, $force_text = f $button .= ''; if ($include_icon) { - $button .= '' . $alternate . ''; + . ' class="icon ic_' . str_replace('.png','',$icon) . '" />'; } if ($include_icon && $include_text) { @@ -393,9 +393,9 @@ function PMA_showMySQLDocu($chapter, $link, $big_icon = false, $anchor = '', $ju if ($just_open) { return ''; } elseif ($big_icon) { - return '' . __('Documentation') . ''; + return '' . __('Documentation') . ''; } elseif ($GLOBALS['cfg']['ReplaceHelpImg']) { - return '' . __('Documentation') . ''; + return '' . __('Documentation') . ''; } else { return '[' . __('Documentation') . ']'; } @@ -412,7 +412,7 @@ function PMA_showMySQLDocu($chapter, $link, $big_icon = false, $anchor = '', $ju */ function PMA_showDocu($anchor) { if ($GLOBALS['cfg']['ReplaceHelpImg']) { - return '' . __('Documentation') . ''; + return '' . __('Documentation') . ''; } else { return '[' . __('Documentation') . ']'; } @@ -430,7 +430,7 @@ function PMA_showPHPDocu($target) { $url = PMA_getPHPDocLink($target); if ($GLOBALS['cfg']['ReplaceHelpImg']) { - return '' . __('Documentation') . ''; + return '' . __('Documentation') . ''; } else { return '[' . __('Documentation') . ']'; } @@ -479,8 +479,7 @@ function PMA_showHint($message, $bbcode = false, $type = 'notice') // footnotemarker used in js/tooltip.js return '' . $nr . '' . - ''; + ''; } /** @@ -1581,8 +1580,8 @@ function PMA_generate_html_tab($tab, $url_params = array()) // avoid generating an alt tag, because it only illustrates // the text that follows and if browser does not display // images, the text is duplicated - $image = '%2$s'; + $image = '%2$s'; $tab['text'] = sprintf($image, htmlentities($tab['icon']), $tab['text']); } // check to not display an empty link-text diff --git a/libraries/config/FormDisplay.tpl.php b/libraries/config/FormDisplay.tpl.php index c89365461f..b7e0fde862 100644 --- a/libraries/config/FormDisplay.tpl.php +++ b/libraries/config/FormDisplay.tpl.php @@ -159,8 +159,8 @@ function display_input($path, $name, $description = '', $type, $value, $value_is - Doc - Wiki + Doc + Wiki @@ -234,17 +234,17 @@ function display_input($path, $name, $description = '', $type, $value, $value_is } if ($is_setup_script && isset($opts['userprefs_comment']) && $opts['userprefs_comment']) { ?> - comment + comment - " title="" style="display:none">set-value + " title="" style="display:none">set-value - + '; + $order_img = ' '. __('Ascending') . ''; // but on mouse over, show the reverse order (DESC) - $order_link_params['onmouseover'] = 'if(document.getElementById(\'sort_arrow\')){ document.getElementById(\'sort_arrow\').src=\'' . $GLOBALS['pmaThemeImage'] . 's_desc.png\'; }'; + $order_link_params['onmouseover'] = 'if($(\'#sort_arrow\').length > 0) { $(\'#sort_arrow\').attr(\'class\',\'icon ic_s_desc.png\'); }'; // on mouse out, show current sort order (ASC) - $order_link_params['onmouseout'] = 'if(document.getElementById(\'sort_arrow\')){ document.getElementById(\'sort_arrow\').src=\'' . $GLOBALS['pmaThemeImage'] . 's_asc.png\'; }'; + $order_link_params['onmouseout'] = 'if($(\'#sort_arrow\').length > 0) { $(\'#sort_arrow\').attr(\'class\',\'icon ic_s_asc.png\'); }'; } else { $future_sort_order = 'ASC'; // current sort order is DESC - $order_img = ' '. __('Descending') . ''; + $order_img = ' '. __('Descending') . ''; // but on mouse over, show the reverse order (ASC) $order_link_params['onmouseover'] = 'if(document.getElementById(\'sort_arrow\')){ document.getElementById(\'sort_arrow\').src=\'' . $GLOBALS['pmaThemeImage'] . 's_asc.png\'; }'; // on mouse out, show current sort order (DESC) diff --git a/libraries/server_links.inc.php b/libraries/server_links.inc.php index e8e2fc9b3f..4b7198eae2 100644 --- a/libraries/server_links.inc.php +++ b/libraries/server_links.inc.php @@ -38,15 +38,15 @@ if (!$GLOBALS['is_ajax_request']) { */ $tabs = array(); - $tabs['databases']['icon'] = 's_db.png'; + $tabs['databases']['icon'] = 'ic_s_db'; $tabs['databases']['link'] = 'server_databases.php'; $tabs['databases']['text'] = __('Databases'); - $tabs['sql']['icon'] = 'b_sql.png'; + $tabs['sql']['icon'] = 'ic_b_sql'; $tabs['sql']['link'] = 'server_sql.php'; $tabs['sql']['text'] = __('SQL'); - $tabs['status']['icon'] = 's_status.png'; + $tabs['status']['icon'] = 'ic_s_status'; $tabs['status']['link'] = 'server_status.php'; $tabs['status']['text'] = __('Status'); @@ -55,50 +55,50 @@ if (!$GLOBALS['is_ajax_request']) { $tabs['process']['text'] = __('Processes');*/ if ($is_superuser) { - $tabs['rights']['icon'] = 's_rights.png'; + $tabs['rights']['icon'] = 'ic_s_rights'; $tabs['rights']['link'] = 'server_privileges.php'; $tabs['rights']['text'] = __('Privileges'); } - $tabs['export']['icon'] = 'b_export.png'; + $tabs['export']['icon'] = 'ic_b_export'; $tabs['export']['link'] = 'server_export.php'; $tabs['export']['text'] = __('Export'); - $tabs['import']['icon'] = 'b_import.png'; + $tabs['import']['icon'] = 'ic_b_import'; $tabs['import']['link'] = 'server_import.php'; $tabs['import']['text'] = __('Import'); - $tabs['settings']['icon'] = 'b_tblops.png'; + $tabs['settings']['icon'] = 'ic_b_tblops'; $tabs['settings']['link'] = 'prefs_manage.php'; $tabs['settings']['text'] = __('Settings'); $tabs['settings']['active'] = in_array(basename($GLOBALS['PMA_PHP_SELF']), array('prefs_forms.php', 'prefs_manage.php')); - $tabs['synchronize']['icon'] = 's_sync.png'; + $tabs['synchronize']['icon'] = 'ic_s_sync'; $tabs['synchronize']['link'] = 'server_synchronize.php'; $tabs['synchronize']['text'] = __('Synchronize'); if (! empty($binary_logs)) { - $tabs['binlog']['icon'] = 's_tbl.png'; + $tabs['binlog']['icon'] = 'ic_s_tbl'; $tabs['binlog']['link'] = 'server_binlog.php'; $tabs['binlog']['text'] = __('Binary log'); } if ($is_superuser) { - $tabs['replication']['icon'] = 's_replication.png'; + $tabs['replication']['icon'] = 'ic_s_replication'; $tabs['replication']['link'] = 'server_replication.php'; $tabs['replication']['text'] = __('Replication'); } - $tabs['vars']['icon'] = 's_vars.png'; + $tabs['vars']['icon'] = 'ic_s_vars'; $tabs['vars']['link'] = 'server_variables.php'; $tabs['vars']['text'] = __('Variables'); - $tabs['charset']['icon'] = 's_asci.png'; + $tabs['charset']['icon'] = 'ic_s_asci'; $tabs['charset']['link'] = 'server_collations.php'; $tabs['charset']['text'] = __('Charsets'); - $tabs['engine']['icon'] = 'b_engine.png'; + $tabs['engine']['icon'] = 'ic_b_engine'; $tabs['engine']['link'] = 'server_engines.php'; $tabs['engine']['text'] = __('Engines'); diff --git a/libraries/tbl_links.inc.php b/libraries/tbl_links.inc.php index 6282097507..b066caf0ee 100644 --- a/libraries/tbl_links.inc.php +++ b/libraries/tbl_links.inc.php @@ -51,30 +51,30 @@ if (! isset($db_is_information_schema)) { */ $tabs = array(); -$tabs['browse']['icon'] = 'b_browse.png'; +$tabs['browse']['icon'] = 'ic_b_browse'; $tabs['browse']['text'] = __('Browse'); $tabs['browse']['link'] = 'sql.php'; $tabs['browse']['args']['pos'] = 0; -$tabs['structure']['icon'] = 'b_props.png'; +$tabs['structure']['icon'] = 'ic_b_props'; $tabs['structure']['link'] = 'tbl_structure.php'; $tabs['structure']['text'] = __('Structure'); -$tabs['sql']['icon'] = 'b_sql.png'; +$tabs['sql']['icon'] = 'ic_b_sql'; $tabs['sql']['link'] = 'tbl_sql.php'; $tabs['sql']['text'] = __('SQL'); -$tabs['search']['icon'] = 'b_search.png'; +$tabs['search']['icon'] = 'ic_b_search'; $tabs['search']['text'] = __('Search'); $tabs['search']['link'] = 'tbl_select.php'; if (!$db_is_information_schema) { - $tabs['insert']['icon'] = 'b_insrow.png'; + $tabs['insert']['icon'] = 'ic_b_insrow'; $tabs['insert']['link'] = 'tbl_change.php'; $tabs['insert']['text'] = __('Insert'); } -$tabs['export']['icon'] = 'b_tblexport.png'; +$tabs['export']['icon'] = 'ic_b_tblexport'; $tabs['export']['link'] = 'tbl_export.php'; $tabs['export']['args']['single_table'] = 'true'; $tabs['export']['text'] = __('Export'); @@ -84,16 +84,16 @@ $tabs['export']['text'] = __('Export'); * for views and information_schema */ if (! $tbl_is_view && !$db_is_information_schema) { - $tabs['import']['icon'] = 'b_tblimport.png'; + $tabs['import']['icon'] = 'ic_b_tblimport'; $tabs['import']['link'] = 'tbl_import.php'; $tabs['import']['text'] = __('Import'); - $tabs['operation']['icon'] = 'b_tblops.png'; + $tabs['operation']['icon'] = 'ic_b_tblops'; $tabs['operation']['link'] = 'tbl_operations.php'; $tabs['operation']['text'] = __('Operations'); } if(PMA_Tracker::isActive()) { - $tabs['tracking']['icon'] = 'eye.png'; + $tabs['tracking']['icon'] = 'ic_eye'; $tabs['tracking']['text'] = __('Tracking'); $tabs['tracking']['link'] = 'tbl_tracking.php'; } @@ -108,7 +108,7 @@ if (! $db_is_information_schema && PMA_MYSQL_INT_VERSION >= 50002 && ! PMA_DRIZZ * Views support a limited number of operations */ if ($tbl_is_view && !$db_is_information_schema) { - $tabs['operation']['icon'] = 'b_tblops.png'; + $tabs['operation']['icon'] = 'ic_b_tblops'; $tabs['operation']['link'] = 'view_operations.php'; $tabs['operation']['text'] = __('Operations'); } diff --git a/libraries/user_preferences.inc.php b/libraries/user_preferences.inc.php index 7d1a2d7e12..1b042171cf 100644 --- a/libraries/user_preferences.inc.php +++ b/libraries/user_preferences.inc.php @@ -20,12 +20,12 @@ if (! isset($forms[$form_param])) { $form_param = array_shift($forms_keys); } $tabs_icons = array( - 'Features' => 'b_tblops.png', - 'Sql_queries' => 'b_sql.png', - 'Left_frame' => 'b_select.png', - 'Main_frame' => 'b_props.png', - 'Import' => 'b_import.png', - 'Export' => 'b_export.png'); + 'Features' => 'ic_b_tblops', + 'Sql_queries' => 'ic_b_sql', + 'Left_frame' => 'ic_b_select', + 'Main_frame' => 'ic_b_props', + 'Import' => 'ic_b_import', + 'Export' => 'ic_b_export'); echo '
    '; echo PMA_generate_html_tab(array( 'link' => 'prefs_manage.php', diff --git a/server_status.php b/server_status.php index 004a536490..d971169263 100644 --- a/server_status.php +++ b/server_status.php @@ -266,6 +266,7 @@ $GLOBALS['js_include'][] = 'jquery/jquery.cookie.js'; // For tab persistence $GLOBALS['js_include'][] = 'jquery/jquery.json-2.2.js'; $GLOBALS['js_include'][] = 'jquery/jquery.sprintf.js'; $GLOBALS['js_include'][] = 'jquery/jquery.sortableTable.js'; +$GLOBALS['js_include'][] = 'jquery/timepicker.js'; // Charting $GLOBALS['js_include'][] = 'highcharts/highcharts.js'; /* Files required for chart exporting */ @@ -562,7 +563,7 @@ server_db_isLocal = ; * Displays the sub-page heading */ if ($GLOBALS['cfg']['MainPageIconic']) { - echo ''; + echo ''; } echo __('Runtime Information'); @@ -1273,26 +1274,26 @@ function printMonitor() { ?>
    - + |
    diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index 97c0e3e179..85be424e68 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -20,6 +20,7 @@ function PMA_ieFilter($start_color, $end_color) } ?> /******************************************************************************/ + /* general tags */ html { font-size: get('fontsize') ? $GLOBALS['PMA_Config']->get('fontsize') : ( @@ -58,14 +59,15 @@ h2 { padding: 10px 0 10px 3px; color: #777; } + /* Hiding icons in the page titles */ h2 img{display:none;} h2 a img{display:inline;} .data{ -margin: 0 0 12px 0; -position: relative; + margin: 0 0 12px 0; + position: relative; } h3 { @@ -317,6 +319,138 @@ select[multiple] { filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#f2f2f2"); } +/* Icon sprites */ + +.icon, img.footnotemarker { + vertical-align: -3px; + margin-right: 0.3em; + margin-left: 0.3em; + width:16px; + height:16px; + background: url(getImgPath(); ?>iconsprites.png) no-repeat top left; +} + +.ic_asc_order, .ic_s_desc { background-position: 0 0; } +.ic_b_bookmark { background-position: -17px 0; } +.ic_b_browse, .ic_b_sbrowse { background-position: -34px 0; } +.ic_b_calendar { background-position: -51px 0; } +.ic_b_chart, .ic_b_dbstatistics { background-position: -68px 0; } +.ic_b_close { background-position: -85px 0; } +.ic_b_comment { background-position: -102px 0; } +.ic_b_deltbl { background-position: -119px 0; } +.ic_b_docs { background-position: -136px 0; } +.ic_b_docsql { background-position: -153px 0; } +.ic_b_drop { background-position: -170px 0; } +.ic_b_edit { background-position: -187px 0; } +.ic_b_empty { background-position: -204px 0; } +.ic_b_engine { background-position: -221px 0; } +.ic_b_event_add { background-position: -238px 0; } +.ic_b_events { background-position: -255px 0; } +.ic_b_export, .ic_b_tblexport { background-position: -272px 0; } +.ic_b_firstpage { background-position: -289px 0; } +.ic_b_ftext { background-position: -306px 0; } +.ic_b_globe { background-position: -323px 0; } +.ic_b_help { background-position: -340px 0; } +.ic_b_help_s { background-position: -340px 0; } +.ic_b_home { background-position: -357px 0; } +.ic_b_import, .ic_b_tblimport { background-position: -374px 0; } +.ic_b_index { background-position: -391px 0; } +.ic_b_info { background-position: -408px 0; width: 11px; height: 11px; } +.ic_b_inline_edit { background-position: -420px 0; } +.ic_b_insrow { background-position: -437px 0; } +.ic_b_lastpage { background-position: -454px 0; } +.ic_b_minus { background-position: -471px 0; } +.ic_b_more, .ic_col_drop { background-position: -488px 0; } +.ic_b_newdb { background-position: -505px 0; } +.ic_b_newtbl { background-position: -522px 0; } +.ic_b_nextpage, .ic_play { background-position: -539px 0; } +.ic_b_pdfdoc { background-position: -556px 0; } +.ic_b_plus { background-position: -573px 0; } +.ic_b_prevpage { background-position: -590px 0; } +.ic_b_primary { background-position: -607px 0; } +.ic_b_print { background-position: -624px 0; } +.ic_b_props { background-position: -641px 0; } +.ic_b_relations { background-position: -658px 0; } +.ic_b_routine_add { background-position: -675px 0; } +.ic_b_routines { background-position: -692px 0; } +.ic_b_save { background-position: -709px 0; } +.ic_b_sdb { background-position: -726px 0; width: 10px; height: 10px; } +.ic_b_search { background-position: -737px 0; } +.ic_b_selboard { background-position: -754px 0; } +.ic_b_select { background-position: -771px 0; } +.ic_b_snewtbl { background-position: -788px 0; } +.ic_b_spatial { background-position: -805px 0; } +.ic_b_sql { background-position: -822px 0; } +.ic_b_sqldoc { background-position: -839px 0; } +.ic_b_sqlhelp { background-position: -856px 0; } +.ic_b_tblanalyse { background-position: -873px 0; } +.ic_b_tblops { background-position: -890px 0; } +.ic_b_tbloptimize { background-position: -907px 0; } +.ic_b_tipp { background-position: -924px 0; } +.ic_b_trigger_add { background-position: -941px 0; } +.ic_b_triggers { background-position: -958px 0; } +.ic_b_unique { background-position: -975px 0; } +.ic_b_usradd { background-position: -992px 0; } +.ic_b_usrcheck { background-position: -1009px 0; } +.ic_b_usrdrop { background-position: -1026px 0; } +.ic_b_usredit { background-position: -1043px 0; } +.ic_b_usrlist { background-position: -1060px 0; } +.ic_b_view { background-position: -1077px 0; } +.ic_b_views, .ic_s_views { background-position: -1094px 0; } +.ic_bd_browse { background-position: -1111px 0; } +.ic_bd_deltbl { background-position: -1128px 0; } +.ic_bd_drop { background-position: -1145px 0; } +.ic_bd_edit { background-position: -1162px 0; } +.ic_bd_empty { background-position: -1179px 0; } +.ic_bd_export { background-position: -1196px 0; } +.ic_bd_firstpage { background-position: -1213px 0; width: 16px; height: 13px; } +.ic_bd_ftext { background-position: -1230px 0; } +.ic_bd_index { background-position: -1247px 0; } +.ic_bd_insrow { background-position: -1264px 0; } +.ic_bd_lastpage { background-position: -1281px 0; width: 16px; height: 13px; } +.ic_bd_nextpage { background-position: -1298px 0; width: 8px; height: 13px; } +.ic_bd_prevpage { background-position: -1307px 0; width: 8px; height: 13px; } +.ic_bd_primary { background-position: -1316px 0; } +.ic_bd_sbrowse { background-position: -1333px 0; width: 10px; height: 10px; } +.ic_bd_select { background-position: -1344px 0; } +.ic_bd_spatial { background-position: -1361px 0; } +.ic_bd_unique { background-position: -1378px 0; } +.ic_database, .ic_s_db { background-position: -1395px 0; } +.ic_eye { background-position: -1412px 0; } +.ic_eye_grey { background-position: -1429px 0; } +.ic_item { background-position: -1446px 0; width: 9px; height: 9px; } +.ic_item_ltr { background-position: -1456px 0; width: 5px; height: 9px; } +.ic_item_rtl { background-position: -1462px 0; width: 5px; height: 9px; } +.ic_more { background-position: -1468px 0; width: 13px; height: 8px; } +.ic_pause { background-position: -1482px 0; } +.ic_php_sym { background-position: -1499px 0; } +.ic_s_asc { background-position: -1516px 0; } +.ic_s_asci { background-position: -1533px 0; } +.ic_s_attention, .ic_s_notice { background-position: -1550px 0; } +.ic_s_cancel { background-position: -1567px 0; } +.ic_s_cancel2 { background-position: -1584px 0; } +.ic_s_cog { background-position: -1601px 0; } +.ic_s_error { background-position: -1618px 0; } +.ic_s_error2 { background-position: -1635px 0; width: 11px; height: 11px; } +.ic_s_host { background-position: -1647px 0; } +.ic_s_info { background-position: -1664px 0; } +.ic_s_lang { background-position: -1681px 0; } +.ic_s_loggoff { background-position: -1698px 0; } +.ic_s_okay { background-position: -1715px 0; } +.ic_s_passwd { background-position: -1732px 0; } +.ic_s_really { background-position: -1749px 0; width: 11px; height: 11px; } +.ic_s_reload { background-position: -1761px 0; } +.ic_s_replication { background-position: -1778px 0; } +.ic_s_rights { background-position: -1795px 0; } +.ic_s_sortable { background-position: -1812px 0; } +.ic_s_status { background-position: -1829px 0; } +.ic_s_success { background-position: -1846px 0; } +.ic_s_sync { background-position: -1863px 0; } +.ic_s_tbl { background-position: -1880px 0; } +.ic_s_theme { background-position: -1897px 0; } +.ic_s_vars { background-position: -1914px 0; } +.ic_window-new { background-position: -1931px 0; } + /******************************************************************************/ /* classes */ div.tools { @@ -555,12 +689,6 @@ img.lightbulb { } /* leave some space between icons and text */ -.icon, img.footnotemarker { - vertical-align: -3px; - margin-right: 0.3em; - margin-left: 0.3em; -} - img.footnotemarker { display: none; } @@ -622,8 +750,8 @@ div.footnotes { color: #000000; background-color: #ebf8a4; } -h1.success, -div.success { + +h1.success, div.success { border-color: #a2d246; background-image: url(getImgPath(); ?>s_success.png); @@ -643,6 +771,7 @@ div.success { color: #000; background-color: #e8eef1; } + h1.notice, div.notice, div.footnotes { @@ -657,6 +786,7 @@ div.footnotes { } + .notice h1 { border-color: #ffb10a; } @@ -680,24 +810,23 @@ div.error { } + div.error h1 { border-color: #ff0000; } - - .confirmation { color: #000000; background-color: pink; } + fieldset.confirmation { - } + fieldset.confirmation legend { - } -/* end messageboxes */ +/* end messageboxes */ .tblcomment { font-size: 70%; @@ -802,9 +931,13 @@ form.login label { /* specific elements */ /* topmenu */ -#topmenu a {text-shadow:0px 1px 0px #fff;} +#topmenu a { + text-shadow:0px 1px 0px #fff; +} -#topmenu .error{background:#eee;border:0px !important;color:#aaa;} +#topmenu .error { + background:#eee;border:0px !important;color:#aaa; +} ul#topmenu, ul#topmenu2, ul.tabs { font-weight: bold; @@ -831,7 +964,10 @@ ul#topmenu li, ul#topmenu2 li { vertical-align:-3px; } -#topmenucontainer{background:url(./themes/pmahomme/img/tab_bg.png) repeat-x; border-top:1px solid #aaa;} +#topmenucontainer{ + background:url(./themes/pmahomme/img/tab_bg.png) repeat-x; + border-top:1px solid #aaa; +} /* default tab styles */ .tabactive { @@ -851,8 +987,8 @@ ul#topmenu ul a { } ul#topmenu .submenu { - display: none; - position: relative; + display: none; + position: relative; } ul#topmenu .shown { @@ -878,7 +1014,6 @@ ul#topmenu li:hover ul, ul#topmenu .submenuhover ul { display: block; font-weight:3em; background:#fff; - } ul#topmenu ul li { @@ -947,12 +1082,10 @@ ul#topmenu ul a { -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; - } ul#topmenu ul li:first-child a { border-width: 0; - } /* enabled hover/active tabs */ @@ -1048,16 +1181,15 @@ div#tablestatistics table { /* END server privileges */ - /* Heading */ #serverinfo { -border-bottom:1px solid #fff; --moz-border-radius: 4px 4px 0 0; --webkit-border-radius: 4px 4px 0 0; -border-radius:4px 4px 0 0; -background:#888; -padding:10px; -text-shadow:0 1px 0 #000000; + border-bottom:1px solid #fff; + -moz-border-radius: 4px 4px 0 0; + -webkit-border-radius: 4px 4px 0 0; + border-radius:4px 4px 0 0; + background:#888; + padding:10px; + text-shadow:0 1px 0 #000000; } #serverinfo .item { @@ -1163,24 +1295,22 @@ text-shadow:0 1px 0 #000000; /* serverstatus */ -img.sortableIcon { - width:16px; - height:16px; - float:right; - background-repeat:no-repeat; -} - h3#serverstatusqueries span { font-size:60%; display:inline; } +img.sortableIcon { + float:right; + background-repeat:no-repeat; +} + th.headerSortUp img.sortableIcon { - background-image:url(getImgPath(); ?>s_asc.png); + background-position: -1516px 0; } th.headerSortDown img.sortableIcon { - background-image:url(getImgPath(); ?>s_desc.png); + background-position: 0 0; } .buttonlinks { @@ -1286,7 +1416,7 @@ div#logTable { } div#logTable table { - width:100%; + width:100%; } .smallIndent { diff --git a/themes/pmahomme/img/ajax_clock_small.gif b/themes/pmahomme/img/ajax_clock_small.gif deleted file mode 100644 index 5b33f7e54f..0000000000 Binary files a/themes/pmahomme/img/ajax_clock_small.gif and /dev/null differ diff --git a/themes/pmahomme/img/asc_order.png b/themes/pmahomme/img/asc_order.png deleted file mode 100644 index 9b23c06d7b..0000000000 Binary files a/themes/pmahomme/img/asc_order.png and /dev/null differ diff --git a/themes/pmahomme/img/b_bookmark.png b/themes/pmahomme/img/b_bookmark.png deleted file mode 100644 index e2f0847274..0000000000 Binary files a/themes/pmahomme/img/b_bookmark.png and /dev/null differ diff --git a/themes/pmahomme/img/b_browse.png b/themes/pmahomme/img/b_browse.png deleted file mode 100644 index abcd93689a..0000000000 Binary files a/themes/pmahomme/img/b_browse.png and /dev/null differ diff --git a/themes/pmahomme/img/b_chart.png b/themes/pmahomme/img/b_chart.png deleted file mode 100644 index 9051fbc609..0000000000 Binary files a/themes/pmahomme/img/b_chart.png and /dev/null differ diff --git a/themes/pmahomme/img/b_close.png b/themes/pmahomme/img/b_close.png deleted file mode 100644 index 8ad396ee72..0000000000 Binary files a/themes/pmahomme/img/b_close.png and /dev/null differ diff --git a/themes/pmahomme/img/b_comment.png b/themes/pmahomme/img/b_comment.png deleted file mode 100644 index 7bc9233ea6..0000000000 Binary files a/themes/pmahomme/img/b_comment.png and /dev/null differ diff --git a/themes/pmahomme/img/b_dbstatistics.png b/themes/pmahomme/img/b_dbstatistics.png deleted file mode 100644 index 9051fbc609..0000000000 Binary files a/themes/pmahomme/img/b_dbstatistics.png and /dev/null differ diff --git a/themes/pmahomme/img/b_deltbl.png b/themes/pmahomme/img/b_deltbl.png deleted file mode 100644 index b85916d921..0000000000 Binary files a/themes/pmahomme/img/b_deltbl.png and /dev/null differ diff --git a/themes/pmahomme/img/b_docs.png b/themes/pmahomme/img/b_docs.png deleted file mode 100644 index 5c870176d4..0000000000 Binary files a/themes/pmahomme/img/b_docs.png and /dev/null differ diff --git a/themes/pmahomme/img/b_docsql.png b/themes/pmahomme/img/b_docsql.png deleted file mode 100644 index 0568a45957..0000000000 Binary files a/themes/pmahomme/img/b_docsql.png and /dev/null differ diff --git a/themes/pmahomme/img/b_drop.png b/themes/pmahomme/img/b_drop.png deleted file mode 100644 index 08f249365a..0000000000 Binary files a/themes/pmahomme/img/b_drop.png and /dev/null differ diff --git a/themes/pmahomme/img/b_edit.png b/themes/pmahomme/img/b_edit.png deleted file mode 100644 index 1db9ce1916..0000000000 Binary files a/themes/pmahomme/img/b_edit.png and /dev/null differ diff --git a/themes/pmahomme/img/b_empty.png b/themes/pmahomme/img/b_empty.png deleted file mode 100644 index afe22ba99e..0000000000 Binary files a/themes/pmahomme/img/b_empty.png and /dev/null differ diff --git a/themes/pmahomme/img/b_engine.png b/themes/pmahomme/img/b_engine.png deleted file mode 100644 index 7c0ab2b4c6..0000000000 Binary files a/themes/pmahomme/img/b_engine.png and /dev/null differ diff --git a/themes/pmahomme/img/b_event_add.png b/themes/pmahomme/img/b_event_add.png deleted file mode 100644 index 6940d74beb..0000000000 Binary files a/themes/pmahomme/img/b_event_add.png and /dev/null differ diff --git a/themes/pmahomme/img/b_events.png b/themes/pmahomme/img/b_events.png deleted file mode 100644 index 4564284e39..0000000000 Binary files a/themes/pmahomme/img/b_events.png and /dev/null differ diff --git a/themes/pmahomme/img/b_export.png b/themes/pmahomme/img/b_export.png deleted file mode 100644 index ff5925efd4..0000000000 Binary files a/themes/pmahomme/img/b_export.png and /dev/null differ diff --git a/themes/pmahomme/img/b_firstpage.png b/themes/pmahomme/img/b_firstpage.png deleted file mode 100644 index 15d1584bdb..0000000000 Binary files a/themes/pmahomme/img/b_firstpage.png and /dev/null differ diff --git a/themes/pmahomme/img/b_ftext.png b/themes/pmahomme/img/b_ftext.png deleted file mode 100644 index 795b6caab0..0000000000 Binary files a/themes/pmahomme/img/b_ftext.png and /dev/null differ diff --git a/themes/pmahomme/img/b_globe.gif b/themes/pmahomme/img/b_globe.gif deleted file mode 100644 index ef03dcf061..0000000000 Binary files a/themes/pmahomme/img/b_globe.gif and /dev/null differ diff --git a/themes/pmahomme/img/b_help.png b/themes/pmahomme/img/b_help.png deleted file mode 100644 index 54c4552b1b..0000000000 Binary files a/themes/pmahomme/img/b_help.png and /dev/null differ diff --git a/themes/pmahomme/img/b_home.png b/themes/pmahomme/img/b_home.png deleted file mode 100644 index fed62219f5..0000000000 Binary files a/themes/pmahomme/img/b_home.png and /dev/null differ diff --git a/themes/pmahomme/img/b_import.png b/themes/pmahomme/img/b_import.png deleted file mode 100644 index 54c69691ed..0000000000 Binary files a/themes/pmahomme/img/b_import.png and /dev/null differ diff --git a/themes/pmahomme/img/b_index.png b/themes/pmahomme/img/b_index.png deleted file mode 100644 index 612612b5e4..0000000000 Binary files a/themes/pmahomme/img/b_index.png and /dev/null differ diff --git a/themes/pmahomme/img/b_inline_edit.png b/themes/pmahomme/img/b_inline_edit.png deleted file mode 100644 index b93e77600d..0000000000 Binary files a/themes/pmahomme/img/b_inline_edit.png and /dev/null differ diff --git a/themes/pmahomme/img/b_insrow.png b/themes/pmahomme/img/b_insrow.png deleted file mode 100644 index 0191cfbd2a..0000000000 Binary files a/themes/pmahomme/img/b_insrow.png and /dev/null differ diff --git a/themes/pmahomme/img/b_lastpage.png b/themes/pmahomme/img/b_lastpage.png deleted file mode 100644 index 4a2f9d4e4a..0000000000 Binary files a/themes/pmahomme/img/b_lastpage.png and /dev/null differ diff --git a/themes/pmahomme/img/b_minus.png b/themes/pmahomme/img/b_minus.png deleted file mode 100644 index b47ce55f68..0000000000 Binary files a/themes/pmahomme/img/b_minus.png and /dev/null differ diff --git a/themes/pmahomme/img/b_more.png b/themes/pmahomme/img/b_more.png deleted file mode 100644 index e7383183bb..0000000000 Binary files a/themes/pmahomme/img/b_more.png and /dev/null differ diff --git a/themes/pmahomme/img/b_newdb.png b/themes/pmahomme/img/b_newdb.png deleted file mode 100644 index 802bd6cde0..0000000000 Binary files a/themes/pmahomme/img/b_newdb.png and /dev/null differ diff --git a/themes/pmahomme/img/b_newtbl.png b/themes/pmahomme/img/b_newtbl.png deleted file mode 100644 index b43f694f13..0000000000 Binary files a/themes/pmahomme/img/b_newtbl.png and /dev/null differ diff --git a/themes/pmahomme/img/b_nextpage.png b/themes/pmahomme/img/b_nextpage.png deleted file mode 100644 index e252606d3e..0000000000 Binary files a/themes/pmahomme/img/b_nextpage.png and /dev/null differ diff --git a/themes/pmahomme/img/b_pdfdoc.png b/themes/pmahomme/img/b_pdfdoc.png deleted file mode 100644 index 8f8095e46f..0000000000 Binary files a/themes/pmahomme/img/b_pdfdoc.png and /dev/null differ diff --git a/themes/pmahomme/img/b_plus.png b/themes/pmahomme/img/b_plus.png deleted file mode 100644 index 9ab4a89664..0000000000 Binary files a/themes/pmahomme/img/b_plus.png and /dev/null differ diff --git a/themes/pmahomme/img/b_prevpage.png b/themes/pmahomme/img/b_prevpage.png deleted file mode 100644 index 18f9cc1094..0000000000 Binary files a/themes/pmahomme/img/b_prevpage.png and /dev/null differ diff --git a/themes/pmahomme/img/b_primary.png b/themes/pmahomme/img/b_primary.png deleted file mode 100644 index 4ec1a92814..0000000000 Binary files a/themes/pmahomme/img/b_primary.png and /dev/null differ diff --git a/themes/pmahomme/img/b_print.png b/themes/pmahomme/img/b_print.png deleted file mode 100644 index a350d18715..0000000000 Binary files a/themes/pmahomme/img/b_print.png and /dev/null differ diff --git a/themes/pmahomme/img/b_props.png b/themes/pmahomme/img/b_props.png deleted file mode 100644 index 28b8505c0e..0000000000 Binary files a/themes/pmahomme/img/b_props.png and /dev/null differ diff --git a/themes/pmahomme/img/b_relations.png b/themes/pmahomme/img/b_relations.png deleted file mode 100644 index 675a4159a6..0000000000 Binary files a/themes/pmahomme/img/b_relations.png and /dev/null differ diff --git a/themes/pmahomme/img/b_routine_add.png b/themes/pmahomme/img/b_routine_add.png deleted file mode 100644 index 95b971948e..0000000000 Binary files a/themes/pmahomme/img/b_routine_add.png and /dev/null differ diff --git a/themes/pmahomme/img/b_routines.png b/themes/pmahomme/img/b_routines.png deleted file mode 100644 index 428b0db73c..0000000000 Binary files a/themes/pmahomme/img/b_routines.png and /dev/null differ diff --git a/themes/pmahomme/img/b_save.png b/themes/pmahomme/img/b_save.png deleted file mode 100644 index 99d532e8b1..0000000000 Binary files a/themes/pmahomme/img/b_save.png and /dev/null differ diff --git a/themes/pmahomme/img/b_sbrowse.png b/themes/pmahomme/img/b_sbrowse.png deleted file mode 100644 index abcd93689a..0000000000 Binary files a/themes/pmahomme/img/b_sbrowse.png and /dev/null differ diff --git a/themes/pmahomme/img/b_search.png b/themes/pmahomme/img/b_search.png deleted file mode 100644 index cf3d97f75e..0000000000 Binary files a/themes/pmahomme/img/b_search.png and /dev/null differ diff --git a/themes/pmahomme/img/b_selboard.png b/themes/pmahomme/img/b_selboard.png deleted file mode 100644 index 61a8556c40..0000000000 Binary files a/themes/pmahomme/img/b_selboard.png and /dev/null differ diff --git a/themes/pmahomme/img/b_select.png b/themes/pmahomme/img/b_select.png deleted file mode 100644 index af4fe07477..0000000000 Binary files a/themes/pmahomme/img/b_select.png and /dev/null differ diff --git a/themes/pmahomme/img/b_snewtbl.png b/themes/pmahomme/img/b_snewtbl.png deleted file mode 100644 index 6332fefea4..0000000000 Binary files a/themes/pmahomme/img/b_snewtbl.png and /dev/null differ diff --git a/themes/pmahomme/img/b_spatial.png b/themes/pmahomme/img/b_spatial.png deleted file mode 100644 index 32b30fa6d5..0000000000 Binary files a/themes/pmahomme/img/b_spatial.png and /dev/null differ diff --git a/themes/pmahomme/img/b_sql.png b/themes/pmahomme/img/b_sql.png deleted file mode 100644 index 0f9ed4d483..0000000000 Binary files a/themes/pmahomme/img/b_sql.png and /dev/null differ diff --git a/themes/pmahomme/img/b_sqldoc.png b/themes/pmahomme/img/b_sqldoc.png deleted file mode 100644 index b02f18595e..0000000000 Binary files a/themes/pmahomme/img/b_sqldoc.png and /dev/null differ diff --git a/themes/pmahomme/img/b_sqlhelp.png b/themes/pmahomme/img/b_sqlhelp.png deleted file mode 100644 index bddba1f98c..0000000000 Binary files a/themes/pmahomme/img/b_sqlhelp.png and /dev/null differ diff --git a/themes/pmahomme/img/b_tblanalyse.png b/themes/pmahomme/img/b_tblanalyse.png deleted file mode 100644 index 92dffe37e6..0000000000 Binary files a/themes/pmahomme/img/b_tblanalyse.png and /dev/null differ diff --git a/themes/pmahomme/img/b_tblexport.png b/themes/pmahomme/img/b_tblexport.png deleted file mode 100644 index ff5925efd4..0000000000 Binary files a/themes/pmahomme/img/b_tblexport.png and /dev/null differ diff --git a/themes/pmahomme/img/b_tblimport.png b/themes/pmahomme/img/b_tblimport.png deleted file mode 100644 index 54c69691ed..0000000000 Binary files a/themes/pmahomme/img/b_tblimport.png and /dev/null differ diff --git a/themes/pmahomme/img/b_tblops.png b/themes/pmahomme/img/b_tblops.png deleted file mode 100644 index 5c8213fef5..0000000000 Binary files a/themes/pmahomme/img/b_tblops.png and /dev/null differ diff --git a/themes/pmahomme/img/b_tbloptimize.png b/themes/pmahomme/img/b_tbloptimize.png deleted file mode 100644 index 937fa21f71..0000000000 Binary files a/themes/pmahomme/img/b_tbloptimize.png and /dev/null differ diff --git a/themes/pmahomme/img/b_tipp.png b/themes/pmahomme/img/b_tipp.png deleted file mode 100644 index d22fde8ba4..0000000000 Binary files a/themes/pmahomme/img/b_tipp.png and /dev/null differ diff --git a/themes/pmahomme/img/b_trigger_add.png b/themes/pmahomme/img/b_trigger_add.png deleted file mode 100644 index 5b91c5093d..0000000000 Binary files a/themes/pmahomme/img/b_trigger_add.png and /dev/null differ diff --git a/themes/pmahomme/img/b_triggers.png b/themes/pmahomme/img/b_triggers.png deleted file mode 100644 index e9025119c1..0000000000 Binary files a/themes/pmahomme/img/b_triggers.png and /dev/null differ diff --git a/themes/pmahomme/img/b_unique.png b/themes/pmahomme/img/b_unique.png deleted file mode 100644 index 75deed888d..0000000000 Binary files a/themes/pmahomme/img/b_unique.png and /dev/null differ diff --git a/themes/pmahomme/img/b_usradd.png b/themes/pmahomme/img/b_usradd.png deleted file mode 100644 index deae99bcff..0000000000 Binary files a/themes/pmahomme/img/b_usradd.png and /dev/null differ diff --git a/themes/pmahomme/img/b_usrcheck.png b/themes/pmahomme/img/b_usrcheck.png deleted file mode 100644 index 0468cf08f3..0000000000 Binary files a/themes/pmahomme/img/b_usrcheck.png and /dev/null differ diff --git a/themes/pmahomme/img/b_usrdrop.png b/themes/pmahomme/img/b_usrdrop.png deleted file mode 100644 index acbb5630e5..0000000000 Binary files a/themes/pmahomme/img/b_usrdrop.png and /dev/null differ diff --git a/themes/pmahomme/img/b_usredit.png b/themes/pmahomme/img/b_usredit.png deleted file mode 100644 index c1974cda74..0000000000 Binary files a/themes/pmahomme/img/b_usredit.png and /dev/null differ diff --git a/themes/pmahomme/img/b_usrlist.png b/themes/pmahomme/img/b_usrlist.png deleted file mode 100644 index 7fb4e1f1e1..0000000000 Binary files a/themes/pmahomme/img/b_usrlist.png and /dev/null differ diff --git a/themes/pmahomme/img/b_view.png b/themes/pmahomme/img/b_view.png deleted file mode 100644 index f678d06dc8..0000000000 Binary files a/themes/pmahomme/img/b_view.png and /dev/null differ diff --git a/themes/pmahomme/img/b_views.png b/themes/pmahomme/img/b_views.png deleted file mode 100644 index bc219bc6a0..0000000000 Binary files a/themes/pmahomme/img/b_views.png and /dev/null differ diff --git a/themes/pmahomme/img/bd_browse.png b/themes/pmahomme/img/bd_browse.png deleted file mode 100644 index 21878cb64b..0000000000 Binary files a/themes/pmahomme/img/bd_browse.png and /dev/null differ diff --git a/themes/pmahomme/img/bd_deltbl.png b/themes/pmahomme/img/bd_deltbl.png deleted file mode 100644 index 9af8a73a80..0000000000 Binary files a/themes/pmahomme/img/bd_deltbl.png and /dev/null differ diff --git a/themes/pmahomme/img/bd_drop.png b/themes/pmahomme/img/bd_drop.png deleted file mode 100644 index b886a24f54..0000000000 Binary files a/themes/pmahomme/img/bd_drop.png and /dev/null differ diff --git a/themes/pmahomme/img/bd_edit.png b/themes/pmahomme/img/bd_edit.png deleted file mode 100644 index 6aa2a18b7a..0000000000 Binary files a/themes/pmahomme/img/bd_edit.png and /dev/null differ diff --git a/themes/pmahomme/img/bd_empty.png b/themes/pmahomme/img/bd_empty.png deleted file mode 100644 index d2c128eb8c..0000000000 Binary files a/themes/pmahomme/img/bd_empty.png and /dev/null differ diff --git a/themes/pmahomme/img/bd_export.png b/themes/pmahomme/img/bd_export.png deleted file mode 100644 index 841c758df5..0000000000 Binary files a/themes/pmahomme/img/bd_export.png and /dev/null differ diff --git a/themes/pmahomme/img/bd_firstpage.png b/themes/pmahomme/img/bd_firstpage.png deleted file mode 100644 index ff0ff282cf..0000000000 Binary files a/themes/pmahomme/img/bd_firstpage.png and /dev/null differ diff --git a/themes/pmahomme/img/bd_ftext.png b/themes/pmahomme/img/bd_ftext.png deleted file mode 100644 index 9e2fc19271..0000000000 Binary files a/themes/pmahomme/img/bd_ftext.png and /dev/null differ diff --git a/themes/pmahomme/img/bd_index.png b/themes/pmahomme/img/bd_index.png deleted file mode 100644 index c14c0adfb8..0000000000 Binary files a/themes/pmahomme/img/bd_index.png and /dev/null differ diff --git a/themes/pmahomme/img/bd_insrow.png b/themes/pmahomme/img/bd_insrow.png deleted file mode 100644 index 80196a840e..0000000000 Binary files a/themes/pmahomme/img/bd_insrow.png and /dev/null differ diff --git a/themes/pmahomme/img/bd_lastpage.png b/themes/pmahomme/img/bd_lastpage.png deleted file mode 100644 index 53c0a773a3..0000000000 Binary files a/themes/pmahomme/img/bd_lastpage.png and /dev/null differ diff --git a/themes/pmahomme/img/bd_primary.png b/themes/pmahomme/img/bd_primary.png deleted file mode 100644 index 74772d524f..0000000000 Binary files a/themes/pmahomme/img/bd_primary.png and /dev/null differ diff --git a/themes/pmahomme/img/bd_select.png b/themes/pmahomme/img/bd_select.png deleted file mode 100644 index 1da3056624..0000000000 Binary files a/themes/pmahomme/img/bd_select.png and /dev/null differ diff --git a/themes/pmahomme/img/bd_spatial.png b/themes/pmahomme/img/bd_spatial.png deleted file mode 100644 index 40892d0e6e..0000000000 Binary files a/themes/pmahomme/img/bd_spatial.png and /dev/null differ diff --git a/themes/pmahomme/img/bd_unique.png b/themes/pmahomme/img/bd_unique.png deleted file mode 100644 index fc42e2bf77..0000000000 Binary files a/themes/pmahomme/img/bd_unique.png and /dev/null differ diff --git a/themes/pmahomme/img/col_drop.png b/themes/pmahomme/img/col_drop.png deleted file mode 100644 index e7383183bb..0000000000 Binary files a/themes/pmahomme/img/col_drop.png and /dev/null differ diff --git a/themes/pmahomme/img/database.png b/themes/pmahomme/img/database.png deleted file mode 100644 index 3d09261a26..0000000000 Binary files a/themes/pmahomme/img/database.png and /dev/null differ diff --git a/themes/pmahomme/img/error.ico b/themes/pmahomme/img/error.ico deleted file mode 100644 index 0b6a8a9975..0000000000 Binary files a/themes/pmahomme/img/error.ico and /dev/null differ diff --git a/themes/pmahomme/img/eye.png b/themes/pmahomme/img/eye.png deleted file mode 100644 index 564a1a9714..0000000000 Binary files a/themes/pmahomme/img/eye.png and /dev/null differ diff --git a/themes/pmahomme/img/eye_grey.png b/themes/pmahomme/img/eye_grey.png deleted file mode 100644 index 8c7baaf901..0000000000 Binary files a/themes/pmahomme/img/eye_grey.png and /dev/null differ diff --git a/themes/pmahomme/img/pause.png b/themes/pmahomme/img/pause.png deleted file mode 100644 index a131617599..0000000000 Binary files a/themes/pmahomme/img/pause.png and /dev/null differ diff --git a/themes/pmahomme/img/php_sym.png b/themes/pmahomme/img/php_sym.png deleted file mode 100644 index 7573748501..0000000000 Binary files a/themes/pmahomme/img/php_sym.png and /dev/null differ diff --git a/themes/pmahomme/img/play.png b/themes/pmahomme/img/play.png deleted file mode 100644 index e252606d3e..0000000000 Binary files a/themes/pmahomme/img/play.png and /dev/null differ diff --git a/themes/pmahomme/img/s_asc.png b/themes/pmahomme/img/s_asc.png deleted file mode 100644 index 24df0f4212..0000000000 Binary files a/themes/pmahomme/img/s_asc.png and /dev/null differ diff --git a/themes/pmahomme/img/s_asci.png b/themes/pmahomme/img/s_asci.png deleted file mode 100644 index 2fbdd6920a..0000000000 Binary files a/themes/pmahomme/img/s_asci.png and /dev/null differ diff --git a/themes/pmahomme/img/s_attention.png b/themes/pmahomme/img/s_attention.png deleted file mode 100644 index 628cf2dae3..0000000000 Binary files a/themes/pmahomme/img/s_attention.png and /dev/null differ diff --git a/themes/pmahomme/img/s_cancel.png b/themes/pmahomme/img/s_cancel.png deleted file mode 100644 index c149c2bc01..0000000000 Binary files a/themes/pmahomme/img/s_cancel.png and /dev/null differ diff --git a/themes/pmahomme/img/s_cancel2.png b/themes/pmahomme/img/s_cancel2.png deleted file mode 100644 index bd6271b246..0000000000 Binary files a/themes/pmahomme/img/s_cancel2.png and /dev/null differ diff --git a/themes/pmahomme/img/s_db.png b/themes/pmahomme/img/s_db.png deleted file mode 100644 index 3d09261a26..0000000000 Binary files a/themes/pmahomme/img/s_db.png and /dev/null differ diff --git a/themes/pmahomme/img/s_desc.png b/themes/pmahomme/img/s_desc.png deleted file mode 100644 index 9b23c06d7b..0000000000 Binary files a/themes/pmahomme/img/s_desc.png and /dev/null differ diff --git a/themes/pmahomme/img/s_error.png b/themes/pmahomme/img/s_error.png deleted file mode 100644 index c37bd062e6..0000000000 Binary files a/themes/pmahomme/img/s_error.png and /dev/null differ diff --git a/themes/pmahomme/img/s_host.png b/themes/pmahomme/img/s_host.png deleted file mode 100644 index 9bc37dce36..0000000000 Binary files a/themes/pmahomme/img/s_host.png and /dev/null differ diff --git a/themes/pmahomme/img/s_info.png b/themes/pmahomme/img/s_info.png deleted file mode 100644 index 12cd1aef90..0000000000 Binary files a/themes/pmahomme/img/s_info.png and /dev/null differ diff --git a/themes/pmahomme/img/s_lang.png b/themes/pmahomme/img/s_lang.png deleted file mode 100644 index e54ebebafb..0000000000 Binary files a/themes/pmahomme/img/s_lang.png and /dev/null differ diff --git a/themes/pmahomme/img/s_loggoff.png b/themes/pmahomme/img/s_loggoff.png deleted file mode 100644 index 2541d2bcbc..0000000000 Binary files a/themes/pmahomme/img/s_loggoff.png and /dev/null differ diff --git a/themes/pmahomme/img/s_notice.png b/themes/pmahomme/img/s_notice.png deleted file mode 100644 index 628cf2dae3..0000000000 Binary files a/themes/pmahomme/img/s_notice.png and /dev/null differ diff --git a/themes/pmahomme/img/s_okay.png b/themes/pmahomme/img/s_okay.png deleted file mode 100644 index 89c8129a49..0000000000 Binary files a/themes/pmahomme/img/s_okay.png and /dev/null differ diff --git a/themes/pmahomme/img/s_passwd.png b/themes/pmahomme/img/s_passwd.png deleted file mode 100644 index c924fe0d57..0000000000 Binary files a/themes/pmahomme/img/s_passwd.png and /dev/null differ diff --git a/themes/pmahomme/img/s_reload.png b/themes/pmahomme/img/s_reload.png deleted file mode 100644 index 46c75aa859..0000000000 Binary files a/themes/pmahomme/img/s_reload.png and /dev/null differ diff --git a/themes/pmahomme/img/s_replication.png b/themes/pmahomme/img/s_replication.png deleted file mode 100644 index fec9479909..0000000000 Binary files a/themes/pmahomme/img/s_replication.png and /dev/null differ diff --git a/themes/pmahomme/img/s_rights.png b/themes/pmahomme/img/s_rights.png deleted file mode 100644 index c02f315d20..0000000000 Binary files a/themes/pmahomme/img/s_rights.png and /dev/null differ diff --git a/themes/pmahomme/img/s_sortable.png b/themes/pmahomme/img/s_sortable.png deleted file mode 100644 index 0a341429eb..0000000000 Binary files a/themes/pmahomme/img/s_sortable.png and /dev/null differ diff --git a/themes/pmahomme/img/s_status.png b/themes/pmahomme/img/s_status.png deleted file mode 100644 index 1128d3f338..0000000000 Binary files a/themes/pmahomme/img/s_status.png and /dev/null differ diff --git a/themes/pmahomme/img/s_success.png b/themes/pmahomme/img/s_success.png deleted file mode 100644 index a9925a06ab..0000000000 Binary files a/themes/pmahomme/img/s_success.png and /dev/null differ diff --git a/themes/pmahomme/img/s_sync.png b/themes/pmahomme/img/s_sync.png deleted file mode 100644 index 49618bed2b..0000000000 Binary files a/themes/pmahomme/img/s_sync.png and /dev/null differ diff --git a/themes/pmahomme/img/s_tbl.png b/themes/pmahomme/img/s_tbl.png deleted file mode 100644 index cfc2702acd..0000000000 Binary files a/themes/pmahomme/img/s_tbl.png and /dev/null differ diff --git a/themes/pmahomme/img/s_theme.png b/themes/pmahomme/img/s_theme.png deleted file mode 100644 index 73c5b3f243..0000000000 Binary files a/themes/pmahomme/img/s_theme.png and /dev/null differ diff --git a/themes/pmahomme/img/s_vars.png b/themes/pmahomme/img/s_vars.png deleted file mode 100644 index 0c76bd1297..0000000000 Binary files a/themes/pmahomme/img/s_vars.png and /dev/null differ diff --git a/themes/pmahomme/img/s_views.png b/themes/pmahomme/img/s_views.png deleted file mode 100644 index bc219bc6a0..0000000000 Binary files a/themes/pmahomme/img/s_views.png and /dev/null differ diff --git a/themes/pmahomme/img/window-new.png b/themes/pmahomme/img/window-new.png deleted file mode 100644 index 0e12ef954c..0000000000 Binary files a/themes/pmahomme/img/window-new.png and /dev/null differ