-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgithub-customization.user.css
More file actions
31 lines (28 loc) · 1.01 KB
/
github-customization.user.css
File metadata and controls
31 lines (28 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* ==UserStyle==
@name GitHub - Customization
@description Provides some extra customization options for GitHub.
@version 2025.03.23.18.35
@author MetalTxus
@namespace https://github.com/jesuscc1993/
@license CC BY-SA 4.0
@preprocessor stylus
@var text editor-font-family "Editor font family" "ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace"
@var text editor-font-size "Editor font size" "12px"
@var text editor-line-height "Editor line height" "20px"
@var checkbox newline-on-pr "Newline before PR names" 1
==/UserStyle== */
@-moz-document domain("github.com") {
.blob-code-inner,
.react-blob-textarea,
.react-code-text,
.ͼ5 .cm-content {
font-family: editor-font-family !important;
font-size: editor-font-size !important;
line-height: editor-line-height !important;
}
if (newline-on-pr) {
#issues_dashboard a[data-hovercard-type="repository"] {
display: block;
}
}
}