Is there a way to have references to css files and indicate which media type they are for?
Example:
site.css - used for viewing in the browser
print.css - used if/when a user tries to print the page
<telerik:RadStyleSheetManager runat="server" id="radStyles" EnableHandlerDetection="True" EnableStyleSheetCombine="True" OutputCompression="AutoDetect"> <StyleSheets> <telerik:StyleSheetReference Path="~/site.css"/> <telerik:StyleSheetReference Path="~/print.css"/> </StyleSheets></telerik:RadStyleSheetManager>If I did this, print.css overrides. I understand I can play with orders, but I need a way to work with different media types - if possible.
