-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
Prevent accidential selection of line numbers in code view #1860
Conversation
@silverwind Please also update the |
Done, but an unrelated change got built in the css. |
Might be better to untrack the css from git :) |
eb0547d
to
42eb786
Compare
@silverwind I can take it but thanks for your update. |
LGTM |
@appleboy I'll look into overhauling the assets build. |
@silverwind move discussions to #1861 |
LGTM if for now you could manualy add back removed css part so that PR code would be cleaner |
Just land the two commits seperately. |
@silverkorn Please add back removed css part since you don't remove any source code from |
42eb786
to
1180dca
Compare
Found the issue, my local branch was out of date and did not include #1288. After rebasing, |
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.
Looks good other than my comments.
public/less/_repository.less
Outdated
@@ -275,6 +275,10 @@ | |||
color: #999; | |||
background: #f5f5f5; | |||
width: 1%; | |||
-moz-user-select: none; | |||
-ws-user-select: none; |
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.
There's no such thing. It should be -ms-user-select
, not -ws-user-select
.
public/css/index.css
Outdated
@@ -1405,6 +1405,10 @@ footer .ui.language .menu { | |||
color: #999; | |||
background: #f5f5f5; | |||
width: 1%; | |||
-moz-user-select: none; | |||
-ws-user-select: none; |
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.
There's no such thing. It should be -ms-user-select
, not -ws-user-select
.
1180dca
to
4c30218
Compare
@geek1011 fixed that typo. I wish we would use Autoprefixer to prevent issues like that :) |
@appleboy , Thanks for the typo in the username, you sent me a notice and now I know about this project! 😆 |
@silverkorn Sorry for tag wrong name. 👍 I hope I'm not bothering you. |
Before:
After: