Plugin Directory

Changeset 2343441


Ignore:
Timestamp:
07/20/2020 12:56:31 PM (6 years ago)
Author:
audiotyped
Message:

Version 1.0.15 - transcript background color and padding

Location:
audiotyped-ux/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • audiotyped-ux/trunk/audiotyped-ux.php

    r2343430 r2343441  
    77Author URI: https://audiotyped.de
    88Text Domain: audiotyped-ux
    9 Version: 1.0.14
     9Version: 1.0.15
    1010*/
    1111
     
    9494{
    9595function update_audiotyped_settings() {
     96  register_setting( 'audiotyped-settings', 'audiotyped_tb_color' );
    9697  register_setting( 'audiotyped-settings', 'audiotyped_gb_color' );
    9798  register_setting( 'audiotyped-settings', 'audiotyped_hb_color' );
     
    127128      <p>Here you can make the settings for the individual design of your podcast interview transcripts.</p>
    128129      <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">
    129134      <th scope="row">Host bubble color:</th>
    130135      <td><input type="text" name="audiotyped_hb_color" value="<?php echo get_option('audiotyped_hb_color'); ?>" class="my-color-field" /></td>
     
    211216      wp_enqueue_script( 'at_javascript', $file_url );
    212217      wp_localize_script( 'at_javascript', 'vname',  array(
     218          'tbcolor' => get_option( 'audiotyped_tb_color' ),
    213219          'gbcolor' => get_option( 'audiotyped_gb_color' ),
    214220          'hbcolor' => get_option( 'audiotyped_hb_color' ),
  • audiotyped-ux/trunk/audiotyped.css

    r2343430 r2343441  
    22AudioTyped Style Sheet for podcast interview transcripts
    33
    4 version: 1.0.14
     4version: 1.0.15
    55last modified: 20.07.2019 by Helmut Naber
    66author: Helmut Naber
     
    88----------------------------------------------------------*/
    99:root {
     10  --tscrpttbcolor: #ffffff;
    1011  --tscrpthbcolor: #f6f6f6;
    1112  --tscrptgbcolor: #f6f6f6;
     
    3435  width: 100%;
    3536  margin: 20px auto;
    36   background: var(--tscrptgbcolor);
     37  padding: 10px;
     38  background: var(--tscrpttbcolor);
    3739  display: inline-block;
    3840}
  • audiotyped-ux/trunk/readme.txt

    r2343430 r2343441  
    44Requires at least: 5.4.2
    55Tested up to: 5.4.1
    6 Stable tag: 1.0.14
     6Stable tag: 1.0.15
    77Requires PHP: 5.2.4
    88License: GPLv3
     
    9191= 1.0.14 - 20th July 2020 =
    9292* correct transcript height
     93
     94= 1.0.15 - 20th July 2020 =
     95* transcript background color and padding
  • audiotyped-ux/trunk/uninstall.php

    r2057594 r2343441  
    1313}
    1414
     15delete_option('audiotyped_tb_color');
    1516delete_option('audiotyped_gb_color');
    1617delete_option('audiotyped_hb_color');
Note: See TracChangeset for help on using the changeset viewer.