Skip to content

Commit

Permalink
Fixed a11y focus issue with key / value pairs in service editor.
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyanziano committed Oct 10, 2019
1 parent e174390 commit fa826a7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -68,6 +68,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [1917](https://github.com/microsoft/BotFramework-Emulator/pull/1917)
- [1918](https://github.com/microsoft/BotFramework-Emulator/pull/1918)
- [1921](https://github.com/microsoft/BotFramework-Emulator/pull/1921)
- [1923](https://github.com/microsoft/BotFramework-Emulator/pull/1923)
- [1924](https://github.com/microsoft/BotFramework-Emulator/pull/1924)

- [client] Fixed an issue with the transcripts path input inside of the resource settings dialog in PR [1836](https://github.com/microsoft/BotFramework-Emulator/pull/1836)
- [client] Implemented HTML app menu for Windows in PR [1893](https://github.com/microsoft/BotFramework-Emulator/pull/1893)
Expand Down
Expand Up @@ -63,6 +63,17 @@ ul.kv-pair-container {
> * {
width: 100%;
}

// key
> div {
margin-right: 4px;
}

// value
> div + div {
margin-right: 0;
margin-left: 4px;
}
}

input[disabled] {
Expand Down
Expand Up @@ -63,8 +63,8 @@ export class KvPair extends Component<KvPairProps, KvPairState> {
return (
<div>
<span className={styles.header}>
<span>Key</span>
<span>Value</span>
<label>Key</label>
<label>Value</label>
</span>
<ul className={styles.kvPairContainer}>
{kvPairs.map((pair, index) => (
Expand Down

0 comments on commit fa826a7

Please sign in to comment.