Cleaner UI for Aptify with CSS updates
The css is written against Aptify 7.3 but the UI has not changed in years so it should work with previous or future versions also.
- Copy the aptify-clean-ui.css to the styles folder
- Copy the aptify-clean-ui.js to the script folder
- In index.html, copy paste the following code to load our files towards the very end. Insert after kendo.culture(Aptify.framework.configuration.cultureName);
//inject the new css var cleanUICss = document.createElement('link'); cleanUICss.rel = 'stylesheet'; cleanUICss.href = 'styles/aptify-clean-ui.css'; document.head.appendChild(cleanUICss); //inject the new js var cleanUIJs = document.createElement('script'); cleanUIJs.src = 'script/aptify-clean-ui.js'; cleanUIJs.type = 'text/javascript'; document.head.appendChild(cleanUIJs); - Optionally copy the new logo files by overriding the styles/images/Aptify-Logo-81x40.png and styles/images/Aptify-Logo-148x73.png (not included in this repo)
- Copy the new loading files by overriding the styles/images/ball-traiangle-loading.svg and styles/images/ball-triangle-loading-small.svg
- In index.html, find this Aptify.framework.utility.UI.showWaitIndicator("Loading Application..."); and change to Aptify.framework.utility.UI.showWaitIndicator("")