If you don't fancy the "Smurf-blue" motif used in the new Office Add-in, why not try another theme? ExtJS, the JavaScript framework we used to implement the Add-in interface, is fully themable and there are a number of community developed themes available on the web. I've recently been trying out some of these themes and thought that I should share my notes on how to configure one.
To install a new theme, follow the steps below -
- Download a theme from the ExtJS Extensions webpage;
(I'd personally recommend the Gray and Olive themes.)
- Extract it into the Ext resources directory:
/knowledgeTree/ktoffice/thirdpartyjs/ext/resources
- Point the Add-in at the new theme's stylesheet:
- Open the following file in a text editor:
/knowledgeTree/ktoffice/js/interface/office2007.js
- Add the following code snipet to the end of the file:
(Note that this reference points to the 'gray' theme - 'xtheme-gray.css'. For other themes, point to the relevant stylesheet)
---snip---
document.write('<link rel="stylesheet" type="text/css" href="'+thirdpartyJsPath+'/ext/resources/css/xtheme-gray.css" />');
---snip---
- Open Internet Explorer and clear the cache (Delete Browsing History...).
Open Word, Excel or PowerPoint and the KnowledgeTree Office Add-in panel should appear with the new theme applied.