This question is locked. New answers and comments are not allowed.
Hi,
I have a project where I am creating user controls along with certain telerik controls. I want to color these user controls with the same color schemes as any ot the telerik.css classes that I might be using. Right now I am using hay.css, and I want to color some of my user controls with the hay.css green background with the border a standard hay.css border color with a statement like this ....
Would like to do this so that if I change to another Telerik.css file, my user control will take on that color scheme ?
I looked around on the forum and saw mostly that people wanted to change telerik.css to their own color schemes, so, I guess my question is the opposite and I could not found anything in the help ?
thanks for your time.
I have a project where I am creating user controls along with certain telerik controls. I want to color these user controls with the same color schemes as any ot the telerik.css classes that I might be using. Right now I am using hay.css, and I want to color some of my user controls with the hay.css green background with the border a standard hay.css border color with a statement like this ....
$(
this).find('.myClass ').css("background-color", $('.t-group'));
or, maybe I could change it here ...
| .iqTooltip |
| { |
| padding-left: 10px; |
| padding-right: 10px; |
| padding-top: 3px; |
| padding-bottom: 3px; |
| display: none; |
| position: absolute; |
| background-color: #ff9; -- HERE |
| border: solid 1px #333; -- HERE |
| z-index: 999; |
| } |
I looked around on the forum and saw mostly that people wanted to change telerik.css to their own color schemes, so, I guess my question is the opposite and I could not found anything in the help ?
thanks for your time.