Skip to content

Commit e9108ed

Browse files
authored
Merge branch 'master' into TMS-1144
2 parents 44541e2 + bf1bdcd commit e9108ed

File tree

8 files changed

+20
-14
lines changed

8 files changed

+20
-14
lines changed

CHANGELOG.MD

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88
## [Unreleased]
99

1010
- TMS-1144: Change aria-attribute for menu-item
11+
- TMS-1148: Responsiveness fixes for zoomed in browsers
12+
- TMS-1149: Accessibility fixes for focus-styles
13+
- TMS-1150: Move header chat script from head to header
14+
- TMS-1151: Change hero-links focus-styles
15+
- TMS-1155: Fix screen-reader text for mobile-nav dropdowns
1116

1217
## [1.9.5] - 2025-04-30
1318

assets/styles/base/_base.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
html {
22
box-sizing: border-box;
3+
min-width: 260px;
34
}
45

56
body {

assets/styles/layouts/_hero.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,10 +174,10 @@
174174
border: 1px solid $secondary;
175175

176176
&:focus {
177-
outline-color: $white;
178-
.icon {
179-
fill: $primary !important;
180-
}
177+
background-color: $primary;
178+
color: $white;
179+
outline-color: transparent;
180+
box-shadow: 0 0 0 3px $white inset;
181181
}
182182
}
183183
}

assets/styles/ui-components/_pagination.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ $pagination-item-transition-speed: $speed !default;
3535
background-color: $pagination-item-background-color-focus;
3636
border-color: transparent;
3737
outline-style: dashed;
38-
outline-offset: -2px;
39-
outline-color: $secondary;
38+
outline-offset: 2px;
39+
outline-color: $primary;
4040
outline-width: 2px;
4141
text-decoration: none;
4242
}

partials/blocks/block-grid-item--featured.dust

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<div class="overlay overlay--dark-40"></div>
99

10-
<div class="grid__item__details is-order-0 has-text-left is-absolute has-bottom-0 pb-7 pr-6 pl-6 has-text-white">
10+
<div class="grid__item__details is-order-0 has-text-left is-absolute has-bottom-0 pb-5 pb-7-tablet pr-4 pr-6-tablet pl-4 pl-6-tablet has-text-white">
1111
{?title}
1212
<h3 class="h4 mb-0 has-text-white">{title|html}</h3>
1313
{/title}

partials/shared/header-logo.dust

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="site-header__logo is-relative">
2-
<div class="site-header__logo-image">
2+
<div class="site-header__logo-image pr-2">
33
{?Header.logo}
44
{?Header.home_url}
55
<a href="{Header.home_url}" class="is-block">

partials/shared/header.dust

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@
1010
{?Header.head_custom_scripts}
1111
{Header.head_custom_scripts|s}
1212
{/Header.head_custom_scripts}
13-
14-
{?Header.chat}
15-
{Header.chat|s}
16-
{/Header.chat}
1713
</head>
1814

1915
<body class="{#WP.body_class}{.}{@sep} {/sep}{/WP.body_class}">
@@ -27,6 +23,10 @@
2723
{Strings.s.header.skip_to_content|s}
2824
</a>
2925

26+
{?Header.chat}
27+
{Header.chat|s}
28+
{/Header.chat}
29+
3030
{?Header.exception_notice}
3131
{>"shared/header-notice" /}
3232
{/Header.exception_notice}

partials/ui/menu/fly-out-nav.dust

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</button>
88

99
{^Header.hide_flyout_primary}
10-
{@menu menu_name="primary" depth="2" ul_id="js-navbar-menu" ul_classes="bulmally-navbar fly-out-nav__primary is-family-secondary" icon_class="{Header.colors.fly_out_nav.link_icon}" menuitem_partial="ui/menu/menu-item" /}
10+
{@menu menu_name="primary" depth="2" ul_id="js-navbar-menu" ul_classes="bulmally-navbar fly-out-nav__primary is-family-secondary" icon_class="{Header.colors.fly_out_nav.link_icon}" menuitem_partial="ui/menu/menu-item" data=Header.strings /}
1111
{/Header.hide_flyout_primary}
1212

1313
{^Header.hide_flyout_secondary}
@@ -17,7 +17,7 @@
1717
{?PageOnepager.component_nav}
1818
<ul class="bulmally-navbar fly-out-nav__primary fly-out-nav__onepager is-family-secondary js-scroll-children">
1919
{#PageOnepager.component_nav}
20-
{>"ui/menu/menu-item" url="#{anchor}" title="{menu_text}" /}
20+
{>"ui/menu/menu-item" url="#{anchor}" title="{menu_text}" data=Header.strings /}
2121
{/PageOnepager.component_nav}
2222
</ul>
2323
{/PageOnepager.component_nav}

0 commit comments

Comments
 (0)