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-20 13:30:55 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-05-20 13:30:55 +0300
commitaa78a548031f2dc0ad4fb2346dc0b276dab45dee (patch)
tree94a86c8773564d73c3103c0408b7ab878b0c2cbe /themes
parent52f8f6080e4d7adab2e404f105bfc8ee31759a08 (diff)
Add back phpMyAdmin specific colors
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'themes')
-rw-r--r--themes/pmahomme/css/codemirror.css.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/themes/pmahomme/css/codemirror.css.php b/themes/pmahomme/css/codemirror.css.php
index 5732543db0..1130cad3d1 100644
--- a/themes/pmahomme/css/codemirror.css.php
+++ b/themes/pmahomme/css/codemirror.css.php
@@ -21,3 +21,37 @@ if (! defined('PMA_MINIMUM_COMMON') && ! defined('TESTSUITE')) {
#inline_editor_outer .CodeMirror {
height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] * 0.4); ?>em;
}
+
+span.cm-keyword, span.cm-statement-verb {
+ color: #909;
+}
+span.cm-variable {
+ color: black;
+}
+span.cm-comment {
+ color: #808000;
+}
+span.cm-mysql-string {
+ color: #008000;
+}
+span.cm-operator {
+ color: fuchsia;
+}
+span.cm-mysql-word {
+ color: black;
+}
+span.cm-builtin {
+ color: #f00;
+}
+span.cm-variable-2 {
+ color: #f90;
+}
+span.cm-variable-3 {
+ color: #00f;
+}
+span.cm-separator {
+ color: fuchsia;
+}
+span.cm-number {
+ color: teal;
+}