It would be great if we could have a menu item to collapse all selectors in a CSS file.
I know we can collapse all, but that collapses selectors and comments. I want to be able to easily leave my comments in tact.
Let's say I have a file, style.css, like this:
/* Navigation Menu */
#navbar ul {
list-style: none;
padding: 0;
margin: 0;
}
#navbar li {
float: left;
margin: 0;
} |
And I want to be able to easily collapse it to this with one click, leaving comments in tact:
/* Navigation Menu */
#navbar ul { ... }
#navbar li { ... } |
I hope I'm not the only one who would find this useful. Thanks for all of your great work![/code]