-
Notifications
You must be signed in to change notification settings - Fork 308
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: update modal buttons alignments in element dialogs #3365
base: master
Are you sure you want to change the base?
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,10 @@ | |
&.bce, | ||
&.bcp { | ||
height: 600px; | ||
|
||
.bcu { | ||
height: 100%; | ||
} | ||
} | ||
|
||
&.bcpr { | ||
|
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
@@ -1,6 +1,6 @@ | ||||||||
@import '../variables'; | ||||||||
|
||||||||
.be .be-header { | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the |
||||||||
.be-header { | ||||||||
display: flex; | ||||||||
flex: 0 0 70px; | ||||||||
align-items: center; | ||||||||
|
@@ -16,10 +16,4 @@ | |||||||
flex: 1; | ||||||||
padding-left: 20px; | ||||||||
} | ||||||||
|
||||||||
input[type='search'] { | ||||||||
width: 100%; | ||||||||
font: inherit; | ||||||||
-webkit-appearance: none; | ||||||||
} | ||||||||
Comment on lines
-20
to
-24
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not too sure what these lines were intended for. my assumption is this was related to a Safari issue but we don't target I think it's okay to remove the block now:
|
||||||||
} |
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.
adding
width: 100%
here can be a little risky since it'll apply the style to all text fields in all the elements.I did testing in all the elements but haven't seen an issue yet. most uses of inputs/textareas are already using
width: 100%
. e.g:box-ui-elements/src/elements/content-sidebar/activity-feed/task-form/TaskForm.scss
Line 14 in b9d196f