add firefox tab size change

Torsten Grote
2019-05-24 13:29:55 +00:00
parent c5d8af9836
commit b8a38bb24a

@@ -7,4 +7,18 @@
* Use `foo` rather than `mFoo`, `_foo`, etc for field names
* Use `foo` rather than `this.foo` unless there's also a local `foo`
* `CONSTANTS_LIKE_THIS`, `variablesLikeThis`
* `AbcCamelCase` rather than `ABCCamelCase`
* `AbcCamelCase` rather than `ABCCamelCase`
# Firefox Tab Size in Gitlab
Create `$HOME/.mozilla/firefox/yrj5n7s5.default/chrome/userContent.css` (if it doesn't exist) and add:
```css
@-moz-document domain(code.briarproject.org) {
.line {
-moz-tab-size: 4;
}
}
```
Restart your browser and enjoy a custom tab size in Gitlab's code and diffs.