Skip to content

Commit 8da2c1d

Browse files
authored
Merge branch 'master' into TMS-1163
2 parents c90690a + a0454d2 commit 8da2c1d

File tree

13 files changed

+23
-23
lines changed

13 files changed

+23
-23
lines changed

CHANGELOG.MD

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

1010
- TMS-1163: Search results breadcrumbs accessibility fixes
1111

12+
## [1.4.1] - 2025-08-13
13+
14+
- TMS-1160: Fix elements focus outline thickness
15+
1216
## [1.4.0] - 2025-06-23
1317

1418
- TMS-1172: Add video-fields and functionality to hero-component

assets/styles/blocks/_table.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
table.idc-element {
2424
&:focus {
25-
outline: 0.125rem dotted #000;
26-
outline-offset: -0.125rem;
25+
outline: .2rem dotted #000;
26+
outline-offset: -.2rem;
2727
position: relative;
2828
}
2929
}

assets/styles/layouts/_image-carousel.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,5 +107,5 @@
107107
}
108108

109109
.slick-track .modal-trigger:focus {
110-
outline: 0.125rem dotted #000000;
110+
outline: .2rem dotted #000000;
111111
}

assets/styles/settings/brand/_typography.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,8 @@ main {
165165
text-underline-offset: .125rem;
166166

167167
&:focus {
168-
outline: .125rem dotted $link-outline-color !important;
169-
outline-offset: .125rem;
168+
outline: .15rem dotted $link-outline-color !important;
169+
outline-offset: .15rem;
170170
text-decoration: none !important;
171171
}
172172

assets/styles/ui-components/_button.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $button-secondary-border-color: $button-primary-border-color;
1919
&.is-hovered,
2020
&:focus,
2121
&.is-focused {
22-
box-shadow: 0 .125rem .375rem rgba(0, 0, 0, .15);
22+
box-shadow: 0 .15rem .375rem rgba(0, 0, 0, .15);
2323
background-color: $primary !important;
2424
color: $primary-invert !important;
2525
border-color: $primary-invert !important;
@@ -44,7 +44,7 @@ $button-secondary-border-color: $button-primary-border-color;
4444
&:focus,
4545
&.is-focused {
4646
border-color: $button-primary-border-color !important;
47-
outline: .125rem dotted $black !important;
47+
outline: .15rem dotted $black !important;
4848
outline-offset: .25rem !important;
4949
}
5050

assets/styles/ui-components/_forms.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ select {
112112
align-items: center;
113113
justify-content: space-between;
114114
background: none;
115-
border: 0.125rem dashed $black;
115+
border: .2rem dashed $black;
116116
}
117117

118118
.gform_button_select_files,
@@ -123,7 +123,7 @@ select {
123123
border-color: $primary-invert !important;
124124
background-color: $primary !important;
125125
color: $primary-invert !important;
126-
outline: 0.125rem dotted $black !important;
126+
outline: .2rem dotted $black !important;
127127
outline-offset: 0.25rem !important;
128128
}
129129
}

assets/styles/ui-components/_image-gallery.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
&:focus {
1111
outline-offset: 0.25rem !important;
12-
outline: .125rem dotted $white !important;
12+
outline: .15rem dotted $white !important;
1313
}
1414

1515
.icon {
@@ -71,6 +71,6 @@
7171
}
7272

7373
&:focus {
74-
outline: .125rem dotted $white !important;
74+
outline: .15rem dotted $white !important;
7575
}
7676
}

assets/styles/ui-components/_modal.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
fill: $black !important;
77
}
88
&:focus {
9-
outline: 0.125rem dotted $white !important;
9+
outline: .2rem dotted $white !important;
1010
outline-offset: 0.25rem !important;
1111
color: $primary-invert !important; // sass-lint:disable-line no-important
1212
.icon {
@@ -42,7 +42,7 @@
4242
}
4343
}
4444
&:focus {
45-
outline: 0.125rem dotted $white !important;
45+
outline: .2rem dotted $white !important;
4646
outline-offset: 0.25rem !important;
4747
}
4848

@@ -93,7 +93,7 @@
9393
.slick-current {
9494
&:focus {
9595
.image-carousel__item {
96-
outline: 0.125rem dotted #fff;
96+
outline: .2rem dotted #fff;
9797
outline-offset: 0.25rem;
9898
}
9999
}

assets/styles/ui-components/header/_bulmally-navbar.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
.bulmally-navbar {
66
.dropdown-toggler {
77
&:focus {
8-
outline-color: $white !important;
8+
outline-color: currentColor !important;
99
}
1010
}
1111
}

assets/styles/ui-components/header/_header-top.scss

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@
1111
background-color: $primary;
1212
color: $primary-invert;
1313

14-
.button {
15-
outline-color: $white !important;
16-
}
17-
1814
&__logo-image {
1915
max-width: 10rem;
2016

@@ -26,7 +22,7 @@
2622
> a {
2723
&:focus {
2824
outline-offset: .2rem;
29-
outline: .125rem dotted $white !important;
25+
outline: .15rem dotted $primary-invert !important;
3026
}
3127
}
3228
}

0 commit comments

Comments
 (0)