Changeset 1699245
- Timestamp:
- 07/20/2017 12:49:48 AM (9 years ago)
- Location:
- shortcode-mastery-lite
- Files:
-
- 8 edited
-
tags/1.0.1/css/shortcode-mastery-admin.css (modified) (1 diff)
-
tags/1.0.1/templates/markup.php (modified) (1 diff)
-
tags/1.0.1/templates/params.php (modified) (1 diff)
-
tags/1.0.1/templates/title.php (modified) (2 diffs)
-
trunk/css/shortcode-mastery-admin.css (modified) (1 diff)
-
trunk/templates/markup.php (modified) (1 diff)
-
trunk/templates/params.php (modified) (1 diff)
-
trunk/templates/title.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shortcode-mastery-lite/tags/1.0.1/css/shortcode-mastery-admin.css
r1699217 r1699245 9 9 .shortcode_mastery_tables, .sm-block {border-radius: 0px;} 10 10 11 .shortcode_mastery_tables td {vertical-align: middle;} 12 13 .shortcode_mastery_tables td.shortcode_mastery_actions {width: 50%;} 11 12 #shortcode-mastery .tablenav .actions { 13 padding: 0; 14 } 15 16 #shortcode-mastery .tablenav.bottom { 17 margin-bottom: 40px; 18 padding-top: 10px; 19 } 20 21 #shortcode-mastery .tablenav a { 22 text-decoration: none; 23 } 24 25 #shortcode-mastery .tablenav a:hover { 26 color:#fff; 27 } 28 29 #shortcode-mastery .shortcode-mastery-color { 30 color: #b13e39; 31 } 32 33 #shortcode-mastery .shortcode_mastery_tables { 34 border-radius: 0; 35 } 36 37 #shortcode-mastery .sm-block { 38 border-radius: 0px; 39 } 40 41 #shortcode-mastery .shortcode_mastery_tables td { 42 vertical-align: middle; 43 } 44 45 #shortcode-mastery .shortcode_mastery_tables td.shortcode_mastery_actions { 46 width: 50%; 47 } 48 49 #shortcode-mastery .shortcode_mastery_tables tbody th.check-column { 50 padding: 3px 0 0 3px; 51 vertical-align: middle; 52 } 53 54 @media (max-width:782px) { 55 56 #shortcode-mastery .shortcode_mastery_tables .toggle-row { 57 top:15px; 58 } 59 60 #shortcode-mastery .shortcode_mastery_tables th input[type=checkbox] { 61 margin-top: 5px; 62 } 63 64 65 66 #shortcode-mastery .shortcode_mastery_tables .column-shortcode_mastery_actions::before, 67 #shortcode-mastery .shortcode_mastery_tables .column-shortcode_mastery_code::before { 68 top:50%; 69 margin-top: -11px; 70 } 71 72 #shortcode-mastery .shortcode_mastery_tables .column-shortcode_mastery_title { 73 padding-top: 12px; 74 } 75 76 } 77 14 78 15 79 /* Buttons */ -
shortcode-mastery-lite/tags/1.0.1/templates/markup.php
r1699217 r1699245 40 40 <div class="sm-txt-part"> 41 41 42 <sm-editor def="<?php echo esc_textarea( Shortcode_Mastery ::getDefault( 'main_content' ) ); ?>" v-model="main_content" @init="onInit"></sm-editor>42 <sm-editor def="<?php echo esc_textarea( Shortcode_Mastery_Lite::getDefault( 'main_content' ) ); ?>" v-model="main_content" @init="onInit"></sm-editor> 43 43 44 44 <textarea style="visibility:hidden;position:absolute;" name="main_content" v-model="main_content"></textarea> -
shortcode-mastery-lite/tags/1.0.1/templates/params.php
r1699217 r1699245 22 22 value-placeholder="<?php _e( 'Default value', 'shortcode-mastery' ); ?>" 23 23 button-title="<?php _e( 'parameter', 'shortcode-mastery' ); ?>" 24 :def="<?php echo Shortcode_Mastery ::getDefault( 'params' ) ?>"24 :def="<?php echo Shortcode_Mastery_Lite::getDefault( 'params' ) ?>" 25 25 > 26 26 </sm-dic> -
shortcode-mastery-lite/tags/1.0.1/templates/title.php
r1699217 r1699245 11 11 <h3><?php echo __( 'Title', 'shortcode-mastery' ); ?></h3> 12 12 13 <input type="text" id="sm-shortcode-title" class="sm-large" name="shortcode_title" placeholder="<?php _e( 'Shortcode name', 'shortcode-mastery' ); ?>" value="<?php echo Shortcode_Mastery ::getDefault( 'title' ); ?>">13 <input type="text" id="sm-shortcode-title" class="sm-large" name="shortcode_title" placeholder="<?php _e( 'Shortcode name', 'shortcode-mastery' ); ?>" value="<?php echo Shortcode_Mastery_Lite::getDefault( 'title' ); ?>"> 14 14 15 15 <p class="description"><?php _e( 'Title is required and should contains only letters, numbers, dashes or underscores.', 'shortcode-mastery' ); ?></p> … … 17 17 <p><?php _e( 'Shortcode code:', 'shortcode-mastery' ); ?></p> 18 18 19 <p><strong id="sm-shortcode-code">[<span id="sm-shortcode-name"><?php echo Shortcode_Mastery ::getDefault( 'code' ); ?></span>{{ shortcode_codes }}]</strong></p>19 <p><strong id="sm-shortcode-code">[<span id="sm-shortcode-name"><?php echo Shortcode_Mastery_Lite::getDefault( 'code' ); ?></span>{{ shortcode_codes }}]</strong></p> 20 20 21 21 </div> -
shortcode-mastery-lite/trunk/css/shortcode-mastery-admin.css
r1699217 r1699245 9 9 .shortcode_mastery_tables, .sm-block {border-radius: 0px;} 10 10 11 .shortcode_mastery_tables td {vertical-align: middle;} 12 13 .shortcode_mastery_tables td.shortcode_mastery_actions {width: 50%;} 11 12 #shortcode-mastery .tablenav .actions { 13 padding: 0; 14 } 15 16 #shortcode-mastery .tablenav.bottom { 17 margin-bottom: 40px; 18 padding-top: 10px; 19 } 20 21 #shortcode-mastery .tablenav a { 22 text-decoration: none; 23 } 24 25 #shortcode-mastery .tablenav a:hover { 26 color:#fff; 27 } 28 29 #shortcode-mastery .shortcode-mastery-color { 30 color: #b13e39; 31 } 32 33 #shortcode-mastery .shortcode_mastery_tables { 34 border-radius: 0; 35 } 36 37 #shortcode-mastery .sm-block { 38 border-radius: 0px; 39 } 40 41 #shortcode-mastery .shortcode_mastery_tables td { 42 vertical-align: middle; 43 } 44 45 #shortcode-mastery .shortcode_mastery_tables td.shortcode_mastery_actions { 46 width: 50%; 47 } 48 49 #shortcode-mastery .shortcode_mastery_tables tbody th.check-column { 50 padding: 3px 0 0 3px; 51 vertical-align: middle; 52 } 53 54 @media (max-width:782px) { 55 56 #shortcode-mastery .shortcode_mastery_tables .toggle-row { 57 top:15px; 58 } 59 60 #shortcode-mastery .shortcode_mastery_tables th input[type=checkbox] { 61 margin-top: 5px; 62 } 63 64 65 66 #shortcode-mastery .shortcode_mastery_tables .column-shortcode_mastery_actions::before, 67 #shortcode-mastery .shortcode_mastery_tables .column-shortcode_mastery_code::before { 68 top:50%; 69 margin-top: -11px; 70 } 71 72 #shortcode-mastery .shortcode_mastery_tables .column-shortcode_mastery_title { 73 padding-top: 12px; 74 } 75 76 } 77 14 78 15 79 /* Buttons */ -
shortcode-mastery-lite/trunk/templates/markup.php
r1699217 r1699245 40 40 <div class="sm-txt-part"> 41 41 42 <sm-editor def="<?php echo esc_textarea( Shortcode_Mastery ::getDefault( 'main_content' ) ); ?>" v-model="main_content" @init="onInit"></sm-editor>42 <sm-editor def="<?php echo esc_textarea( Shortcode_Mastery_Lite::getDefault( 'main_content' ) ); ?>" v-model="main_content" @init="onInit"></sm-editor> 43 43 44 44 <textarea style="visibility:hidden;position:absolute;" name="main_content" v-model="main_content"></textarea> -
shortcode-mastery-lite/trunk/templates/params.php
r1699217 r1699245 22 22 value-placeholder="<?php _e( 'Default value', 'shortcode-mastery' ); ?>" 23 23 button-title="<?php _e( 'parameter', 'shortcode-mastery' ); ?>" 24 :def="<?php echo Shortcode_Mastery ::getDefault( 'params' ) ?>"24 :def="<?php echo Shortcode_Mastery_Lite::getDefault( 'params' ) ?>" 25 25 > 26 26 </sm-dic> -
shortcode-mastery-lite/trunk/templates/title.php
r1699217 r1699245 11 11 <h3><?php echo __( 'Title', 'shortcode-mastery' ); ?></h3> 12 12 13 <input type="text" id="sm-shortcode-title" class="sm-large" name="shortcode_title" placeholder="<?php _e( 'Shortcode name', 'shortcode-mastery' ); ?>" value="<?php echo Shortcode_Mastery ::getDefault( 'title' ); ?>">13 <input type="text" id="sm-shortcode-title" class="sm-large" name="shortcode_title" placeholder="<?php _e( 'Shortcode name', 'shortcode-mastery' ); ?>" value="<?php echo Shortcode_Mastery_Lite::getDefault( 'title' ); ?>"> 14 14 15 15 <p class="description"><?php _e( 'Title is required and should contains only letters, numbers, dashes or underscores.', 'shortcode-mastery' ); ?></p> … … 17 17 <p><?php _e( 'Shortcode code:', 'shortcode-mastery' ); ?></p> 18 18 19 <p><strong id="sm-shortcode-code">[<span id="sm-shortcode-name"><?php echo Shortcode_Mastery ::getDefault( 'code' ); ?></span>{{ shortcode_codes }}]</strong></p>19 <p><strong id="sm-shortcode-code">[<span id="sm-shortcode-name"><?php echo Shortcode_Mastery_Lite::getDefault( 'code' ); ?></span>{{ shortcode_codes }}]</strong></p> 20 20 21 21 </div>
Note: See TracChangeset
for help on using the changeset viewer.