and have copied the FormDecorator.Telerik.css (and it's images) to my solution as Button.Telerik.css and have registered this file in my page.
I am able to change the font color when clicking the button (which makes me think I am overriding the embedded form decorator successfully) but am not able to make it bold even if I do the following:
/* START OF CLICKED BUTTON STYLES */
/* Im not sure what the below style is for, but it doesn't seem to affect anything when I comment it out.
I will leave it here in case someone works out what it does.*/
a.radfd_Telerik.radfd_Clicked
{
background-image: url(Button/ButtonSprites.gif);
background-position: 0 -42px;
background-repeat: no-repeat;
}
/* Clicking the button */
a.radfd_Telerik.radfd_Clicked
span, a.radfd_Telerik.radfd_Clicked:hover span
{
background-image: url(Button/ButtonSprites.gif);
color: Black;
font: bold;
font-family: 'Segoe UI' , 'Arial' , 'Helvetica' , 'sans-serif';
font-size: 8pt;
font-weight: bolder;
}
a.radfd_Telerik.radfd_Clicked
.radfdInnerSpan
{
background-position: 0 -63px;
background-repeat: repeat-x;
}
a.radfd_Telerik.radfd_Clicked
.radfdOuterSpan
{
background-position: right -42px;
background-repeat: no-repeat;
}
/* END OF CLICKED BUTTON STYLES */
Does anyone know how to make the font bold when clicking the button?
thanks,
Kellie