Created
June 3, 2024 13:55
-
-
Save mgartner/09f1bd4433e50affda25a69ad44b2c3a to your computer and use it in GitHub Desktop.
Reviewable custom style sheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.tab:before { | |
content: "\00bb\00a0"; | |
} | |
/* Languages where tabs are used for indentation -- don't highlight. */ | |
.go.line.content .tab:before { | |
content: "\00a0\00a0"; | |
} | |
:root { | |
--coverage-bar-color-full: #78ff3d; | |
--coverage-bar-color-partial: #fff73d; | |
--coverage-bar-color-none: #E80000; | |
} | |
/* Show line numbers. */ | |
div[data-line-number]:not([data-line-number="0"]):before { | |
content:attr(data-line-number); | |
position:absolute; | |
color: #444; /* line number text color */ | |
padding: 1px 3px 3px; | |
font-size: x-small; | |
display: block; | |
width: 20px; | |
text-align: right; | |
} | |
div[data-line-number]:not([data-line-number="0"]) div.hljs { | |
margin-left: 26px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment