Code injection syntax colour change

Closes #5179

- Overwrites the yellow code injection syntax highlighting (such as vendor prefixes in CSS) to be black, to match the rest of the property
- Adds rounded corners to the code injection CodeMorror wrapper to match its parents rounded corners (inherits the same value)
This commit is contained in:
Paul Adam Davis 2015-04-28 16:35:14 +01:00
parent 18638d378e
commit 9377694bba

View File

@ -544,4 +544,12 @@
outline: 0;
}
.CodeMirror {
border-radius: inherit; // Inherits from .settings-code-editor
}
// Overwrite bright yellow text
.cm-s-xq-light span.cm-meta {
color: #000;
}
}