I would like to test two different interfaces for my Rails application. Ideally, I would like to have two separate css files, one of which is associated with each interface (for example, new_interface.css and old_interface.css). I currently have two different partial interfaces for the interfaces, one of which is called _new_interface.html.erb and one is called _old_interface.html.erb. If I want to call the correct css file when loading a certain kind, how should I do it? For example, if I load _new_interface.html.erb, I want it to load the new_interface.css file and ignore the old_interface.css file.
My application.css:
source
share