-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed several accessibility issues. (#1195)
* Added asterisks to required form fields. * Fixed luminosity contrast ratio for the form group toggle button. * Unified hyperlink selector controls across components. Fixed tooltip binding. * Added setting the aria-selected tag to code samples tabs.
- Loading branch information
Showing
17 changed files
with
65 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
<fieldset class="form flex-item flex-item-grow" data-bind="scrollable: {}"> | ||
<div class="form-group"> | ||
<label class="form-label"> | ||
<label for="hyperlink" class="form-label"> | ||
Link to product details page | ||
<button class="btn btn-info" type="button" title="Help" | ||
data-bind="tooltipToggle: 'A link to be navigated on click.'"></button> | ||
data-bind="tooltip: 'A link to be navigated on click.'"></button> | ||
</label> | ||
<div class="input-group"> | ||
<a href="#" class="form-control" role="button" | ||
data-bind="text: hyperlinkTitle, balloon: { component: { name: 'hyperlink-selector', params: { hyperlink: $component.hyperlink, onChange: $component.onHyperlinkChange } } }"> | ||
</a> | ||
<div class="input-group-addon"> | ||
<input id="hyperlink" type="text" class="form-control" readonly data-bind="value: hyperlinkTitle" /> | ||
<button class="btn input-group-btn" title="Select hyperlink" aria-label="Select hyperlink" | ||
data-bind="balloon: { position: 'right', component: { name: 'hyperlink-selector', params: { hyperlink: $component.hyperlink, onChange: $component.onHyperlinkChange } } }"> | ||
<i class="paperbits-icon paperbits-link-69-2"></i> | ||
</div> | ||
</button> | ||
</div> | ||
</div> | ||
</fieldset> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 6 additions & 7 deletions
13
src/components/apis/history-of-api/ko/historyOfApiEditor.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
<fieldset class="form flex-item flex-item-grow" data-bind="scrollable: {}"> | ||
<div class="form-group"> | ||
<label class="form-label"> | ||
<label for="hyperlink" class="form-label"> | ||
Link to API details page | ||
<button class="btn btn-info" type="button" title="Help" | ||
data-bind="tooltipToggle: 'A link to be navigated on click.'"></button> | ||
data-bind="tooltip: 'A link to be navigated on click.'"></button> | ||
</label> | ||
<div class="input-group"> | ||
<a href="#" class="form-control" role="button" | ||
data-bind="text: hyperlinkTitle, balloon: { component: { name: 'hyperlink-selector', params: { hyperlink: $component.hyperlink, onChange: $component.onHyperlinkChange } } }"> | ||
</a> | ||
<div class="input-group-addon"> | ||
<input id="hyperlink" type="text" class="form-control" readonly data-bind="value: hyperlinkTitle" /> | ||
<button class="btn input-group-btn" title="Select hyperlink" aria-label="Select hyperlink" | ||
data-bind="balloon: { position: 'right', component: { name: 'hyperlink-selector', params: { hyperlink: $component.hyperlink, onChange: $component.onHyperlinkChange } } }"> | ||
<i class="paperbits-icon paperbits-link-69-2"></i> | ||
</div> | ||
</button> | ||
</div> | ||
</div> | ||
</fieldset> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 6 additions & 7 deletions
13
src/components/products/product-apis/ko/productApisEditor.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
<fieldset class="form flex-item flex-item-grow" data-bind="scrollable: {}"> | ||
<div class="form-group"> | ||
<label class="form-label"> | ||
<label for="hyperlink" class="form-label"> | ||
Link to API details page | ||
<button class="btn btn-info" type="button" title="Help" | ||
data-bind="tooltipToggle: 'A link to be navigated on click.'"></button> | ||
data-bind="tooltip: 'A link to be navigated on click.'"></button> | ||
</label> | ||
<div class="input-group"> | ||
<a href="#" class="form-control" role="button" | ||
data-bind="text: hyperlinkTitle, balloon: { component: { name: 'hyperlink-selector', params: { hyperlink: $component.hyperlink, onChange: $component.onHyperlinkChange } } }"> | ||
</a> | ||
<div class="input-group-addon"> | ||
<input id="hyperlink" type="text" class="form-control" readonly data-bind="value: hyperlinkTitle" /> | ||
<button class="btn input-group-btn" title="Select hyperlink" aria-label="Select hyperlink" | ||
data-bind="balloon: { position: 'right', component: { name: 'hyperlink-selector', params: { hyperlink: $component.hyperlink, onChange: $component.onHyperlinkChange } } }"> | ||
<i class="paperbits-icon paperbits-link-69-2"></i> | ||
</div> | ||
</button> | ||
</div> | ||
</div> | ||
</fieldset> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
src/components/users/signup-social/ko/runtime/signup-social.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.