Some style fixes mostly for original theme

This commit is contained in:
Tyron Madlener 2011-06-13 16:55:49 +02:00
parent 9db1342b2a
commit 21246070fa
4 changed files with 22 additions and 4 deletions

View File

@ -555,7 +555,7 @@ function printQueryStatistics() {
?>
<tr class="noclick <?php echo $odd_row ? 'odd' : 'even'; ?>">
<th class="name"><?php echo htmlspecialchars($name); ?></th>
<td class="value"><?php echo PMA_formatNumber($value, 5, 0); ?></td>
<td class="value"><?php echo PMA_formatNumber($value, 5, 0, true); ?></td>
<td class="value"><?php echo
PMA_formatNumber($value * $hour_factor, 4, 1, true); ?></td>
<td class="value"><?php echo

View File

@ -953,6 +953,27 @@ div#tablestatistics table {
/* serverstatus */
img.sortableIcon {
width:16px;
height:16px;
float:right;
background-repeat:no-repeat;
}
table#serverstatusqueriesdetails th img.sortableIcon, table#serverstatusvariables th img.sortableIcon {
background-image:url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_sortable.png);
}
table#serverstatusqueriesdetails th.headerSortUp img.sortableIcon, table#serverstatusvariables th.headerSortUp img.sortableIcon {
background-image:url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asc.png);
}
table#serverstatusqueriesdetails th.headerSortDown img.sortableIcon, table#serverstatusvariables th.headerSortDown img.sortableIcon {
background-image:url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_desc.png);
}
.statuslinks {
float: <?php echo $right; ?>;
}
/* Also used for the variables page */
fieldset#tableFilter {
margin-bottom:1em;

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 B

View File

@ -1166,9 +1166,6 @@ img.sortableIcon {
background-repeat:no-repeat;
}
table#serverstatusqueriesdetails th img.sortableIcon, table#serverstatusvariables th img.sortableIcon {
background-image:url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_sortable.png);
}
table#serverstatusqueriesdetails th.headerSortUp img.sortableIcon, table#serverstatusvariables th.headerSortUp img.sortableIcon {
background-image:url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asc.png);
}