Changeset 3424479
- Timestamp:
- 12/21/2025 06:52:10 AM (3 weeks ago)
- Location:
- scrollbar/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
scrollbar-admin.php (modified) (9 diffs)
-
scrollbar-wp.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
scrollbar/trunk/readme.txt
r3355337 r3424479 2 2 Contributors: themepoints 3 3 Donate link: https://themepoints.com 4 Tags: scrollbar, custom scrollbar, navigation, scroll, nice scrollbar , scrollbars, animation4 Tags: scrollbar, custom scrollbar, navigation, scroll, nice scrollbar 5 5 Requires at least: 4.0 6 Tested up to: 6. 8.27 Stable tag: 2.0. 56 Tested up to: 6.9 7 Stable tag: 2.0.6 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 53 53 54 54 == Changelog == 55 56 = 2.0.6 = 57 * Update Options Page. 55 58 56 59 = 2.0.5 = -
scrollbar/trunk/scrollbar-admin.php
r3355337 r3424479 32 32 update_option('themepoints_scrollbar_autohide', $themepoints_scrollbar_autohide); 33 33 ?> 34 <div class="updated"><p><strong><?php _e('Changes Saved.' ); ?></strong></p></div>34 <div class="updated"><p><strong><?php esc_html_e('Changes Saved.', 'scrollbar' ); ?></strong></p></div> 35 35 <?php 36 36 } … … 39 39 40 40 <style> 41 .wrap.scrollbar-wp { 42 max-width: 800px; 43 padding: 20px; 44 background-color: #fff; 45 box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 46 } 47 .wrap.scrollbar-wp .updated { 48 background-color: #d4edda; 49 border-color: #c3e6cb; 50 color: #155724; 51 padding: 10px; 52 margin: 10px 0; 53 border: 1px solid transparent; 54 border-radius: 4px; 55 } 56 .wrap.scrollbar-wp label { 57 font-weight: bold; 58 } 59 .wrap.scrollbar-wp input[type="text"] { 60 padding: 5px; 61 margin-top: 0px; 62 box-sizing: border-box; 63 } 41 .wrap.scrollbar-wp {max-width: 800px;padding: 20px;background-color: #fff;box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);} 42 .wrap.scrollbar-wp .updated {background-color: #d4edda;border-color: #c3e6cb;color: #155724;padding: 10px;margin: 10px 0;border: 1px solid transparent;border-radius: 4px;} 43 .wrap.scrollbar-wp label {font-weight: bold;} 44 .wrap.scrollbar-wp input[type="text"] {padding: 5px;margin-top: 0px;box-sizing: border-box;} 64 45 </style> 65 46 66 47 <div class="wrap scrollbar-wp"> 67 <h2><?php esc_html_e( 'Scrollbar Option Settings', ' tpscrollbars' ); ?></h2>68 <p><?php echo wp_kses_post( 'We would greatly appreciate it if you could take a moment to share your thoughts by giving us a rating in the <a href="https://wordpress.org/support/plugin/scrollbar/reviews/#new-post" target="_blank"><strong>WordPress.org</strong></a>?', ' tpscrollbars' ); ?></p>48 <h2><?php esc_html_e( 'Scrollbar Option Settings', 'scrollbar' ); ?></h2> 49 <p><?php echo wp_kses_post( 'We would greatly appreciate it if you could take a moment to share your thoughts by giving us a rating in the <a href="https://wordpress.org/support/plugin/scrollbar/reviews/#new-post" target="_blank"><strong>WordPress.org</strong></a>?', 'scrollbar' ); ?></p> 69 50 <form method="post" action=""> 70 51 <input type="hidden" name="scrollbar_wp_hidden" value="Y"> … … 76 57 <tr valign="top"> 77 58 <th scope="row"> 78 <label for="themepoints_scrollbar_colors"><?php esc_html_e( 'Scrollbar Color:', ' tpscrollbars' ); ?></label>59 <label for="themepoints_scrollbar_colors"><?php esc_html_e( 'Scrollbar Color:', 'scrollbar' ); ?></label> 79 60 </th> 80 61 <td style="vertical-align:middle;"> 81 62 <input size='10' name='themepoints_scrollbar_colors' class='scrollbar-color' type='text' id="scrollbar_color" value='<?php echo esc_attr($themepoints_scrollbar_colors); ?>' /><br /> 82 <span><?php esc_html_e('Select Scrollbar Color.', ' tpscrollbars'); ?></span>63 <span><?php esc_html_e('Select Scrollbar Color.', 'scrollbar'); ?></span> 83 64 </td> 84 65 </tr> … … 86 67 <tr valign="top"> 87 68 <th scope="row"> 88 <label for="themepoints_scrollbar_width"><?php esc_html_e( 'Scrollbar Width:', ' tpscrollbars' ); ?></label>69 <label for="themepoints_scrollbar_width"><?php esc_html_e( 'Scrollbar Width:', 'scrollbar' ); ?></label> 89 70 </th> 90 71 <td style="vertical-align:middle;"> 91 72 <input size='10' name='themepoints_scrollbar_width' class='scrollbar-width' type='number' id="scrollbar_width" value='<?php if ( !empty( $themepoints_scrollbar_width ) ) echo esc_attr($themepoints_scrollbar_width); else echo ''; ?>' />px<br /> 92 <span><?php esc_html_e('Select scrollbar width. Default Width:5.', ' tpscrollbars'); ?></span>73 <span><?php esc_html_e('Select scrollbar width. Default Width:5.', 'scrollbar'); ?></span> 93 74 </td> 94 75 </tr> … … 96 77 <tr valign="top"> 97 78 <th scope="row"> 98 <label for="themepoints_scrollbar_radius"><?php esc_html_e( 'Scrollbar Border Radius:', ' tpscrollbars' ); ?></label>79 <label for="themepoints_scrollbar_radius"><?php esc_html_e( 'Scrollbar Border Radius:', 'scrollbar' ); ?></label> 99 80 </th> 100 81 <td style="vertical-align:middle;"> 101 82 <input size='10' name='themepoints_scrollbar_radius' class='scrollbar-radius' type='number' id="scrollbar_radius" value='<?php if ( !empty( $themepoints_scrollbar_radius ) ) echo esc_attr($themepoints_scrollbar_radius); else echo ''; ?>' />px<br /> 102 <span><?php esc_html_e('Select scrollbar border radius. Default border-radius:0.', ' tpscrollbars'); ?></span>83 <span><?php esc_html_e('Select scrollbar border radius. Default border-radius:0.', 'scrollbar'); ?></span> 103 84 </td> 104 85 </tr> … … 106 87 <tr valign="top"> 107 88 <th scope="row"> 108 <label for="themepoints_scrollbar_speed"><?php esc_html_e( 'Scrollbar Scroll Speed:', ' tpscrollbars' ); ?></label>89 <label for="themepoints_scrollbar_speed"><?php esc_html_e( 'Scrollbar Scroll Speed:', 'scrollbar' ); ?></label> 109 90 </th> 110 91 <td style="vertical-align:middle;"> 111 92 <input size='10' name='themepoints_scrollbar_speed' class='scrollbar-speed' type='number' id="scrollbar_speed" value='<?php if ( !empty( $themepoints_scrollbar_speed ) ) echo esc_attr($themepoints_scrollbar_speed); else echo ''; ?>' /><br /> 112 <span><?php esc_html_e('Select scrollbar scroll speed. Default Speed:60.', ' tpscrollbars'); ?></span>93 <span><?php esc_html_e('Select scrollbar scroll speed. Default Speed:60.', 'scrollbar'); ?></span> 113 94 </td> 114 95 </tr> … … 116 97 <tr valign="top"> 117 98 <th scope="row"> 118 <label for="themepoints_scrollbar_border"><?php esc_html_e( 'Scrollbar Border:', ' tpscrollbars' ); ?></label>99 <label for="themepoints_scrollbar_border"><?php esc_html_e( 'Scrollbar Border:', 'scrollbar' ); ?></label> 119 100 </th> 120 101 <td style="vertical-align:middle;"> 121 102 <input size='10' name='themepoints_scrollbar_border' class='scrollbar-border' type='number' id="scrollbar_border" value='<?php if ( !empty( $themepoints_scrollbar_border ) ) echo esc_attr($themepoints_scrollbar_border); else echo ''; ?>' />px<br /> 122 <span><?php esc_html_e('Select scrollbar border. Default Border:0.', ' tpscrollbars'); ?></span>103 <span><?php esc_html_e('Select scrollbar border. Default Border:0.', 'scrollbar'); ?></span> 123 104 </td> 124 105 </tr> … … 126 107 <tr valign="top"> 127 108 <th scope="row"> 128 <label for="themepoints_scrollbar_autohide"><?php esc_html_e( 'Auto Hide Mode:', ' tpscrollbars' ); ?></label>109 <label for="themepoints_scrollbar_autohide"><?php esc_html_e( 'Auto Hide Mode:', 'scrollbar' ); ?></label> 129 110 </th> 130 111 <td style="vertical-align:middle;"> 131 112 <select class="timezone_string" name="themepoints_scrollbar_autohide"> 132 <option value="true" <?php if($themepoints_scrollbar_autohide=='true') echo "selected"; ?> ><?php esc_html_e( 'Yes', ' tpscrollbars' ); ?></option>133 <option value="false" <?php if($themepoints_scrollbar_autohide=='false') echo "selected"; ?> ><?php esc_html_e( 'No', ' tpscrollbars' ); ?></option>113 <option value="true" <?php if($themepoints_scrollbar_autohide=='true') echo "selected"; ?> ><?php esc_html_e( 'Yes', 'scrollbar' ); ?></option> 114 <option value="false" <?php if($themepoints_scrollbar_autohide=='false') echo "selected"; ?> ><?php esc_html_e( 'No', 'scrollbar' ); ?></option> 134 115 </select><br/> 135 <span><?php esc_html_e('Enable/Disable scrollbar Auto Hide Mode.', ' tpscrollbars'); ?></span>116 <span><?php esc_html_e('Enable/Disable scrollbar Auto Hide Mode.', 'scrollbar'); ?></span> 136 117 </td> 137 118 </tr> … … 139 120 </table> 140 121 <p class="submit"> 141 <input class="button button-primary" type="submit" name="Submit" value="<?php _e('Save Changes', 'tpscrollbars' ); ?>" />122 <input class="button button-primary" type="submit" name="Submit" value="<?php esc_html_e('Save Changes', 'scrollbar' ); ?>" /> 142 123 </p> 143 124 </form> -
scrollbar/trunk/scrollbar-wp.php
r3355337 r3424479 4 4 Plugin URI: https://themepoints.com 5 5 Description: Scrollbars wp is really simple, With CSS3 it’s kind of magic! You can design your own scrollbar and use it for your website. You can use these scrollbars for every type of Website. 6 Version: 2.0. 56 Version: 2.0.6 7 7 Author: themepoints 8 8 TextDomain: scrollbar 9 9 Author URI: https://themepoints.com 10 License URI: https://themepoints.com/copyright/10 License: GPLv2 or later 11 11 */ 12 12
Note: See TracChangeset
for help on using the changeset viewer.