When using the embedded Office2007 skin with RadEditor there are styles being set incorrectly.
In the image properties dialog, you cannot see the align middle-right or align middle-left icons in the image align dropdown. I have inspected this element with firebug, and I noticed that the correct styles are being overridden by an !important declaration in a previous stylesheet added through as webresource.
.rade_MiddleLeft {
background-position:-3096px -6px; //Correct
}
.rade_MiddleLeft
{
background-position:4170px -10px !important; /Incorrect
}
.rade_MiddleRight {
background-position:-3155px -6px; //Correct
}
.rade_MiddleRight {
background-position:-4249px -10px !important; //Incorrect
}
This does not happen when I use other skins, but I need to use Office2007 to match the theme of the rest of my admin area.
Edit: I tried to override the style with specificity and an !important declaration when I realized that the dialog opens in its own radwindow and iframe and does not load the css files I specify. Is there a way to make it load these files while still using embedded skins?
In the image properties dialog, you cannot see the align middle-right or align middle-left icons in the image align dropdown. I have inspected this element with firebug, and I noticed that the correct styles are being overridden by an !important declaration in a previous stylesheet added through as webresource.
.rade_MiddleLeft {
background-position:-3096px -6px; //Correct
}
.rade_MiddleLeft
{
background-position:4170px -10px !important; /Incorrect
}
.rade_MiddleRight {
background-position:-3155px -6px; //Correct
}
.rade_MiddleRight {
background-position:-4249px -10px !important; //Incorrect
}
This does not happen when I use other skins, but I need to use Office2007 to match the theme of the rest of my admin area.
Edit: I tried to override the style with specificity and an !important declaration when I realized that the dialog opens in its own radwindow and iframe and does not load the css files I specify. Is there a way to make it load these files while still using embedded skins?