PluginProbe ʕ •ᴥ•ʔ
WPFront Scroll Top / trunk
WPFront Scroll Top vtrunk
1.5 1.6 1.6.1 1.6.2 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.1 2.1.1 2.2 3.0.0 3.0.1 trunk 1.0 1.0.1 1.1 1.1.1 1.2 1.3 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5
wpfront-scroll-top / includes / settings / html / css-settings.html
wpfront-scroll-top / includes / settings / html Last commit date
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
css-settings.html
27 lines
1 <table class="form-table button-options text" role="presentation">
2 <tbody>
3 <tr>
4 <th scope="row">{{ labels.css_enqueue_file }}</th>
5 <td>
6 <input type="checkbox" id="css_enqueue_file" v-model="data.css_enqueue_file" />
7 <help-icon :help-text="help.css_enqueue_file"></help-icon>
8 </td>
9 </tr>
10
11 <tr>
12 <th scope="row">{{labels.css_file_location}}</th>
13 <td>
14 <input type="text" class="regular-text url" id="css_file_location" v-model="data.css_file_location" disabled="true" />
15 <help-icon :help-text="help.css_file_location"></help-icon>
16 </td>
17 </tr>
18
19 <tr>
20 <th scope="row">{{labels.css_extra_css}}</th>
21 <td>
22 <textarea rows="5" cols="100" id="css_extra_css" v-model="data.css_extra_css"></textarea>
23 <help-icon :help-text="help.css_extra_css"></help-icon>
24 </td>
25 </tr>
26 </tbody>
27 </table>