ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Compact​Expand​Css

by TooBug ST2

a sublime plugin to compact and expand css code

Details

  • 2015.09.25.13.23.40
  • github.​com
  • github.​com
  • 10 years ago
  • 19 minutes ago
  • 12 years ago

Installs

  • Total 3K
  • Win 2K
  • Mac 767
  • Linux 200
Jun 4 Jun 3 Jun 2 Jun 1 May 31 May 30 May 29 May 28 May 27 May 26 May 25 May 24 May 23 May 22 May 21 May 20 May 19 May 18 May 17 May 16 May 15 May 14 May 13 May 12 May 11 May 10 May 9 May 8 May 7 May 6 May 5 May 4 May 3 May 2 May 1 Apr 30 Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

CompactExpandCss

a sublime plugin to compact and expand css code

original code: https://gist.github.com/2863474

install

download the files, and put them in a folder called CompactExpandCss , and then put the folder in packages folder.

usage

select the css code

*{
    padding:0
}

and press ctrl + alt(command) + [ , the code becomes

*{ padding:0}

select the css code and press ctrl + alt(command) + ] , the code becomes

*{
    padding:0
}