Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-03-27 08:05:16 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-03-27 08:05:16 +0300
commitd32f555a56e3f127c379192bd05763d4d3ee9cf8 (patch)
tree86c18e519617c9f028103a3ffcf517dd2466ee60 /themes
parentf74969651d9a13fdec93001b40df05edd3f8f93e (diff)
bug Missing sort icons in monitor
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'themes')
-rw-r--r--themes/original/css/common.css.php6
-rw-r--r--themes/pmahomme/css/common.css.php6
-rw-r--r--themes/sprites.css.php23
3 files changed, 0 insertions, 35 deletions
diff --git a/themes/original/css/common.css.php b/themes/original/css/common.css.php
index c15d5a0b59..082d5db6ec 100644
--- a/themes/original/css/common.css.php
+++ b/themes/original/css/common.css.php
@@ -969,12 +969,6 @@ h3#serverstatusqueries span {
display:inline;
}
-img.sortableIcon {
- float:right;
- background-repeat:no-repeat;
- margin:0;
-}
-
.buttonlinks {
float: <?php echo $right; ?>;
white-space: nowrap;
diff --git a/themes/pmahomme/css/common.css.php b/themes/pmahomme/css/common.css.php
index 2783fe2325..35652ae8e4 100644
--- a/themes/pmahomme/css/common.css.php
+++ b/themes/pmahomme/css/common.css.php
@@ -1300,12 +1300,6 @@ h3#serverstatusqueries span {
display: inline;
}
-img.sortableIcon {
- float: <?php echo $right; ?>;
- background-repeat: no-repeat;
- margin: 0;
-}
-
.buttonlinks {
float: <?php echo $right; ?>;
white-space: nowrap;
diff --git a/themes/sprites.css.php b/themes/sprites.css.php
index a6ddcaae57..58a33f7edf 100644
--- a/themes/sprites.css.php
+++ b/themes/sprites.css.php
@@ -56,28 +56,5 @@ if (is_readable($_SESSION['PMA_Theme']->getPath() . '/sprites.lib.php')) {
$height
);
}
- // Here we map some of the classes that we
- // defined above to other CSS selectors.
- // The indexes of the array correspond to
- // already defined classes and the values
- // are the selectors that we want to map to.
- $elements = array(
- 's_sortable' => 'img.sortableIcon',
- 's_asc' => 'th.headerSortUp img.sortableIcon',
- 's_desc' => 'th.headerSortDown img.sortableIcon'
- );
- $template = "%s { background-position: 0 -%upx; "
- . "height: %upx; width: %upx; }\n";
- foreach ($elements as $key => $value) {
- if (isset($sprites[$key])) { // If the CSS class has been defined
- printf(
- $template,
- $value,
- ($sprites[$key]['position'] * 16),
- $sprites[$key]['height'],
- $sprites[$key]['width']
- );
- }
- }
}
?>