I just spent a while figuring this out so I thought I'd post it. I'm writing an iPhone web app with WebApp.net which has several styles that conflict with RadEditor due to the global styles applied by WebApp.net. After wading through the styles with Firebug I came up with this:
<style type="text/css">
.rade_toolbar li
{
padding: 0;
margin: 0;
list-style: none;
}
.rade_tool
{
overflow: visible !important;
padding: 2px 0 0;
margin: 0 !important;
}
.rade_tool span
{
float: none !important;
}
.rade_toolbar li
{
background-color: inherit !important;
}
</style>
It works for what I'm doing with it.
<style type="text/css">
.rade_toolbar li
{
padding: 0;
margin: 0;
list-style: none;
}
.rade_tool
{
overflow: visible !important;
padding: 2px 0 0;
margin: 0 !important;
}
.rade_tool span
{
float: none !important;
}
.rade_toolbar li
{
background-color: inherit !important;
}
</style>
It works for what I'm doing with it.