Not a bug Load EXTRA.css for last

refael

Well-known member
Currently, EXTRA.css is located inside public.css
There are more css files that are loaded after public.css
As the browser uses the last css code, every overwrite code in EXTRA.css is useless (unless you will add !important, which may make complications and additional code in some cases)

If EXTRA.css will be the last css code that is loaded, it will make the code much cleaner and easy for customize, as it will not require to use !important.
 
The !important declaration isn't required in all cases, not even in most cases.
More specificity can remove the need for it most of the time.
 
Top Bottom