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
location-settings.html
30 lines
| 1 | <table class="form-table" role="presentation"> |
| 2 | <tbody> |
| 3 | <tr> |
| 4 | <th scope="row">{{ labels.location }}</th> |
| 5 | <td> |
| 6 | <select id="location" v-model="data.location"> |
| 7 | <option v-for="(display, value) in location_options" :value="value">{{ display }}</option> |
| 8 | </select> |
| 9 | <help-icon :help-text="help.location"></help-icon> |
| 10 | </td> |
| 11 | </tr> |
| 12 | <tr> |
| 13 | <th scope="row">{{ labels.margin_x }}</th> |
| 14 | <td> |
| 15 | <input type="text" class="small-text pixels" id="margin_x" v-model="data.margin_x" /> |
| 16 | <span>px</span> |
| 17 | <help-icon :help-text="help.margin_x"></help-icon> |
| 18 | </td> |
| 19 | </tr> |
| 20 | <tr> |
| 21 | <th scope="row">{{ labels.margin_y }}</th> |
| 22 | <td> |
| 23 | <input type="text" class="small-text pixels" id="margin_y" v-model="data.margin_y" /> |
| 24 | <span>px</span> |
| 25 | <help-icon :help-text="help.margin_y"></help-icon> |
| 26 | </td> |
| 27 | </tr> |
| 28 | </tbody> |
| 29 | </table> |
| 30 |