From: Chris R. <chr...@us...> - 2004-11-03 21:04:12
|
Update of /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_htmlarea In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8434/xwysiwyg/mod/xwysiwyg/_htmlarea Modified Files: htmlarea.js Log Message: Added a border around the edit box so it is visible and not just a white space Index: htmlarea.js =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_htmlarea/htmlarea.js,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** htmlarea.js 26 Oct 2004 07:35:55 -0000 1.2 --- htmlarea.js 3 Nov 2004 21:03:55 -0000 1.3 *************** *** 785,789 **** html += '<base href="' + editor.config.baseURL + '" />'; html += "<style>" + editor.config.pageStyle + ! " html,body { border: 0px; }</style>\n"; html += "</head>\n"; html += "<body>\n"; --- 785,789 ---- html += '<base href="' + editor.config.baseURL + '" />'; html += "<style>" + editor.config.pageStyle + ! " html,body { border-right-width: 2px; border-right-style: solid; border-bottom-width: 1px; border-bottom-style: solid; border-left-width: 1px; border-left-style: solid; border-top-width: 1px; border-top-style: solid; border-top-color: #666666; border-right-color: #666666; border-bottom-color: #666666; border-left-color: #666666;}</style>\n"; html += "</head>\n"; html += "<body>\n"; |