Damn, IE doesn't support CSS attribute selectors
authorsoranzo <soranzo>
Wed, 7 Jul 2004 14:48:19 +0000 (14:48 +0000)
committersoranzo <soranzo>
Wed, 7 Jul 2004 14:48:19 +0000 (14:48 +0000)
indexes.php
themes/default/global.css

index 0a1e679a1aa052569f0f97916338d2b2711758eb..00fd2fdc1355c776a3a5b0e721e85919e295e336 100644 (file)
@@ -3,7 +3,7 @@
        /**
         * List indexes on a table
         *
-        * $Id: indexes.php,v 1.26 2004/07/07 02:59:57 chriskl Exp $
+        * $Id: indexes.php,v 1.27 2004/07/07 14:48:19 soranzo Exp $
         */
 
        // Include application functions
 
                echo "<table> \n";
                echo "<tr>";
-               echo "<th class=\"data required\" scope=\"row\">{$lang['strindextype']}</th>";
+               echo "<th class=\"data left required\" scope=\"row\">{$lang['strindextype']}</th>";
                echo "<td class=\"data1\"><select name=\"formIndexType\">";
                foreach ($data->typIndexes as $v) {
                        echo "<option value=\"", htmlspecialchars($v), "\"",
                echo "</select></td></tr>\n";                           
                echo "</tr>";
                echo "<tr>";
-               echo "<th class=\"data\" scope=\"row\">{$lang['strunique']}</th>";
+               echo "<th class=\"data left\" scope=\"row\">{$lang['strunique']}</th>";
                echo "<td class=\"data1\"><input type=\"checkbox\" name=\"formUnique\"", (isset($_POST['formUnique']) ? 'checked="checked"' : ''), " /></td>";
                echo "</tr>";
                if ($data->hasPartialIndexes()) {
                        echo "<tr>";
-                       echo "<th class=\"data\" scope=\"row\">{$lang['strwhere']}</th>";
+                       echo "<th class=\"data left\" scope=\"row\">{$lang['strwhere']}</th>";
                        echo "<td class=\"data1\">(<input name=\"formWhere\" size=\"32\" maxlength=\"{$data->_maxNameLen}\" value=\"", 
                                htmlspecialchars($_POST['formWhere']), "\" />)</td>";
                        echo "</tr>";
index 4c2cec55bdefe3bb94d785188cc5b4e431c20e8d..4e73a84281ce55f6bd7a0194bb7bb6671385e0ca 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Default style sheet
  *
- * $Id: global.css,v 1.19 2004/07/07 03:00:08 chriskl Exp $
+ * $Id: global.css,v 1.20 2004/07/07 14:48:19 soranzo Exp $
  */
 
 /** ELEMENTS */
@@ -116,7 +116,7 @@ th.data a:active, th.data a:link, th.data a:visited, th.data a:hover
        font-weight: bold;
 }
 
-.left, th[scope="row"]
+.left
 {
        text-align: left;
 }