Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

[MM-13811] fixes wrong stylings on several modals #2280

Merged
merged 3 commits into from
Jan 30, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix wrong styling on several modals
  • Loading branch information
svelle committed Jan 24, 2019
commit 0006ba46162b162593d61d52bf8461e2565940bf
2 changes: 1 addition & 1 deletion components/get_link_modal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export default class GetLinkModal extends React.PureComponent {
<button
id='linkModalCloseButton'
type='button'
className='btn btn-default'
className='btn btn-link'
onClick={this.onHide}
>
<FormattedMessage
Expand Down
2 changes: 1 addition & 1 deletion components/invite_member_modal/invite_member_modal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ class InviteMemberModal extends React.PureComponent {
{serverError}
<button
type='button'
className='btn btn-default'
className='btn btn-link'
onClick={this.addInviteFields}
>
<FormattedMessage
Expand Down
4 changes: 2 additions & 2 deletions components/multiselect/multiselect.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ export default class MultiSelect extends React.Component {
if (options.length > pageEnd) {
nextButton = (
<button
className='btn btn-default filter-control filter-control__next'
className='btn btn-link filter-control filter-control__next'
onClick={this.nextPage}
>
<FormattedMessage
Expand All @@ -264,7 +264,7 @@ export default class MultiSelect extends React.Component {
if (this.state.page > 0) {
previousButton = (
<button
className='btn btn-default filter-control filter-control__prev'
className='btn btn-link filter-control filter-control__prev'
onClick={this.prevPage}
>
<FormattedMessage
Expand Down