diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php
index 34d6967ddc..efd9a59e38 100644
--- a/libraries/display_tbl.lib.php
+++ b/libraries/display_tbl.lib.php
@@ -293,8 +293,9 @@ function PMA_displayTableNavigation($pos_next, $pos_prev, $sql_query, $id_for_di
?>
-
- $param2 = ' ' . "\n"
- . ' ';
- echo ' ' . sprintf(__('in %s mode and repeat headers after %s cells'), "\n" . $param1, "\n" . $param2) . "\n";
- ?>
-
-
+}
+
+.navigation td {
+ margin: 0;
+ padding: 0;
+ vertical-align: middle;
+ white-space: nowrap;
+}
+
+.navigation_separator {
+ color: #999;
+ display: inline-block;
+ font-size: 1.5em;
+ text-align: center;
+ height: 1.4em;
+ width: 1.2em;
+ text-shadow: 1px 0 #FFF;
+}
+
+.navigation input[type=submit] {
+ background: none;
+ border: 0;
+ margin: 0;
+ padding: 0.8em 0.5em;
+ min-width: 2.5em;
+
+ border-radius: 0;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+}
+
+.navigation input[type=submit]:hover {
+ color: white;
+ cursor: pointer;
+ text-shadow: none;
+
+ background-image: url(./themes/svg_gradient.php?from=333333&to=555555);
+ background-size: 100% 100%;
+ background: -webkit-gradient(linear, left top, left bottom, from(#333333), to(#555555));
+ background: -moz-linear-gradient(top, #333333, #555555);
+ background: -o-linear-gradient(top, #333333, #555555);
+}
+
+.navigation select {
+ margin: 0 0.8em;
+}