-
-
Notifications
You must be signed in to change notification settings - Fork 336
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
fix(form): action input had wrong border radius in some cases #1197
Conversation
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.
Please also support a possible left action
See https://jsfiddle.net/knr2xw71/
Right borders in left action inputs are also not rounded anymore when focussed
@lubber-de |
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.
LGTM
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.
LGTM
@exoego I update your jsfiddle to see this case : https://jsfiddle.net/dutrieux/4ets2cgm/ |
@dutrieux My first feeling is that the issue you mentioned looks complicated and may require a lot effort, so should be addressed in different PR. |
Description
.ui.input
in.ui.form
has border-radius at all corners.Fomantic-UI/src/definitions/collections/form.less
Line 411 in 2f3312f
Unfortunately, this override brings border-radius to
.ui.action.input
.This PR removes border-radius from
.ui.action.input
in.ui.form
where radius not needed.Testcase
https://jsfiddle.net/qdp6gxLy/1/
Screenshot (when possible)
Closes
#1184
#1185