blob: 8ae460b94eec88530fd0c926d38f552a56db81e7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* Limit width of commit title to 72 characters */
.rgh-monospace-textareas #merge_title_field,
.rgh-monospace-textareas #commit-summary-input {
width: calc(72ch + 18px);
}
.rgh-monospace-textareas #merge_title_field,
.rgh-monospace-textareas #commit-summary-input,
.rgh-monospace-textareas textarea {
font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, Courier, monospace !important;
}
.rgh-monospace-textareas textarea {
font-size: 13px;
}
|