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
59 lines
688 B
CSS
59 lines
688 B
CSS
/* IE6 how i love to hate thee */
|
|
|
|
#account-nav li a {
|
|
width: 45px;
|
|
}
|
|
|
|
#account-nav li li a {
|
|
width: 150px;
|
|
}
|
|
|
|
.title-bar {
|
|
zoom: 1;
|
|
}
|
|
|
|
.title-bar-extras label {
|
|
float: none;
|
|
display: inline;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
.issue-dropdown li.hover {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.issue-dropdown li.hover ul {
|
|
display: block;
|
|
left: 112px;
|
|
}
|
|
|
|
body .file-thumbs a {
|
|
width: 150px;
|
|
}
|
|
|
|
#history .journal {
|
|
zoom: 1;
|
|
}
|
|
|
|
body #history .wiki {
|
|
overflow: hidden;
|
|
zoom: 1;
|
|
}
|
|
|
|
#main-menu li li {
|
|
height: 30px;
|
|
}
|
|
|
|
#main-menu li li li {
|
|
height: auto;
|
|
}
|
|
|
|
a.has-thumb.active {
|
|
background: none;
|
|
}
|
|
|
|
.title-bar-extras ul {
|
|
background-image: none;
|
|
border-top: 1px solid #154E5D;
|
|
}
|