This re-styles your sublime text 2 sidebar to be darker, so it doesn't blind you when using a dark theme.
Save the Default.sublime-theme file into packages/Theme - Default, make a backup of your original if you want to be able to go back easily.
| config.json | |
| reading-image.png |
| !!! 5 | |
| //if lt IE 7 | |
| html(class="no-js ie6 oldie", lang="en") | |
| //if IE 7 | |
| html(class="no-js ie7 oldie", lang="en") | |
| //if IE 8 | |
| html(class="no-js ie8 oldie", lang="en") | |
| // [if gt IE 8] <! | |
| html(class="no-js", lang="en") | |
| // <![endif] |
| // ---------------------------------------------------------- | |
| // A short snippet for detecting versions of IE in JavaScript | |
| // without resorting to user-agent sniffing | |
| // ---------------------------------------------------------- | |
| // If you're not in IE (or IE version is less than 5) then: | |
| // ie === undefined | |
| // If you're in IE (>=5) then you can determine which version: | |
| // ie === 7; // IE7 | |
| // Thus, to detect IE: | |
| // if (ie) {} |