accessibility-settings.html
1 year ago
color-picker.html
1 year ago
color-picker.scss
1 year ago
css-settings.html
1 year ago
display-settings.html
1 year ago
display-settings.scss
1 year ago
filter-settings.html
1 year ago
font-awesome-button-settings.html
1 year ago
font-awesome-button-settings.scss
1 year ago
help-icon.html
1 year ago
help-icon.scss
1 year ago
image-button-settings.html
1 year ago
image-button-settings.scss
1 year ago
index.php
1 year ago
location-settings.html
1 year ago
posts-filter-selection.html
1 year ago
posts-filter-selection.scss
1 year ago
text-button-settings.html
1 year ago
accessibility-settings.html
27 lines
| 1 | <table class="form-table button-options text" role="presentation"> |
| 2 | <tbody> |
| 3 | <tr> |
| 4 | <th scope="row">{{labels.accessibility_aria_label}}</th> |
| 5 | <td> |
| 6 | <input type="text" class="regular-text" id="accessibility_aria_label" v-model="data.accessibility_aria_label" /> |
| 7 | <help-icon :help-text="help.accessibility_aria_label"></help-icon> |
| 8 | </td> |
| 9 | </tr> |
| 10 | |
| 11 | <tr> |
| 12 | <th scope="row">{{labels.accessibility_title}}</th> |
| 13 | <td> |
| 14 | <input type="text" class="regular-text" id="accessibility_title" v-model="data.accessibility_title" /> |
| 15 | <help-icon :help-text="help.accessibility_title"></help-icon> |
| 16 | </td> |
| 17 | </tr> |
| 18 | |
| 19 | <tr> |
| 20 | <th scope="row">{{labels.accessibility_screen_reader_text}}</th> |
| 21 | <td> |
| 22 | <input type="text" class="regular-text" id="accessibility_screen_reader_text" v-model="data.accessibility_screen_reader_text" /> |
| 23 | <help-icon :help-text="help.accessibility_screen_reader_text"></help-icon> |
| 24 | </td> |
| 25 | </tr> |
| 26 | </tbody> |
| 27 | </table> |