Changeset 1693905
- Timestamp:
- 07/10/2017 05:01:26 PM (9 years ago)
- Location:
- checklist-in-post
- Files:
-
- 8 added
- 4 edited
-
tags/1.0.3 (added)
-
tags/1.0.3/checklist_in_post.js (added)
-
tags/1.0.3/checklist_in_post.php (added)
-
tags/1.0.3/checklist_in_post_frontend.js (added)
-
tags/1.0.3/css (added)
-
tags/1.0.3/css/checklist_in_post.css (added)
-
tags/1.0.3/css/checklist_in_post_frontend.css (added)
-
tags/1.0.3/readme.txt (added)
-
trunk/checklist_in_post/checklist_in_post.php (modified) (1 diff)
-
trunk/checklist_in_post/checklist_in_post_frontend.js (modified) (1 diff)
-
trunk/checklist_in_post/css/checklist_in_post_frontend.css (modified) (3 diffs)
-
trunk/checklist_in_post/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
checklist-in-post/trunk/checklist_in_post/checklist_in_post.php
r1693215 r1693905 4 4 Description: Checklist in Post - Allow creating checklists in posts for readers 5 5 Author: Tomasz Małecki 6 Version: 1.0. 26 Version: 1.0.3 7 7 Author URI: http://tomiskym.deviantart.com 8 8 Text Domain: checklistinpost -
checklist-in-post/trunk/checklist_in_post/checklist_in_post_frontend.js
r1693403 r1693905 1 1 jQuery(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'>"); 3 3 4 4 $id = 1; 5 $('.checklist_in_post ulli').each(function() {6 $text = $(this).html() ;5 $('.checklist_in_post > form.todo-list > ul > li').each(function() { 6 $text = $(this).html() ; 7 7 $(this).html(' '); 8 8 $(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 { 2 2 list-style:none; 3 3 padding:0px; 4 4 margin: 0px; 5 5 } 6 .checklist_in_post ulli{6 .checklist_in_post > form.todo-list > ul > li{ 7 7 padding:0px!important; 8 8 -webkit-margin-before: 0em; … … 13 13 background: none!important; 14 14 } 15 #todo-list{15 form.todo-list{ 16 16 padding:20px; 17 17 position:relative; … … 21 21 box-shadow:0 1px 4px rgba(0, 0, 0, 0.3); 22 22 } 23 #todo-list:before{23 form.todo-list:before{ 24 24 content:""; 25 25 position:absolute; -
checklist-in-post/trunk/checklist_in_post/readme.txt
r1693403 r1693905 4 4 Requires at least: 3.0 5 5 Tested up to: 4.8 6 Stable tag: 1.0. 26 Stable tag: 1.0.3 7 7 License: #GNUGPLv3 8 8 License URI: https://www.gnu.org/licenses/gpl.html … … 31 31 32 32 == Changelog == 33 1.0.3 34 Fixed: Allow Nested Lists (Thanks @iisisrael) 35 Fixed: Allow using HTML into Lists 36 Fixed: Force padding-left: 0px; 33 37 1.0.2 34 38 Force transparent element list background (for themes using background in li)
Note: See TracChangeset
for help on using the changeset viewer.