annotate forum/Themes/Vamp/css/editor.css @ 76:e3e11437ecea website

Add forum code
author Chris Cannam
date Sun, 07 Jul 2013 11:25:48 +0200
parents
children
rev   line source
Chris@76 1 /* This is the editor's playground (textarea for non-wysiwyg, iframe for wysiwyg). */
Chris@76 2 .editor
Chris@76 3 {
Chris@76 4 width: 100%;
Chris@76 5 max-width: 100%;
Chris@76 6 min-width: 100%;
Chris@76 7 }
Chris@76 8
Chris@76 9 .editor, .rich_editor_frame
Chris@76 10 {
Chris@76 11 border: 1px solid #808080;
Chris@76 12 padding: 2px !important;
Chris@76 13 margin: 0;
Chris@76 14 }
Chris@76 15
Chris@76 16 .rich_editor_frame
Chris@76 17 {
Chris@76 18 background: #fff;
Chris@76 19 }
Chris@76 20
Chris@76 21 /* The resize handle. */
Chris@76 22 .richedit_resize
Chris@76 23 {
Chris@76 24 height: 5px;
Chris@76 25 font-size: 0;
Chris@76 26 background: #eee url(../images/bbc/resize-handle.gif) no-repeat 50% 1px;
Chris@76 27 border: 1px solid #ddd;
Chris@76 28 border-top-width: 0;
Chris@76 29 cursor: s-resize;
Chris@76 30 width: 100%;
Chris@76 31 padding: 0 2px;
Chris@76 32 }