Changeset 2069729
- Timestamp:
- 04/17/2019 06:06:01 AM (7 years ago)
- Location:
- tripplan
- Files:
-
- 4 edited
- 1 copied
-
tags/1.0.7 (copied) (copied from tripplan/trunk)
-
tags/1.0.7/readme.txt (modified) (1 diff)
-
tags/1.0.7/tripplan-com.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/tripplan-com.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tripplan/tags/1.0.7/readme.txt
r2006681 r2069729 3 3 Tags: trip, google map, map, travel, maps 4 4 Requires at least: 3.5 5 Tested up to: 5. 0.26 Stable tag: 1.0. 65 Tested up to: 5.1.1 6 Stable tag: 1.0.7 7 7 License: GPLv3 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
tripplan/tags/1.0.7/tripplan-com.php
r1817882 r2069729 5 5 Plugin URI: http://checklist.com/ 6 6 Description: Turn your travel post into an interactive visual trip plan and map. Let users Print, Save, Share, Download to Mobile and more. 100% Free. 7 Version: 1.0. 67 Version: 1.0.7 8 8 Author: checklist 9 9 Author URI: https://checklist.com … … 155 155 } 156 156 157 return ' 158 <span class="tripplan-poi"'.$data.'> 159 '.$elemName.' 160 '.$schema.' 161 </span> 162 '; 157 return $schema.'<span class="tripplan-poi"'.$data.'>'.$elemName.'</span>'; 163 158 } 164 159 … … 185 180 } 186 181 187 return ' 188 <div class="tripplan-poi"'.$data.'> 182 return '<div class="tripplan-poi"'.$data.'> 189 183 '.$elemName.' 190 184 <ul class="tripplan-poi-tags"> … … 192 186 </ul> 193 187 '.$schema.' 194 </div> 195 '; 188 </div>'; 196 189 } 197 190 … … 223 216 $saveTextColor = isset($settings['saveTextColor']) ? $settings['saveTextColor'] : '#FFFFFF'; 224 217 $saveBackgroundColor = isset($settings['saveBackgroundColor']) ? $settings['saveBackgroundColor'] : '#FF5722'; 225 $saveStyle = 'color:'.$saveTextColor.' ; background-color:'.$saveBackgroundColor.';';218 $saveStyle = 'color:'.$saveTextColor.' !important; background-color:'.$saveBackgroundColor.' !important;'; 226 219 227 220 // print button 228 221 $printTextColor = isset($settings['printTextColor']) ? $settings['printTextColor'] : '#FFFFFF'; 229 222 $printBackgroundColor = isset($settings['printBackgroundColor']) ? $settings['printBackgroundColor'] : '#2196F3'; 230 $printStyle = 'color:'.$printTextColor.' ; background-color:'.$printBackgroundColor.';';223 $printStyle = 'color:'.$printTextColor.' !important; background-color:'.$printBackgroundColor.' !important;'; 231 224 232 225 // border 233 226 $borderColor = isset($settings['borderColor']) ? $settings['borderColor'] : '#03A9F4'; 234 227 $borderStyle = isset($settings['borderStyle']) ? $settings['borderStyle'] : 'dashed'; 235 $style = 'border-style:'.$borderStyle.' ; border-color:'.$borderColor.'; padding:20px;';228 $style = 'border-style:'.$borderStyle.' !important; border-color:'.$borderColor.' !important; padding:20px;'; 236 229 237 230 // source -
tripplan/trunk/readme.txt
r2006681 r2069729 3 3 Tags: trip, google map, map, travel, maps 4 4 Requires at least: 3.5 5 Tested up to: 5. 0.26 Stable tag: 1.0. 65 Tested up to: 5.1.1 6 Stable tag: 1.0.7 7 7 License: GPLv3 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
tripplan/trunk/tripplan-com.php
r1817882 r2069729 5 5 Plugin URI: http://checklist.com/ 6 6 Description: Turn your travel post into an interactive visual trip plan and map. Let users Print, Save, Share, Download to Mobile and more. 100% Free. 7 Version: 1.0. 67 Version: 1.0.7 8 8 Author: checklist 9 9 Author URI: https://checklist.com … … 155 155 } 156 156 157 return ' 158 <span class="tripplan-poi"'.$data.'> 159 '.$elemName.' 160 '.$schema.' 161 </span> 162 '; 157 return $schema.'<span class="tripplan-poi"'.$data.'>'.$elemName.'</span>'; 163 158 } 164 159 … … 185 180 } 186 181 187 return ' 188 <div class="tripplan-poi"'.$data.'> 182 return '<div class="tripplan-poi"'.$data.'> 189 183 '.$elemName.' 190 184 <ul class="tripplan-poi-tags"> … … 192 186 </ul> 193 187 '.$schema.' 194 </div> 195 '; 188 </div>'; 196 189 } 197 190 … … 223 216 $saveTextColor = isset($settings['saveTextColor']) ? $settings['saveTextColor'] : '#FFFFFF'; 224 217 $saveBackgroundColor = isset($settings['saveBackgroundColor']) ? $settings['saveBackgroundColor'] : '#FF5722'; 225 $saveStyle = 'color:'.$saveTextColor.' ; background-color:'.$saveBackgroundColor.';';218 $saveStyle = 'color:'.$saveTextColor.' !important; background-color:'.$saveBackgroundColor.' !important;'; 226 219 227 220 // print button 228 221 $printTextColor = isset($settings['printTextColor']) ? $settings['printTextColor'] : '#FFFFFF'; 229 222 $printBackgroundColor = isset($settings['printBackgroundColor']) ? $settings['printBackgroundColor'] : '#2196F3'; 230 $printStyle = 'color:'.$printTextColor.' ; background-color:'.$printBackgroundColor.';';223 $printStyle = 'color:'.$printTextColor.' !important; background-color:'.$printBackgroundColor.' !important;'; 231 224 232 225 // border 233 226 $borderColor = isset($settings['borderColor']) ? $settings['borderColor'] : '#03A9F4'; 234 227 $borderStyle = isset($settings['borderStyle']) ? $settings['borderStyle'] : 'dashed'; 235 $style = 'border-style:'.$borderStyle.' ; border-color:'.$borderColor.'; padding:20px;';228 $style = 'border-style:'.$borderStyle.' !important; border-color:'.$borderColor.' !important; padding:20px;'; 236 229 237 230 // source
Note: See TracChangeset
for help on using the changeset viewer.