mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
BUGFIX: show flash icon and box if flash file exists. MINOR: created a default editor.css file which has base css styles for the CMS.
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.3@70691 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
c15b86a86e
commit
5759314893
@ -136,6 +136,7 @@
|
|||||||
.right form textarea {
|
.right form textarea {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.right form .mceEditor select.mceNativeListBox {
|
.right form .mceEditor select.mceNativeListBox {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
padding-top: 2px;
|
padding-top: 2px;
|
||||||
|
19
css/editor.css
Normal file
19
css/editor.css
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
/**
|
||||||
|
* Default Editor Styles for the CMS
|
||||||
|
*/
|
||||||
|
|
||||||
|
.typography .mceItemFlash {
|
||||||
|
border: 1px dotted #f00;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.mceContentBody {
|
||||||
|
min-height: 200px;
|
||||||
|
font-size: 62.5%;
|
||||||
|
}
|
||||||
|
body.mceContentBody a.broken {
|
||||||
|
background-color: #FF7B71;
|
||||||
|
border: 1px red solid;
|
||||||
|
color: #fff;
|
||||||
|
padding: 1px;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
@ -14,7 +14,7 @@ if((typeof tinyMCE != 'undefined')) {
|
|||||||
width: "100%",
|
width: "100%",
|
||||||
auto_resize : false,
|
auto_resize : false,
|
||||||
theme : "advanced",
|
theme : "advanced",
|
||||||
content_css : "$ContentCSS",
|
content_css : "cms/css/editor.css, $ContentCSS",
|
||||||
body_class : 'typography',
|
body_class : 'typography',
|
||||||
document_base_url: "$BaseURL",
|
document_base_url: "$BaseURL",
|
||||||
urlconverter_callback : "nullConverter",
|
urlconverter_callback : "nullConverter",
|
||||||
|
Loading…
Reference in New Issue
Block a user