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
text-button-settings.html
43 lines
| 1 | <table class="form-table button-options text" role="presentation" v-if="data.button_style === 'text'"> |
| 2 | <tbody> |
| 3 | <tr> |
| 4 | <th scope="row">{{labels.text_button_text}}</th> |
| 5 | <td> |
| 6 | <input type="text" class="regular-text" id="text_button_text" v-model="data.text_button_text" /> |
| 7 | <help-icon :help-text="help.text_button_text "></help-icon> |
| 8 | </td> |
| 9 | </tr> |
| 10 | |
| 11 | <tr> |
| 12 | <th scope="row">{{labels.text_button_text_color}}</th> |
| 13 | <td> |
| 14 | <color-picker id="text_button_text_color" v-model="data.text_button_text_color"></color-picker> |
| 15 | <help-icon :help-text="help.text_button_text_color"></help-icon> |
| 16 | </td> |
| 17 | </tr> |
| 18 | |
| 19 | <tr> |
| 20 | <th scope="row">{{labels.text_button_background_color}}</th> |
| 21 | <td> |
| 22 | <color-picker id="text_button_background_color" v-model="data.text_button_background_color"></color-picker> |
| 23 | <help-icon :help-text="help.text_button_background_color"></help-icon> |
| 24 | </td> |
| 25 | </tr> |
| 26 | |
| 27 | <tr> |
| 28 | <th scope="row">{{labels.text_button_hover_color}}</th> |
| 29 | <td> |
| 30 | <color-picker id="text_button_hover_color" v-model="data.text_button_hover_color"></color-picker> |
| 31 | <help-icon :help-text="help.text_button_hover_color"></help-icon> |
| 32 | </td> |
| 33 | </tr> |
| 34 | |
| 35 | <tr> |
| 36 | <th scope="row">{{labels.text_button_css}}</th> |
| 37 | <td> |
| 38 | <textarea rows="5" cols="100" id="text_button_css" v-model="data.text_button_css"></textarea> |
| 39 | <help-icon :help-text="help.text_button_css"></help-icon> |
| 40 | </td> |
| 41 | </tr> |
| 42 | </tbody> |
| 43 | </table> |