-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CKEditor Backward Compatibility #224
Conversation
@loicjaouen Sorry, there was some merge accident. This PR replaces #212. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this all looks fine to me
sorry @tobiasschweizer , I didn't see your comment here but I answered it at length in DSP-788 |
I saw this (rather impressive testing) :-) So we can merge this PR but leave DSP-788 open? |
@@ -6,6 +6,10 @@ | |||
font-family: monospace; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kilchenmann I have just notice that these styles are overridden by the app's main.scss:
* {
font-family: Arial, Helvetica, sans-serif;
}
Any idea what could be done about that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm, we shouldn't use * {
in this css. But it can happen in all apps.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ng-deep
is anyway deprecated since Angular v6. Could you add the two setups in ng-deep to the viewer.scss?
.ck-content code {
font-family: monospace !important;
}
.ck-content pre {
background-color: inherit !important;
}
But not sure if this helps...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tobiasschweizer I just updated the code in the previous comment
@kilchenmann Mörci! |
resolves DSP-788
Reapplies changes from #212 which was merged by accident.