/* tooltip CSS for inside the frame */ .tooltip, .preview, .screenshot { cursor:pointer; } #tooltip, #tooltip2, #preview, #screenshot { position:absolute; border: 1px solid #444; background: #222222; padding: 5px; color: #dddddd; display: none; width: 250px; border-radius: 1em; -moz-border-radius: 1em; opacity: 0.9; filter: alpha(opacity=90); text-align: center; } /* Overall frame */ body { background-color: #333333 !important; color: #dddddd !important; } #form1 div { color: #dddddd; } a:link, a:visited { color: #ffcc00 !important; text-decoration: none; } a:hover { color: #ffffff; text-decoration: none; } a:active { color: #cccc00; text-decoration: none; } /* Editor tabs */ .multiPage, .multiPage td, .rtsLI, #editorSubjectLabel, .editorOptions { background: #222222 !important; color: #eeeeee !important; } .rtsLink, .rcbInput { background: #444444 !important; color: #eeeeee !important; cursor: pointer !important; } /* Editor frame */ #bodyTransbackInterior { background-color: #555555; color: #dddddd; border-color: #888888; } /* Editor Subject */ #editorSubject { color: #dddddd; } #editorSubject input { background-color: #333333; color: #dddddd; } /* Editor Background (behind the toolbar) */ #txtEditor_internalEditor { border-color: #888888; } #txtEditor_internalEditorWrapper { background-color: #555555; color: #dddddd; } /* Editor Window */ #txtEditor_internalEditorCenter { background-color: #555555; color: #dddddd; } /* Editor Buttons */ #editorButtons input { background: #555555; color: #dddddd; } .editorOptions a:link { color: #ffcc00; } .Default.RadEditor .reMode_selected { background: #555555 url(); } .Default.RadEditor .reModule, .Default.RadEditor .reEditorModes, .Default.RadEditor .reWrapper { background-color: #333333; } /* Plain Text Editor */ textarea#txtEditor_internalTextBox { background-color: #555555; color: #dddddd; }
<link type="text/css" rel="stylesheet" href="http://www.axiomfiles.com/Files/258012/editor.css" /> <script type="text/javascript"> $(window).load(function(){ /* Change this to point to your custom editor CSS */ var myCSS = 'http://www.axiomfiles.com/Files/258012/editor.css'; /* inject tooltip script into the frame */ var root = $('iframe[id*=_internalEditor_contentIframe]').contents(); var tmp = document.createElement('link'); tmp.type = 'text/css'; tmp.rel = 'stylesheet'; tmp.href = myCSS; root.find('head').append(tmp); }) </script>
You will have to open your favorite text editor (non-rich text) Copy the editor.css code above and modify the colors (in blue) to your liking. Upload the file to your GuildPortal files or whichever hosting site you are using. Change the URL variable "myCSS" (in yellow) in the javascript to point to your own editor.css file.
/* tooltip CSS for inside the frame */ .tooltip, .preview, .screenshot { cursor:pointer; } #tooltip, #tooltip2, #preview, #screenshot { position:absolute; border: 1px solid #444444; background: #222222; padding: 5px; color: #dddddd; display: none; width: 250px; border-radius: 1em; -moz-border-radius: 1em; opacity: 0.9; filter: alpha(opacity=90); text-align: center; } /* Overall frame */ body { background-color: #333333 !important; color: #dddddd !important; } #form1 div { color: #dddddd; } a:link, a:visited { color: #ffcc00 !important; text-decoration: none; } a:hover { color: #ffffff; text-decoration: none; } a:active { color: #cccc00; text-decoration: none; } /* Editor frame */ #bodyTransbackInterior { background-color: #555555; color: #dddddd; border-color: #888888; } /* Editor Subject */ #editorSubject { color: #dddddd; } #editorSubject input { background-color: #333333; color: #dddddd; } /* Editor Background (behind the toolbar) */ #txtEditor_internalEditor { border-color: #888888; } #txtEditor_internalEditorWrapper { background-color: #555555; color: #dddddd; } /* Editor Window */ #txtEditor_internalEditorCenter { background-color: #555555; color: #dddddd; } /* Editor Buttons */ #editorButtons input { background: #555555; color: #dddddd; } .editorOptions a:link { color: #ffcc00; } .Default.RadEditor .reMode_selected { background: #555555 url(); } .Default.RadEditor .reModule, .Default.RadEditor .reEditorModes, .Default.RadEditor .reWrapper { background-color: #333333; } /* Plain Text Editor */ textarea#txtEditor_internalTextBox { background-color: #555555; color: #dddddd; }
This file is really long! So I'm just going to include a link to the file. In the future I may have alternate files that change the color sheme to other colors, but not right now
<link type="text/css" rel="stylesheet" href="http://www.axiomfiles.com/Files/258012/editor2.css" /> <style type="text/css"> /* Editor tabs */ .multiPage, .multiPage td, .rtsLI, #editorSubjectLabel, .editorOptions { background: #222222 !important; color: #eeeeee !important; } .rtsLink, .rcbInput { background: #444444 !important; color: #eeeeee !important; cursor: pointer !important; } </style> <script type="text/javascript"> $(window).load(function(){ /* Change this to point to your custom editor CSS */ var myCSS = 'http://www.axiomfiles.com/Files/258012/editor.css'; /* inject tooltip script into the frame */ var root = $('iframe[id*=_internalEditor_contentIframe]').contents(); var tmp = document.createElement('link'); tmp.type = 'text/css'; tmp.rel = 'stylesheet'; tmp.href = myCSS; root.find('head').append(tmp); }) </script>
You will have to open your favorite text editor (non-rich text) Copy the editor.css code above and modify the colors (in blue) to your liking. Upload the file to your GuildPortal files or whichever hosting site you are using. Change the URL variable "myCSS" (in orange) in the javascript to point to your own editor.css file.
<style type="text/css"> .tooltip, .preview, .screenshot { cursor:pointer; } #tooltip, #tooltip2, #preview, #screenshot { color:#dddddd; background:#222222; border: 1px solid #333333; padding:5px; display:none; opacity: 0.9; filter: alpha(opacity=90); text-align:left; border-radius: 1em; -moz-border-radius: 1em; -webkit-border-radius: 1em; } </style> <script src="http://www.axiomfiles.com/Files/258012/tooltip.js" type="text/javascript"></script>