diff options
author | patdenice <patdenice@piwigo.org> | 2011-04-12 11:12:51 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2011-04-12 11:12:51 +0000 |
commit | a740ef91e6689f86011b70c7bbe2589abf78ae6b (patch) | |
tree | bb4a6deb7395b0f545bb760cf34f093e910f1cff /plugins/LocalFilesEditor/locfiledit.css | |
parent | bb7c28f86febddd376ee0400807507991a2d7b48 (diff) |
feature:2262
Replace editarea by Codemirror:
http://codemirror.net
git-svn-id: http://piwigo.org/svn/trunk@10307 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'plugins/LocalFilesEditor/locfiledit.css')
-rw-r--r-- | plugins/LocalFilesEditor/locfiledit.css | 14 |
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; +} |