I find the discussion very interesting, it reminds me to old days where people suspected that object-orientation has any value. For me there are a lot of similarities:
On the left terms from object-orientation, on the right from the HTML world:
- class - CSS file per controller
- method - selector e.g. with
#id
- superclass - import to e.g. compass framework files (
@import "compass/utilities/tables/scaffolding";)
We are trained when doing web applications to use all files for all views, and use different ids for different views to denote that they should be rendered differently. By using a stylesheet per controller, and adding to assets the option to include that stylesheet (only) for the right controller, you could use the same #ids with different rules, so you are able to share layouts that will be rendered then differently.
A simple example could be that the per controller stylesheet denotes the background color, so by calling actions from different controllers, the background color shows the context in which your are working. (I do not say that this would be a clever idea or nice to the user, but it is technically possible.)
So I do think that this additional technique has a value in itself, but we have to learn for what it is good for.