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-27 10:48:48 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-05-27 10:48:48 +0300
commit09a66503f4d71fe984cbc3d04ade409bfdde6a02 (patch)
tree45801c49246338b7d1b85f22c83b170bff42be7f /themes
parentce79e5fe9fa3584c9e3478af93862d07b2e7dddf (diff)
Set sizes for CodeMirror based input transformations
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'themes')
-rw-r--r--themes/pmahomme/css/codemirror.css.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/themes/pmahomme/css/codemirror.css.php b/themes/pmahomme/css/codemirror.css.php
index 98d8f3f41c..dc3735cb87 100644
--- a/themes/pmahomme/css/codemirror.css.php
+++ b/themes/pmahomme/css/codemirror.css.php
@@ -20,6 +20,11 @@ if (! defined('PMA_MINIMUM_COMMON') && ! defined('TESTSUITE')) {
#inline_editor_outer .CodeMirror {
height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] * 0.4); ?>em;
}
+.insertRowTable .CodeMirror {
+ height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] * 0.6); ?>em;
+ width: <?php echo ceil($GLOBALS['cfg']['TextareaCols'] * 0.6); ?>em;
+ border: 1px solid #a9a9a9;
+}
span.cm-keyword, span.cm-statement-verb {
color: #909;
}