5 | | Is it better to try & consolidate all css files into a single stylesheet? |
6 | | * GOOD: Browsers default to only downloading 2 files at a time, so many files is very slow on high latency links |
7 | | * BAD: Harder for maintenance during development |
8 | | * Solution?: Provide a script to Productionise the environment (Use compressed JS files & combine all CSS into 1 big one) |
| 5 | For development purposes, we keep all CSS files separated for ease of maintenance.[[BR]] |
| 6 | For production installs, we should consolidate all into a single file for faster downloads. |
| 7 | * Browsers default to only downloading 2 files at a time, so many files is very slow on high latency links |
| 8 | Part of the [wiki:DevelopmentGuidelinesReleaseProcess Release Process] will be to do this consolidation. |