Don't know if this one has been reported already.
Problem:
When clicking a RadPanelItem it doesn't show as selected when using the Office2007 skin.
Solution:
Add a space between the background url and repeat-x at line 71 of the Office2007 stylesheet.
from:
to:
I don't know if the typo also exists in the latest official release, but in build UI_2008_1_606_dev_hotfix it does.
Problem:
When clicking a RadPanelItem it doesn't show as selected when using the Office2007 skin.
Solution:
Add a space between the background url and repeat-x at line 71 of the Office2007 stylesheet.
from:
| .RadPanelBar_Office2007 .rpRootGroup .rpSelected .rpText |
| { |
| background: #ee9515 url('PanelBar/RootItemBkgActive.gif')repeat-x; |
| } |
to:
| .RadPanelBar_Office2007 .rpRootGroup .rpSelected .rpText |
| { |
| background: #ee9515 url('PanelBar/RootItemBkgActive.gif') repeat-x; |
| } |
I don't know if the typo also exists in the latest official release, but in build UI_2008_1_606_dev_hotfix it does.