1. 10 Jun, 2012 5 commits
  2. 09 Jun, 2012 8 commits
  3. 07 Jun, 2012 1 commit
  4. 05 Jun, 2012 5 commits
  5. 01 Jun, 2012 1 commit
  6. 25 May, 2012 1 commit
  7. 21 May, 2012 1 commit
    • Andrew Smith's avatar
      Reformat CSS to use the coding standard. #947 · f983b451
      Andrew Smith authored
      Formatting was done mostly by hand using the following as a guide
      http://gnuvince.wordpress.com/2007/02/26/reformatting-a-css-file-with-vim/
      
      " Replace all sequences of white spaces with one space
      :%s/[ \t\n]\+/ /g
      
      " Go to the end of the command, then forward one character and insert
      " a newline
      ]/lr^M
      
      " Make sure there is a semi-colon before each closing bracket
      :%s/\([^; ]\) *}/\1;}/g
      
      " Add a newline after every semi-colon
      :%s/;/;^M/g
      
      " Add a newline after every opening brace and make put one space
      " between it and the preceeding text
      :%s/\([^ ]*\) *{/\1 {^M/g
      
      " Add two newlines after every closing brace
      :%s/}/}^M^M/g
      
      " Remove 'trailing' spaces in front of the semi-colons
      :%s/ *;/;/g
      
      " Make sure there is only one space after a colon
      :%s/: */: /g
      
      " Make the text before the colon lowercase
      :%s/\(.\{-}\):/\L\1:/g
      
      " Remove all trailing spaces at the beginning of lines
      :%s/^ \+/g
      
      " Indent the whole file
      gg=G
      
      " Split each rule onto its own line (This also matched some
      " property/value combos so needed confirming
      :%s/\([a-z0-9]\+\), \+/\1,^M/gc
      f983b451
  8. 20 May, 2012 4 commits
  9. 19 May, 2012 3 commits
  10. 18 May, 2012 3 commits
  11. 14 May, 2012 4 commits
  12. 16 Apr, 2012 1 commit
  13. 14 Apr, 2012 1 commit
  14. 13 Apr, 2012 2 commits