Plugin Directory

Changeset 2585150


Ignore:
Timestamp:
08/19/2021 03:03:08 AM (5 years ago)
Author:
crisworth
Message:

Feature update

Location:
mondoplayer/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • mondoplayer/trunk/css/web_player.css

    r2572647 r2585150  
    13681368    content: "\25B6";
    13691369}
    1370 
     1370.Explainer-Video-Icon {
     1371    cursor: pointer;
     1372    display: inline;
     1373    transition: all 0.4s;
     1374    height: 24px;
     1375    vertical-align: middle;
     1376}
     1377.Explainer-Video-Icon:hover {
     1378    opacity: 0.6;
     1379}
  • mondoplayer/trunk/includes/class_mondoplayer_autopilot.php

    r2585113 r2585150  
    683683    color: #ccc;
    684684}
    685 .Explainer-Video-Icon {
    686     cursor: pointer;
    687     display: inline;
    688     transition: all 0.4s;
    689     height: 24px;
    690     vertical-align: middle;
    691 }
    692 .Explainer-Video-Icon:hover {
    693     opacity: 0.6;
    694 }
     685
    695686.hashtag_search_term {
    696687    display: block;
  • mondoplayer/trunk/includes/class_mondoplayer_categories.php

    r2583810 r2585150  
    713713</script>
    714714    <div id="categories_page" style='margin-right: 8px'>
    715         <h1 id='categories_title'><?php echo $category_title ?></h1>
     715        <h1 id='categories_title'><?php echo $category_title ?></h1><img class='Explainer-Video-Icon' src='<?php echo  plugin_dir_url( __DIR__ ).'images/Explainer-Video-Icon.png'; ?>' onclick='go_to_mastermind("https://vlog.mondoplayer.com/category-edit/")' style='float: right' />
    716716            <input type="button" id="show_add_category" class="form_submit_btn_light" value="Add New Category" onclick="show_add_category(true)" style='margin: 0;display: <?php echo $show_add_category ?>'/>
    717717            <div id='new_category_wrapper' class="right_sub_page right_panel_form" style='display: <?php echo $new_category_wrapper ?>'>
  • mondoplayer/trunk/mondoplayer.php

    r2585144 r2585150  
    55    Description: Video Content Curation Plugin - automatically curate and share videos. Boost engagement on your website and in social media with compelling video.
    66    Author: MondoTag
    7     Version: 1.0.310
     7    Version: 1.0.311
    88    Tested up to: 5.7.2
    99    License: GPLv2 or later
     
    182182        global $db_version;
    183183
    184         wp_register_style( $this->mondoplayer_plugin_slug, plugins_url("css/web_player.css",__FILE__), false, '1.0.50' );
     184        wp_register_style( $this->mondoplayer_plugin_slug, plugins_url("css/web_player.css",__FILE__), false, '1.0.51' );
    185185        wp_register_script( $this->mondoplayer_plugin_slug, plugins_url("js/web_player_v2.js",__FILE__), false, '1.0.99' );
    186186        $db = get_option("mondoplayer_db_version", '');
Note: See TracChangeset for help on using the changeset viewer.