iakopo, you only can select mode at the first start of r2la. So you need to start new r2la instance in DEDI mode and then import your championships (r2la_settings.json) into it. Look in
r2la steam guide how to setup r2la in DEDI mode ("Installation/Setup for r2la DEDI mode" section). Then if you need to import your championships from non-DEDI version, after DEDI version shows Results VIewer, copy r2la_settings.json file from your old r2la folder into new r2la folder, go to "Options" page and press "Import track associations and championships" (this is the same procedure as you do on r2la version upgrade).
Keith Carter, every element there needs an explanation:
1. Site background texture. You can change it by replacing r2la/static/images/nasty_fabric.png file. Keep the name, change png to something different.
2. Top navbar is a complex uikit element. I can tell you how to change its background color, but I can not change all other elements properties, i.e. hoover/press colors, drop-down elements colors, css is to complex for me there. You can change its background color by adding this line to app.css (set your own color value):
Code:
.uk-navbar {background-color: #F0D1FF;}
3. Custom banner div background. You can change it by adding this line to app.css:
Code:
#custom_site_banner > div {background-color: #F0D1FF;}
4. Blue line highlight color in Results Viewer can be changed by finding and changing this existing lines in app.css:
Code:
.log_panel:hover {background-color:#ccf1ff}
.log_panel {cursor:default}
.log_panel_active {background-color:#ccf1ff}
5. Race/qual/practice badges. I added .uk-badge-race .uk-badge-qual .uk-badge-practice classes to app.css just now and re-uploaded r2la archive without version change. Re-download it, install, find and change that values.
6. Session report background. Its pretty complex panel. If you change its background it looks really bad, all tabs and tables there were created around default background color. If you really want, you can change it by adding this line to app.css:
Code:
#report_wrapper .uk-panel {background-color: #F0D1FF;}
There are other report_wrapper ids in code on other pages, so it can break something else. Really I don't recommend changing this and can not make it changeable, because I would need to make all reports design elements to work with other bg colors, that's too much work.