Changeset 1565326
- Timestamp:
- 12/31/2016 09:10:20 AM (9 years ago)
- Location:
- zoomd-search/trunk
- Files:
-
- 3 edited
-
classes/Core/Settings.php (modified) (1 diff)
-
plugin.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
zoomd-search/trunk/classes/Core/Settings.php
r1565305 r1565326 71 71 72 72 public static function searchboxdefaulthtml(){ 73 $btnstyle='<style>#search-btn {' 74 .'top: 30px;' 75 .'box-shadow: rgba(0, 0, 0, 0.3) 3px 5px 5px 0;' 76 .'color: rgb(255, 255, 255);' 77 .'cursor: pointer;' 78 .'height: 54px;' 79 .'position: fixed;' 80 .'right: 30px;' 81 .'width: 54px;' 82 .'z-index: 102;' 83 .'background: rgb(244, 67, 54);' 84 .'border: rgb(255, 255, 255);' 85 .'border-radius: 50% 50% 50% 50%;' 86 .'overflow: hidden;' 87 .'padding: 0;' 88 .'outline: none;' 89 .' } ' 90 91 .'#search-icon {' 92 .' font-size: 36px;' 93 .' line-height: 44px;' 94 .'}</style>'; 95 96 $btnhtml = '<div>' 73 return '<div>' 97 74 . '<input type="text" id="zsbox" zoomdSearch="{"trigger":"OnEnter"}"/>' 98 75 . '<input type="button" id="zsbtn" value="Search" zoomdSearch="{"trigger":"OnClick", "forInput":"#zsbox"}"/>' 99 76 .'</div>'; 100 101 return $btnstyle . $btnhtml;102 77 } 103 78 -
zoomd-search/trunk/plugin.php
r1565315 r1565326 7 7 Author URI: http://zoomd.com/ 8 8 License: GPLv2 or later 9 Version: 2.1.0.1 49 Version: 2.1.0.15 10 10 */ 11 11 … … 102 102 function enqueue_zoomd_admin_scripts($hook) { 103 103 //error_log($hook); 104 if ( 'toplevel_page_zoomd' != $hook ) {105 return;106 }104 // if ( 'toplevel_page_zoomd' != $hook ) { 105 // return; 106 // } 107 107 108 108 wp_register_style( 'zoomd-search-css', plugins_url('css/zoomd-search.css', __FILE__) ); -
zoomd-search/trunk/readme.txt
r1565315 r1565326 45 45 2. Integrate CALL and EMAIL functionality 46 46 3. A variety of beautiful designs 47 48 49 == Changelog == 50 = 2.1.0.15 = 51 * fixes 47 52 48 53 == Changelog ==
Note: See TracChangeset
for help on using the changeset viewer.