-
Notifications
You must be signed in to change notification settings - Fork 51
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
Add scrollbar in codeEditor #127
Comments
@prijeshb please assign me this issue |
@revanth-reddy Assigned to you. |
Can I work on this issue. |
Hey @AdityaAnandKrishna, @revanth-reddy is already working on this issue. You may choose another. |
@revanth-reddy Any updates ?? |
@prijeshb The scrollbar is hidden because of styling from node_modules/simplemde/dist/simplemde.min.css where the code is which has to be changed to But Node_modules is added to git_ignore so direct change in css won't work because of git. |
The best solution would be to remove the CSS property applied. Or If you
want apply a CSS property, you may want to go for inline CSS.
…On Sun, Feb 17, 2019, 1:21 PM Revanth Reddy ***@***.*** wrote:
@prijeshb <https://github.com/prijeshb> The scrollbar is hidden because
of styling from node_modules/simplemde/dist/simplemde.min.css
where the code is
.CodeMirror-scroll{
min-height:300px;
}
which has to be changed to
.CodeMirror-scroll{
height:300px;
}
But Node_modules is added to git_ignore so direct change in css won't work
because of git.
I am still struck there.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#127 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ArvXZ7TGSXREPNtpoUSKaR6QtpU7jditks5vOQocgaJpZM4a8Dn6>
.
|
Describe the bug
currently no scrollbar is loaded as you increase text cotent in editor, but instead size of Editor increases.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Vertical scrollbar is available for scrolling, if you add more content to editor.
Screenshots
In Comments
On AddIssue
Additional context
You can find corresponding files from src/app/shared/comments folder
The text was updated successfully, but these errors were encountered: