I found it's frustrating that everytime I upgrade telerik controls, I got all kinds of problem. No exception this time. After spent 30+ hours to fix the skin and style sheet problems, I got my application to be functional, but the look and feel is still not exact same as before. I found all in-line style is not working correctly. My question is can I still use in-line style? For example, I add style as follows:
then later I use that class mp or ts. but the float: left doesn't take effect.
| <asp:Content ID="Content2" ContentPlaceHolderID="cph2" Runat="Server"> |
| <style type="text/css"> |
| .mp |
| { |
| border:1px solid #898c95; |
| background-color:#f1f1f1; |
| margin-left: 2px; |
| float:left; |
| width: 100%; |
| } |
| .ts |
| { |
| text-align:left; |
| width: 160px; |
| margin-right:1px; |
| } |
| </style> |
| </asp:Content> |
Also, I have a custom skin for RadInput, I modify most of them with current naming convention, but I can't find any equivalent example for followings:
.radHint_Custom
{
background: infobackground;
margin-top: 5px;
border: solid 1px black;
text-align: left;
overflow: auto;
}
.radHint_Custom a,
.radHint_Custom a:visited,
.radHint_Custom a:hover
{
margin: 2px;
color: black;
text-decoration: none;
font-size: small;
}