Skip to content

Instantly share code, notes, and snippets.

@freeeve
Created March 7, 2014 22:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save freeeve/9421154 to your computer and use it in GitHub Desktop.
Save freeeve/9421154 to your computer and use it in GitHub Desktop.
userstyle for making tabs 3 spaces
.highlight pre {
-moz-tab-size: 3 !important;
-webkit-tab-size: 3 !important;
-o-tab-size: 3 !important;
tab-size: 3 !important;
}
textarea.code {
-moz-tab-size: 3 !important;
-webkit-tab-size: 3 !important;
-o-tab-size: 3 !important;
tab-size: 3 !important;
}
pre {
-moz-tab-size: 3 !important;
-webkit-tab-size: 3 !important;
-o-tab-size: 3 !important;
tab-size: 3 !important;
}
.type-ruby .highlight pre {
-moz-tab-size: 2 !important;
-webkit-tab-size: 2 !important;
-o-tab-size: 2 !important;
tab-size: 2 !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment