Skip to content

Commit 93937dd

Browse files
authored
Merge branch 'master' into TMS-1163
2 parents 4b4074d + b1524b4 commit 93937dd

File tree

12 files changed

+19
-15
lines changed

12 files changed

+19
-15
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.12.1] - 2025-08-13
13+
14+
- TMS-1160: Fix elements focus outline thickness
15+
1216
## [1.12.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: 0.15rem dotted #000;
26+
outline-offset: -0.15rem;
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
@@ -102,5 +102,5 @@
102102
}
103103

104104
.slick-track .modal-trigger:focus {
105-
outline: 0.125rem dotted #000000;
105+
outline: 0.15rem dotted #000000;
106106
}

assets/styles/settings/brand/_typography.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ main {
165165
text-underline-offset: .125rem;
166166

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

assets/styles/ui-components/_button.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ $button-secondary-border-color: $button-primary-border-color;
3838
&:focus,
3939
&.is-focused {
4040
border-color: $button-primary-border-color !important;
41-
outline: .125rem dotted $black !important;
41+
outline: .15rem dotted $black !important;
4242
outline-offset: .25rem !important;
4343
}
4444

assets/styles/ui-components/_forms.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ select {
110110
border-color: $black !important;
111111
background-color: $white !important;
112112
color: $black !important;
113-
outline: 0.125rem dotted $black !important;
113+
outline: 0.15rem dotted $black !important;
114114
outline-offset: 0.25rem !important;
115115
}
116116
}

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: 0.15rem dotted $white !important;
1010
outline-offset: 0.25rem !important;
1111
color: $primary !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: 0.15rem 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: 0.15rem dotted #fff;
9797
outline-offset: 0.25rem;
9898
}
9999
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
> a {
2727
&:focus {
2828
outline-offset: .2rem;
29-
outline: .125rem dotted $white !important;
29+
outline: .15rem dotted $white !important;
3030
}
3131
}
3232
}

assets/styles/ui-components/header/_language-nav.scss

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

6363
&:focus {
6464
outline-offset: .2rem;
65-
outline: .125rem dotted $white !important;
65+
outline: .15rem dotted $white !important;
6666
}
6767
}
6868
}

0 commit comments

Comments
 (0)