mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
20 lines
312 B
CSS
20 lines
312 B
CSS
|
/**
|
||
|
* Default Editor Styles for the CMS
|
||
|
*/
|
||
|
|
||
|
.typography .mceItemFlash {
|
||
|
border: 1px dotted #f00;
|
||
|
}
|
||
|
|
||
|
body.mceContentBody {
|
||
|
min-height: 200px;
|
||
|
font-size: 62.5%;
|
||
|
}
|
||
|
|
||
|
body.mceContentBody a.ss-broken {
|
||
|
background-color: #FF7B71;
|
||
|
border: 1px red solid;
|
||
|
color: #fff;
|
||
|
padding: 1px;
|
||
|
text-decoration: underline;
|
||
|
}
|