0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

🐛 Fix double-scrollbar in code injection editor (#838)

closes TryGhost/Ghost#8896
- remove `margin-right: 30px` and forced `overflow: scroll` styles for CodeMirror's "Scroll" element in the code injection editors
This commit is contained in:
Filippo Conti 2017-08-29 11:01:31 +02:00 committed by Kevin Ansfield
parent b5987a6979
commit 0d96ac38b5

View file

@ -276,6 +276,11 @@
border-radius: inherit;
}
.settings-code-editor .CodeMirror-scroll {
overflow: hidden !important;
margin-right: 0;
}
.settings-code-editor .cm-s-xq-light span.cm-meta {
color: #000;
}