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
diff options
context:
space:
mode:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-07-07 12:37:20 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-07-07 12:37:20 +0300
commit47bda67e38aee09dc9d78c67eb993cc3532c45ec (patch)
treeb7ee26f1f73ebecde353193d393c52ab2f2fdf6f
parentecc886717dc1d908f86d63709aef1f5e70fa74a0 (diff)
bug #4976 Timepicker CSS issues in Original theme
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
-rw-r--r--ChangeLog1
-rw-r--r--themes/original/css/common.css.php12
2 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index d34f2694b9..cf00e427d7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@ phpMyAdmin - ChangeLog
4.4.12.0 (not yet released)
- bug Saved chart image does not have a proper name or an extension
+- bug #4976 Timepicker CSS issues in Original theme
4.4.11.0 (2015-07-06)
- bug Missing selected/entered values when editing active options in visual query builder
diff --git a/themes/original/css/common.css.php b/themes/original/css/common.css.php
index 58b6cd1b67..58538181fa 100644
--- a/themes/original/css/common.css.php
+++ b/themes/original/css/common.css.php
@@ -2290,10 +2290,14 @@ fieldset .disabled-field td {
/* css for timepicker */
.ui-timepicker-div .ui-widget-header { margin-bottom: 8px; }
-.ui-timepicker-div dl { text-align: left; }
-.ui-timepicker-div dl dt { height: 25px; }
-.ui-timepicker-div dl dd { margin: -25px 0 10px 85px; }
+.ui-timepicker-div dl { text-align: <?php echo $left; ?>; }
+.ui-timepicker-div dl dt { height: 25px; margin-bottom: -25px; }
+.ui-timepicker-div dl dd { margin: 0 10px 10px 85px; }
.ui-timepicker-div td { font-size: 90%; }
+.ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; }
+.ui-timepicker-rtl { direction: rtl; }
+.ui-timepicker-rtl dl { text-align: right; }
+.ui-timepicker-rtl dl dd { margin: 0 65px 10px 10px; }
input.btn {
color: #333;
@@ -3075,4 +3079,4 @@ th.headerSortUp .sorticon, th.headerSortDown:hover .sorticon {
th.headerSortDown .sorticon, th.headerSortUp:hover .sorticon {
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('s_asc.png');?>);
}
-/* end of styles of sortable tables */
+/* end of styles of sortable tables */ \ No newline at end of file