82 lines
1.8 KiB
CSS
82 lines
1.8 KiB
CSS
/*
|
|
* =================================================================
|
|
* HTML Editor - A WYSIWYG web based editor for IE5.5+ and Mozilla v1.4+
|
|
*
|
|
* Website : http://gossamer-threads.com/
|
|
* Support : http://gossamer-threads.com/scripts/support/
|
|
* Revision : $Id: editor.css,v 1.1 2006/04/05 23:23:13 brewt Exp $
|
|
*
|
|
* Copyright (c) 2005 Gossamer Threads Inc. All Rights Reserved.
|
|
* Redistribution in part or in whole strictly prohibited. Please
|
|
* see LICENSE file for full details.
|
|
* =================================================================
|
|
*/
|
|
|
|
#editor {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
.toolbar {
|
|
border: 1px solid;
|
|
border-color: white gray gray white;
|
|
height: 26px;
|
|
heigh\t: 24px;
|
|
background-color: lightgrey;
|
|
overflow: hidden;
|
|
}
|
|
.button {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
border: 1px solid lightgrey;
|
|
width: 25px;
|
|
widt\h: 23px;
|
|
height: 24px;
|
|
heigh\t: 22px;
|
|
float: left;
|
|
}
|
|
.button-pressed {
|
|
border-color: gray white white gray;
|
|
background-color: #e9e7e3;
|
|
background-position: 1px 1px;
|
|
}
|
|
.button-mouse-over {
|
|
border-color: white gray gray white;
|
|
}
|
|
.button-pressed-mouse-over {
|
|
background-color: lightgrey;
|
|
}
|
|
.button-disabled {
|
|
filter: alpha(opacity = 25);
|
|
opacity: 0.25;
|
|
/* safari fix - when opacity is set, the background gets offset by about 50%?!? */
|
|
background-repeat: no-repeat;
|
|
}
|
|
.separator {
|
|
margin: 2px 3px;
|
|
border-left: 1px solid gray;
|
|
border-right: 1px solid white;
|
|
width: 0px;
|
|
height: 20px;
|
|
float: left;
|
|
}
|
|
#editable_iframe {
|
|
border: 0px;
|
|
width: 100%;
|
|
}
|
|
#editable_source {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
border: 0px;
|
|
width: 100%;
|
|
visibility: hidden;
|
|
position: absolute;
|
|
/* this somehow fixes the focus problems in mozilla */
|
|
left: 0px;
|
|
}
|
|
#editable_content {
|
|
margin: 5px;
|
|
}
|
|
#editable_content p {
|
|
margin: 0px;
|
|
}
|