aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LocalFilesEditor/locfiledit.css
diff options
context:
space:
mode:
authorpatdenice <patdenice@piwigo.org>2011-04-12 11:40:06 +0000
committerpatdenice <patdenice@piwigo.org>2011-04-12 11:40:06 +0000
commitcf4e2c81f948a1a9e54258d3ced978d1ad2ef234 (patch)
treef3fbaa43b7207e1f153a079ffb9c84dcf85c6c00 /plugins/LocalFilesEditor/locfiledit.css
parent28b9e115ee113b9510db949093c39a7743d8906f (diff)
merge r10307 from trunk to branch 2.2
feature:2262 Replace editarea by Codemirror: http://codemirror.net git-svn-id: http://piwigo.org/svn/branches/2.2@10310 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r--plugins/LocalFilesEditor/locfiledit.css14
1 files changed, 12 insertions, 2 deletions
diff --git a/plugins/LocalFilesEditor/locfiledit.css b/plugins/LocalFilesEditor/locfiledit.css
index 9236a3137..f0981f524 100644
--- a/plugins/LocalFilesEditor/locfiledit.css
+++ b/plugins/LocalFilesEditor/locfiledit.css
@@ -14,7 +14,8 @@
#LocalFilesEditor TEXTAREA {
margin: 0.5em 0;
- width: 99.5%;
+ width: 99%;
+ height: 500px;
float: left;
}
@@ -22,7 +23,6 @@
width: 100%;
float: left;
text-align: left;
- display: none;
}
#LocalFilesEditor #hideedit {
@@ -32,3 +32,13 @@
#LocalFilesEditor TD {
padding: 0.5em;
}
+
+.CodeMirror {
+ background-color: #DDDDDD;
+ font-size: 1.3em;
+ border: 1px solid #999999;
+ margin: 0.5em 0;
+ width: 99%;
+ min-height: 500px;
+ height: auto;
+}