Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "office-ui-fabric-react",
"comment": "Fix minor accessibility bugs in DetailsList",
"type": "patch"
}
],
"packageName": "office-ui-fabric-react",
"email": "tmichon@microsoft.com"
}
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ $checkBoxHeight: 18px;
}

.circle {
color: $ms-color-neutralTertiaryAlt;
color: $ms-color-neutralSecondary;

@include high-contrast {
color: WindowText;
Expand All @@ -78,7 +78,7 @@ $checkBoxHeight: 18px;
}

.check {
color: $ms-color-neutralTertiaryAlt;
color: $ms-color-neutralSecondary;
font-size: 16px;
left: .5px;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export class DetailsColumn extends BaseComponent<IDetailsColumnProps> {
ref={this._root}
role={'columnheader'}
aria-sort={column.isSorted ? (column.isSortedDescending ? 'descending' : 'ascending') : 'none'}
aria-disabled={column.columnActionsMode === ColumnActionsMode.disabled}
aria-colindex={columnIndex}
className={css(
'ms-DetailsHeader-cell',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ exports[`DetailsHeader can render 1`] = `
</div>
<div
aria-colindex={2}
aria-disabled={false}
aria-sort="none"
className="ms-DetailsHeader-cell is-actionable undefined"
data-automationid="ColumnsHeaderColumn"
Expand Down Expand Up @@ -186,7 +185,6 @@ exports[`DetailsHeader can render 1`] = `
/>
<div
aria-colindex={3}
aria-disabled={false}
aria-sort="none"
className="ms-DetailsHeader-cell is-actionable undefined"
data-automationid="ColumnsHeaderColumn"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@ exports[`DetailsList renders List correctly 1`] = `
</div>
<div
aria-colindex={2}
aria-disabled={false}
aria-sort="none"
className="ms-DetailsHeader-cell is-actionable undefined"
data-automationid="ColumnsHeaderColumn"
Expand Down