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-05-01 14:27:37 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-05-01 14:27:37 +0300
commita17e5c53182815492900e9cb6bd33e82ea06223a (patch)
tree135cc45624b057f7ed4b53593e54f98a66e6868d /themes
parente93c54bf6993c191de68a3437ed0d7b10c416901 (diff)
Style jQuery dialog to match original theme
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'themes')
-rw-r--r--themes/original/css/common.css.php45
1 files changed, 45 insertions, 0 deletions
diff --git a/themes/original/css/common.css.php b/themes/original/css/common.css.php
index 502d812191..493621ba59 100644
--- a/themes/original/css/common.css.php
+++ b/themes/original/css/common.css.php
@@ -3121,3 +3121,48 @@ 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 */
+
+/* Override some jQuery-ui styling to have square corners */
+body .ui-corner-all,
+body .ui-corner-top,
+body .ui-corner-left,
+body .ui-corner-tl {
+ border-top-left-radius: 0;
+}
+body .ui-corner-all,
+body .ui-corner-top,
+body .ui-corner-right,
+body .ui-corner-tr {
+ border-top-right-radius: 0;
+}
+body .ui-corner-all,
+body .ui-corner-bottom,
+body .ui-corner-left,
+body .ui-corner-bl {
+ border-bottom-left-radius: 0;
+}
+body .ui-corner-all,
+body .ui-corner-bottom,
+body .ui-corner-right,
+body .ui-corner-br {
+ border-bottom-right-radius: 0;
+}
+/* Override jQuery-ui styling for ui-dialog */
+body .ui-dialog {
+ padding: .1em;
+}
+body .ui-dialog .ui-dialog-titlebar {
+ padding: .2em .5em;
+}
+body .ui-dialog .ui-dialog-content {
+ padding: .2em .4em;
+}
+body .ui-dialog .ui-dialog-buttonpane {
+ background: #D3DCE3;
+}
+body .ui-dialog .ui-dialog-buttonpane button {
+ margin: 0 0 0 0.4em;
+}
+body .ui-dialog .ui-button-text-only .ui-button-text {
+ padding: .3em .6em;
+} \ No newline at end of file