CleanCSS
CSS beautifier and sorter for Sublime text 2
Details
Installs
- Total 18K
- Win 11K
- Mac 5K
- Linux 2K
Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
Mac | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
CleanCSS is a Sublime Text 3 package for beautifying your CSS. CleanCSS indents all your rules properly, aligns all the values by the colon, and sorts each property into categories within each rule:
- Imports (for LESS)
- Variables (for LESS)
- Mixins (for LESS)
- Content
- Positional
- Dimensional
- Appearance
- Animation
Installation
CleanCSS is on Package Control, so just open the Command Palette and select “Package Control: Install Package”, then search for CleanCSS and you're done!
Usage
You can clean a css file by accessing the CleanCSS command from the command palette
or you can bind a key to the clean_css
command in Preferences -> Key Bindings - User
for ultra fast cleaning
{"keys":["f6"], "command" : "clean_css"},
Configuration
You can access the configuration settings by selecting Preferences -> Package Settings -> CleanCSS
.
add_space_between_categories
(Boolean) If true, then an empty line will be inserted between categoriesadd_space_between_rules
(Boolean) Adds spaces inbetween each css rule.indent_string
(String) The string of characters used to indent. Defaults to a tab.min_styles_to_collaspe
(Number) If the rule has equal to or less styles, it won't add the category spacing. Defaults to 3.vertically_align_selector_property_values
(Boolean) If true, will align the colons of each style within each rulecategories
(Array) Contains how CleanCSS should sort and group each CSS property. Feel free to customize this as you like. Ordering of the properities in here will dictate how the properties are ordered when you clean the file.