Plugin Directory

Changeset 1693905


Ignore:
Timestamp:
07/10/2017 05:01:26 PM (9 years ago)
Author:
tomiskym
Message:

New version 1.0.3

Location:
checklist-in-post
Files:
8 added
4 edited

Legend:

Unmodified
Added
Removed
  • checklist-in-post/trunk/checklist_in_post/checklist_in_post.php

    r1693215 r1693905  
    44Description: Checklist in Post - Allow creating checklists in posts for readers
    55Author: Tomasz Małecki
    6 Version: 1.0.2
     6Version: 1.0.3
    77Author URI: http://tomiskym.deviantart.com
    88Text Domain: checklistinpost
  • checklist-in-post/trunk/checklist_in_post/checklist_in_post_frontend.js

    r1693403 r1693905  
    11jQuery(document).ready(function($){  //Edit .todo-list ul appearance
    2     $('.checklist_in_post ul').wrap("<form id='todo-list'>");
     2    $('.checklist_in_post > ul').wrap("<form class='todo-list'>");
    33
    44  $id = 1;
    5   $('.checklist_in_post ul li').each(function() {
    6     $text = $(this).html() ;
     5    $('.checklist_in_post > form.todo-list > ul > li').each(function() {
     6        $text = $(this).html() ;
    77    $(this).html(' ');
    88    $(this).prepend("<span class='todo-wrap'><input type=checkbox id='"+ $id +"' /><label for='"+ $id +"' class='todo'><i class='fa fa-check'></i>"+ $text +"</label></span>");
  • checklist-in-post/trunk/checklist_in_post/css/checklist_in_post_frontend.css

    r1693215 r1693905  
    1 .checklist_in_post ul {
     1.checklist_in_post > form.todo-list > ul {
    22  list-style:none;
    33  padding:0px;
    44  margin: 0px;
    55}
    6 .checklist_in_post ul li{
     6.checklist_in_post > form.todo-list > ul > li{
    77  padding:0px!important;
    88  -webkit-margin-before: 0em;
     
    1313    background: none!important;
    1414}
    15 #todo-list{
     15form.todo-list{
    1616padding:20px;
    1717position:relative;
     
    2121        box-shadow:0 1px 4px rgba(0, 0, 0, 0.3);
    2222}
    23 #todo-list:before{
     23form.todo-list:before{
    2424content:"";
    2525position:absolute;
  • checklist-in-post/trunk/checklist_in_post/readme.txt

    r1693403 r1693905  
    44Requires at least: 3.0
    55Tested up to: 4.8
    6 Stable tag: 1.0.2
     6Stable tag: 1.0.3
    77License: #GNUGPLv3
    88License URI: https://www.gnu.org/licenses/gpl.html
     
    3131
    3232== Changelog ==
     331.0.3
     34Fixed: Allow Nested Lists (Thanks @iisisrael)
     35Fixed: Allow using HTML into Lists
     36Fixed: Force padding-left: 0px;
    33371.0.2
    3438Force transparent element list background (for themes using background in li)
Note: See TracChangeset for help on using the changeset viewer.