Changeset 1352963
- Timestamp:
- 02/17/2016 09:51:36 PM (10 years ago)
- Location:
- jituzu-tools/trunk
- Files:
-
- 6 edited
-
css/public.css (modified) (2 diffs)
-
functions/frame.php (modified) (1 diff)
-
functions/init.php (modified) (1 diff)
-
functions/page_config.php (modified) (1 diff)
-
jituzu-tools.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jituzu-tools/trunk/css/public.css
r1275650 r1352963 11 11 position: relative; 12 12 width: 100%; 13 } 14 div.jtools_frame.transparent { 15 background-color: transparent; 13 16 } 14 17 div.jtools_frame iframe { … … 25 28 width: 100%; 26 29 } 27 28 30 div.jtools_frame.error { 29 31 background: red !important; -
jituzu-tools/trunk/functions/frame.php
r1275650 r1352963 14 14 'search_color' => str_replace('#', '%23', $jtools->search_color), 15 15 'date_color' => str_replace('#', '%23', $jtools->date_color), 16 'urgent_color' => str_replace('#', '%23', $jtools->urgent_color) 16 'urgent_color' => str_replace('#', '%23', $jtools->urgent_color), 17 'transparent_background' => $jtools->transparent_background 17 18 ), $atts)); 18 19 19 $class = !!$jtools->full_screen ? ' fullscreen' : ''; 20 20 21 $fullscreen = !!$jtools->full_screen ? ' fullscreen' : ''; 22 $transparent = !!$jtools->transparent_background ? ' transparent' : ''; 23 $class = "{$fullscreen}{$transparent}"; 24 25 21 26 if (!!$width || !!$height) { 22 27 $style = ' style="'; -
jituzu-tools/trunk/functions/init.php
r1275650 r1352963 18 18 'use_css' => true, 19 19 'full_screen' => false, 20 'transparent_background' => false, 20 21 'highlight_color' => '', 21 22 'search_color' => '', -
jituzu-tools/trunk/functions/page_config.php
r1275650 r1352963 87 87 </tr> 88 88 <tr valign="top"> 89 <th scope="row"> Urgent Color</th>89 <th scope="row">Transparent Background</th> 90 90 <td> 91 <input type="text" value="<?php echo $jtools->urgent_color; ?>" 92 placeholder="#F1D0CF" class="short-text jtools_color" 93 name="settings[urgent_color]"/> 94 <p class="description"> 95 For urgent emails within the list of messages. 96 </p> 97 </td> 91 <label> 92 <input type="hidden" name="settings[transparent_background]" value="0"/> 93 <input type="checkbox" name="settings[transparent_background]" value="1" 94 <?php if (!!$jtools->transparent_background) echo 'checked="checked"' ?>/> 95 Turn off the default Jituzu background color and use the background color 96 of the WordPress site. 97 </label> 98 </td> 98 99 </tr> 99 100 </table> -
jituzu-tools/trunk/jituzu-tools.php
r1341538 r1352963 3 3 Plugin Name: Jituzu Tools 4 4 Description: Embed Jituzu into your WordPress site with template tags and shortcodes. 5 Version: 1. 2.05 Version: 1.3.0 6 6 Author: Jituzu 7 7 Author URI: https://www.jituzu.com/ -
jituzu-tools/trunk/readme.txt
r1341538 r1352963 4 4 Tags: HIPAA, scheduling, client portal, calendar, appointment reminders, jituzu, appointment booking, sms reminders, Jituzu Tools 5 5 Requires at least: 3.0.1 6 Tested up to: 4.4. 16 Tested up to: 4.4.2 7 7 Stable tag: trunk 8 8 License: GPLv2 or later … … 105 105 * Tested on WordPress 4.4.1 106 106 107 = 1.3.0 = 108 * 2016-02-18 109 * Added option to choose transparent background 110 * Tested on WordPress 4.4.2 111 107 112 108 113 == Upgrade Notice == … … 112 117 * Initial release 113 118 114 119 = 1.3 = 120 * 2016-02-18 121 * Tested on WordPress 4.4.2 122 * Added option to choose a transparent background
Note: See TracChangeset
for help on using the changeset viewer.