Skip to content

Commit

Permalink
Merge pull request #962 from mturley/957-plan-details-popover-width-fix
Browse files Browse the repository at this point in the history
[#957] [BZ#1712873] Prevent migration task info popovers with long error messages from being pushed off the screen
  • Loading branch information
mzazrivec authored May 24, 2019
2 parents c8e818d + 9c259e4 commit b027796
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions app/javascript/react/screens/App/Plan/Plan.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
margin-bottom: 0px;
}

.task-info-popover .popover-title {
text-transform: capitalize;
.task-info-popover {
max-width: 450px;
}

.no-max-width {
max-width: none;
.task-info-popover .popover-title {
text-transform: capitalize;
}
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ class PlanRequestDetailList extends React.Component {
<Popover
id={`popover${task.id}${n}`}
title={V2V_MIGRATION_STATUS_MESSAGES[task.message]}
className="task-info-popover no-max-width"
className="task-info-popover"
>
<div>
<div>
Expand Down

0 comments on commit b027796

Please sign in to comment.