From 4b69642dba67030430ff56ca33dcd85a8de320da Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 25 Mar 2005 11:04:21 +0000 Subject: [PATCH] Removed CSS 3 hack --- ChangeLog | 4 ++++ db_details_structure.php | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6cae803ff..b27c6cc3d 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ phpMyAdmin - Changelog $Id$ $Source$ +2005-03-25 Alexander M. Turek + * db_details_structure.php: Let's prefer separate icons over CSS 3 hacks + for marking a functionality as unavailable. + 2005-03-24 Alexander M. Turek * libraries/dbi/*.dbi.lib.php, libraries/common.lib.php, libraries/database_interface.lib.php: diff --git a/db_details_structure.php b/db_details_structure.php index 8648ecebe..6e93d668b 100644 --- a/db_details_structure.php +++ b/db_details_structure.php @@ -101,11 +101,11 @@ if ($cfg['PropertiesIconic'] == true) { } $titles['Browse'] = $iconic_spacer . '' . $strBrowse . ''; - $titles['Search'] = $iconic_spacer . '' . $strSearch . ''; $titles['NoBrowse'] = $iconic_spacer . '' . $strBrowse . ''; + $titles['Search'] = $iconic_spacer . '' . $strSearch . ''; $titles['NoSearch'] = $iconic_spacer . '' . $strSearch . ''; $titles['Insert'] = $iconic_spacer . '' . $strInsert . ''; - $titles['NoInsert'] = $iconic_spacer . '' . $strInsert . ''; //TODO: we need a proper disabled icon here. + $titles['NoInsert'] = $iconic_spacer . '' . $strInsert . ''; $titles['Structure'] = $iconic_spacer . '' . $strStructure . ''; $titles['Drop'] = $iconic_spacer . '' . $strDrop . ''; $titles['NoDrop'] = $iconic_spacer . '' . $strDrop . '';