We have upgraded to the Q1 2009 release but we're using the Q3 2008 skins. We display our Editors so that only the statistics show and the spell checker is available but what we're seeing since switching back to the 2008 skins is that the spell check button image is fuzzy. See below for a sample of what our markup looks like.
Anythoughts on how to correct this?
| <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Test.aspx.cs" Inherits="ResQ.Contact.Test" %> |
| <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| <html xmlns="http://www.w3.org/1999/xhtml" > |
| <head runat="server"> |
| <link rel="Stylesheet" type="text/css" href="~/Skins/Dock.css" /> |
| <link rel="Stylesheet" type="text/css" href="~/Skins/Editor.css" /> |
| <link rel="Stylesheet" type="text/css" href="~/Skins/Spell.css" /> |
| <link rel="Stylesheet" type="text/css" href="~/Skins/ToolBar.css" /> |
| <link rel="Stylesheet" type="text/css" href="~/Skins/Widgets.css" /> |
| <link rel="Stylesheet" type="text/css" href="~/Skins/Window.css" /> |
| <link rel="Stylesheet" type="text/css" href="~/Skins/Office2007/Dock.Office2007.css" /> |
| <link rel="Stylesheet" type="text/css" href="~/Skins/Office2007/Editor.Office2007.css" /> |
| <link rel="Stylesheet" type="text/css" href="~/Skins/Office2007/Spell.Office2007.css" /> |
| <link rel="Stylesheet" type="text/css" href="~/Skins/Office2007/ToolBar.Office2007.css" /> |
| <link rel="Stylesheet" type="text/css" href="~/Skins/Office2007/Widgets.Office2007.css" /> |
| <link rel="Stylesheet" type="text/css" href="~/Skins/Office2007/Window.Office2007.css" /> |
| <title>Untitled Page</title> |
| </head> |
| <body> |
| <form id="form1" runat="server"> |
| <telerik:RadScriptManager ID="RadScriptManager1" runat="server" /> |
| <div style="margin: 3px 3px 3px 3px;"> |
| <telerik:RadEditor ID="editor" runat="server" |
| Skin="Office2007" EnableEmbeddedBaseStylesheet="false" EnableEmbeddedSkins="false" |
| AutoResizeHeight="true" Height="55px" Width="800px" |
| ToolbarMode="Default" EnableResize="false" EditModes="Design"> |
| <Modules> |
| <telerik:EditorModule Name="RadEditorStatistics" Enabled="true" Visible="true" /> |
| </Modules> |
| <Tools> |
| <telerik:EditorToolGroup Enabled="true" DockingZone="Right"> |
| <telerik:EditorTool Name="AjaxSpellCheck" /> |
| </telerik:EditorToolGroup> |
| </Tools> |
| </telerik:RadEditor> |
| </div> |
| </form> |
| </body> |
| </html> |
Anythoughts on how to correct this?