Changeset 2343441
- Timestamp:
- 07/20/2020 12:56:31 PM (6 years ago)
- Location:
- audiotyped-ux/trunk
- Files:
-
- 4 edited
-
audiotyped-ux.php (modified) (4 diffs)
-
audiotyped.css (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
audiotyped-ux/trunk/audiotyped-ux.php
r2343430 r2343441 7 7 Author URI: https://audiotyped.de 8 8 Text Domain: audiotyped-ux 9 Version: 1.0.1 49 Version: 1.0.15 10 10 */ 11 11 … … 94 94 { 95 95 function update_audiotyped_settings() { 96 register_setting( 'audiotyped-settings', 'audiotyped_tb_color' ); 96 97 register_setting( 'audiotyped-settings', 'audiotyped_gb_color' ); 97 98 register_setting( 'audiotyped-settings', 'audiotyped_hb_color' ); … … 127 128 <p>Here you can make the settings for the individual design of your podcast interview transcripts.</p> 128 129 <tr valign="top"> 130 <th scope="row">Transcript color:</th> 131 <td><input type="text" name="audiotyped_tb_color" value="<?php echo get_option('audiotyped_tb_color'); ?>" class="my-color-field" /></td> 132 </tr> 133 <tr valign="top"> 129 134 <th scope="row">Host bubble color:</th> 130 135 <td><input type="text" name="audiotyped_hb_color" value="<?php echo get_option('audiotyped_hb_color'); ?>" class="my-color-field" /></td> … … 211 216 wp_enqueue_script( 'at_javascript', $file_url ); 212 217 wp_localize_script( 'at_javascript', 'vname', array( 218 'tbcolor' => get_option( 'audiotyped_tb_color' ), 213 219 'gbcolor' => get_option( 'audiotyped_gb_color' ), 214 220 'hbcolor' => get_option( 'audiotyped_hb_color' ), -
audiotyped-ux/trunk/audiotyped.css
r2343430 r2343441 2 2 AudioTyped Style Sheet for podcast interview transcripts 3 3 4 version: 1.0.1 44 version: 1.0.15 5 5 last modified: 20.07.2019 by Helmut Naber 6 6 author: Helmut Naber … … 8 8 ----------------------------------------------------------*/ 9 9 :root { 10 --tscrpttbcolor: #ffffff; 10 11 --tscrpthbcolor: #f6f6f6; 11 12 --tscrptgbcolor: #f6f6f6; … … 34 35 width: 100%; 35 36 margin: 20px auto; 36 background: var(--tscrptgbcolor); 37 padding: 10px; 38 background: var(--tscrpttbcolor); 37 39 display: inline-block; 38 40 } -
audiotyped-ux/trunk/readme.txt
r2343430 r2343441 4 4 Requires at least: 5.4.2 5 5 Tested up to: 5.4.1 6 Stable tag: 1.0.1 46 Stable tag: 1.0.15 7 7 Requires PHP: 5.2.4 8 8 License: GPLv3 … … 91 91 = 1.0.14 - 20th July 2020 = 92 92 * correct transcript height 93 94 = 1.0.15 - 20th July 2020 = 95 * transcript background color and padding -
audiotyped-ux/trunk/uninstall.php
r2057594 r2343441 13 13 } 14 14 15 delete_option('audiotyped_tb_color'); 15 16 delete_option('audiotyped_gb_color'); 16 17 delete_option('audiotyped_hb_color');
Note: See TracChangeset
for help on using the changeset viewer.