Skip to content

Commit

Permalink
Fixes #36963 - Table index new button far in large screens
Browse files Browse the repository at this point in the history
(cherry picked from commit d834eb6)
  • Loading branch information
MariaAga committed Dec 7, 2023
1 parent 98917e4 commit 2afd24b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,10 @@ const TableIndexPage = ({
</ToolbarGroup>
)}
{actionButtons.length > 0 && (
<ToolbarGroup alignment={{ default: 'alignLeft' }}>
<ToolbarGroup
alignment={{ default: 'alignLeft' }}
className="table-toolbar-actions"
>
<ToolbarItem>
<ActionButtons buttons={actionButtons} />
</ToolbarItem>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
.toolbar-search {
flex-grow: 1;
}
.autocomplete-search {
max-width: 600px;
.table-toolbar-actions {
padding-left: 16px;
}
}
.pf-c-toolbar__group {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,7 @@
.pf-c-dropdown.pf-m-align-right {
width: unset;
}
.pf-c-dropdown {
width: unset; // just in case Katello overrides it
}
}

0 comments on commit 2afd24b

Please sign in to comment.