feat(userstyle/github-tab-size): add support for cs.github.com

This commit is contained in:
2022-09-21 11:03:57 +01:00
parent 633a837682
commit cb7ff641f0

View File

@@ -1,7 +1,7 @@
/* ==UserStyle==
@name GitHub Tab-Size
@description Customize tab-width in GitHub code views
@version 1.0.3
@version 1.1.0
@license CC0-1.0
@author Jim Myhrberg (https://jimeh.me/)
@namespace jimeh.me
@@ -24,3 +24,12 @@
tab-size: ghts-tab-size !important;
}
}
@-moz-document domain("cs.github.com") {
body {
-moz-tab-size: ghts-tab-size !important;
-webkit-tab-size: ghts-tab-size !important;
-o-tab-size: ghts-tab-size !important;
tab-size: ghts-tab-size !important;
}
}