diff --git a/styles/components/_portfolio_layout.scss b/styles/components/_portfolio_layout.scss index 080d6d8d..e53d0c83 100644 --- a/styles/components/_portfolio_layout.scss +++ b/styles/components/_portfolio_layout.scss @@ -65,6 +65,10 @@ margin: 2 * $gap; + .col--grow { + overflow: inherit; + } + .portfolio-header__name { @include h1; } diff --git a/styles/elements/_tooltip.scss b/styles/elements/_tooltip.scss index 76a1be50..d444826f 100644 --- a/styles/elements/_tooltip.scss +++ b/styles/elements/_tooltip.scss @@ -8,8 +8,6 @@ background-color: $color-aqua-lightest; padding: $gap * 3; border-left: ($gap / 2) solid $color-blue; - position: relative; - z-index: 2; } .tooltip-arrow { diff --git a/templates/portfolios/header.html b/templates/portfolios/header.html index 7809f8a0..1af5dbd5 100644 --- a/templates/portfolios/header.html +++ b/templates/portfolios/header.html @@ -1,4 +1,5 @@ {% from "components/icon.html" import Icon %} +{% from "components/tooltip.html" import Tooltip %} {% macro Link(icon, text, url, active=False) %} @@ -17,9 +18,12 @@
Available budget - + {{ + Tooltip( + ('portfolios.task_orders.available_budget_help_description' | translate), + title='' + ) + }}
diff --git a/translations.yaml b/translations.yaml index d9512816..4547e4fb 100644 --- a/translations.yaml +++ b/translations.yaml @@ -510,6 +510,8 @@ task_orders: review_title: Task Order Builder task_order_information: Task Order Information portfolios: + task_orders: + available_budget_help_description: The available budget shown includes the available budget of all active task orders index: empty: title: You have no apps yet