Some style fixes mostly for original theme
This commit is contained in:
parent
9db1342b2a
commit
21246070fa
@ -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
|
||||
|
||||
@ -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;
|
||||
|
||||
BIN
themes/original/img/cleardot.gif
Normal file
BIN
themes/original/img/cleardot.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 43 B |
@ -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);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user