Support rtl languages in jQuery dialog

Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
This commit is contained in:
Madhura Jayaratne 2015-07-20 18:53:14 +05:30
parent f2426204fe
commit df8c28f907
2 changed files with 30 additions and 0 deletions

View File

@ -3202,6 +3202,21 @@ th.headerSortDown .sorticon, th.headerSortUp:hover .sorticon {
}
/* end of styles of sortable tables */
/* styles for jQuery-ui to support rtl languages */
body .ui-dialog .ui-dialog-titlebar-close {
<?php echo $right; ?>: .3em;
<?php echo $left; ?>: initial;
}
body .ui-dialog .ui-dialog-title {
float: <?php echo $left; ?>;
}
body .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
float: <?php echo $right; ?>;
}
/* end of styles for jQuery-ui to support rtl languages */
/* Override some jQuery-ui styling to have square corners */
body .ui-corner-all,
body .ui-corner-top,

View File

@ -3524,3 +3524,18 @@ 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 */
/* styles for jQuery-ui to support rtl languages */
body .ui-dialog .ui-dialog-titlebar-close {
<?php echo $right; ?>: .3em;
<?php echo $left; ?>: initial;
}
body .ui-dialog .ui-dialog-title {
float: <?php echo $left; ?>;
}
body .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
float: <?php echo $right; ?>;
}
/* end of styles for jQuery-ui to support rtl languages */