mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
19 lines
392 B
CSS
19 lines
392 B
CSS
/* Exclude CodeMirror from the border-box reset to avoid scrollbar problems */
|
|
.CodeMirror,
|
|
.CodeMirror * {
|
|
box-sizing: initial;
|
|
}
|
|
|
|
/* Re-apply CodeMirror's content-box styles overridden by above reset */
|
|
.CodeMirror-scroll,
|
|
.CodeMirror-sizer,
|
|
.CodeMirror-gutter,
|
|
.CodeMirror-gutters,
|
|
.CodeMirror-linenumber {
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
.CodeMirror-linenumber {
|
|
min-width: 14px;
|
|
}
|