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:
authorNisarg Jhaveri <nisargjhaveri@gmail.com>2015-06-19 17:49:57 +0300
committerNisarg Jhaveri <nisargjhaveri@gmail.com>2015-06-19 17:49:57 +0300
commit2a08016eab6622ba2fd61f50a14fb75c9b9ec813 (patch)
tree2bb1954e7e6d001e190d61d686590be00a2bdb0d /themes
parent0676cd2c3067fdd60b8cf014c0dc1aca8dda17bb (diff)
Ability to sort queries in console SQL debugging
Signed-off-by: Nisarg Jhaveri <nisargjhaveri@gmail.com>
Diffstat (limited to 'themes')
-rw-r--r--themes/original/css/common.css.php14
-rw-r--r--themes/pmahomme/css/common.css.php14
2 files changed, 22 insertions, 6 deletions
diff --git a/themes/original/css/common.css.php b/themes/original/css/common.css.php
index 4fb44873bf..c49416a595 100644
--- a/themes/original/css/common.css.php
+++ b/themes/original/css/common.css.php
@@ -2701,6 +2701,7 @@ table.show_create td {
#pma_console .message span.text,
#pma_console .message span.action,
#pma_console .toolbar .button,
+#pma_console .toolbar .text,
#pma_console .switch_button {
padding: 0 3px;
display: inline-block;
@@ -2712,13 +2713,19 @@ table.show_create td {
}
#pma_console .message span.action:hover,
#pma_console .toolbar .button:hover,
-#pma_console .switch_button:hover {
+#pma_console .switch_button:hover,
+#pma_console .toolbar .button.active {
background: #ddd;
}
-#pma_console .toolbar .button {
+#pma_console .toolbar .text {
+ font-weight: bold;
+}
+#pma_console .toolbar .button,
+#pma_console .toolbar .text {
margin-<?php echo $right; ?>: .4em;
}
-#pma_console .toolbar .button {
+#pma_console .toolbar .button,
+#pma_console .toolbar .text {
float: <?php echo $right; ?>;
}
#pma_console .content {
@@ -2937,6 +2944,7 @@ html.ie7 #pma_console .query_input {
display: inline-block;
}
#debug_console.ungrouped .ungroup_queries,
+#debug_console.ungrouped .sort_count,
#debug_console.grouped .group_queries {
display: none;
}
diff --git a/themes/pmahomme/css/common.css.php b/themes/pmahomme/css/common.css.php
index a21f66c7b4..501c589db2 100644
--- a/themes/pmahomme/css/common.css.php
+++ b/themes/pmahomme/css/common.css.php
@@ -3023,6 +3023,7 @@ table.show_create td {
#pma_console .message span.text,
#pma_console .message span.action,
#pma_console .toolbar .button,
+#pma_console .toolbar .text,
#pma_console .switch_button {
padding: 0 3px;
display: inline-block;
@@ -3034,13 +3035,19 @@ table.show_create td {
}
#pma_console .message span.action:hover,
#pma_console .toolbar .button:hover,
-#pma_console .switch_button:hover {
+#pma_console .switch_button:hover,
+#pma_console .toolbar .button.active {
background: #ddd;
}
-#pma_console .toolbar .button {
+#pma_console .toolbar .text {
+ font-weight: bold;
+}
+#pma_console .toolbar .button,
+#pma_console .toolbar .text {
margin-<?php echo $right; ?>: .4em;
}
-#pma_console .toolbar .button {
+#pma_console .toolbar .button,
+#pma_console .toolbar .text {
float: <?php echo $right; ?>;
}
#pma_console .content {
@@ -3259,6 +3266,7 @@ html.ie7 #pma_console .query_input {
display: inline-block;
}
#debug_console.ungrouped .ungroup_queries,
+#debug_console.ungrouped .sort_count,
#debug_console.grouped .group_queries {
display: none;
}