Creating and maintaining CSS sprites is a lot of work. Both creating the sprites and creating the coordinates in the CSS are a burden. Front end technologies such as SASS/Compass spriting helps but requires a build step in the frontend. Are there any alternatives for spriting that still only require one HTTP call without the hassle?
For instance: it would be rather nice to have some sort of zip format that would contain all the images that you'd like to combine into one call but that do not require you to determine coordinates. You'd simply point to the image in the zip and use that. Is there something like this in the works?
edit: The zip idea above was actually a spec in the making. Read about it here: http://limi.net/articles/resource-packages. They decided to drop the spec in favour for the SPDY protocol and HTTP pipelining. So I guess there's work being done, but on the protocol level so it can remain backwards compatible.