I'm trying to integrate CKEditor 4.1.1 in my site. So far, I've mostly got it working, except some of the specific table styles that I have in my site CSS doesn't get applied in the editor. I've already tried setting up config.contentsCss to point to my site-wide stylesheet, and that helps for most of my other contents, but it doesn't seem to apply the table styles. Here's the CSS I'm working with:
table#availability {
width: 90%;
border-collapse: collapse;
}
table#availability td, table#availability th {
border: 1px solid #ccc;
padding: 4px 7px 5px 8px;
}
table#availability th {
text-align: center;
font-weight: bold;
}
table#availability td + td {
text-align: right;
}
Is this stuff too advanced for CKEditor somehow?