Version Description
Download this release
Release Info
| Developer | cbaldelomar |
| Plugin | |
| Version | 1.97 |
| Comparing to | |
| See all releases | |
Code changes from version 1.96 to 1.97
- README.md +1 -1
- includes/css/style.css +19 -0
- readme.txt +1 -1
- wc-shortcodes.php +2 -2
README.md
CHANGED
|
@@ -66,7 +66,7 @@ Use the shortcode manager in the TinyMCE text editor
|
|
| 66 |
|
| 67 |
## Changelog ##
|
| 68 |
|
| 69 |
-
### Version 1.
|
| 70 |
|
| 71 |
* updated post slider style
|
| 72 |
|
| 66 |
|
| 67 |
## Changelog ##
|
| 68 |
|
| 69 |
+
### Version 1.97
|
| 70 |
|
| 71 |
* updated post slider style
|
| 72 |
|
includes/css/style.css
CHANGED
|
@@ -1966,6 +1966,25 @@ pre.pre-wrap {
|
|
| 1966 |
.wc-shortcodes-post-slider-wrapper .wc-shortcodes-entry-summary {
|
| 1967 |
display: none;
|
| 1968 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1969 |
}
|
| 1970 |
|
| 1971 |
/**
|
| 1966 |
.wc-shortcodes-post-slider-wrapper .wc-shortcodes-entry-summary {
|
| 1967 |
display: none;
|
| 1968 |
}
|
| 1969 |
+
.wc-shortcodes-post-slide-content .wc-shortcodes-entry-header {
|
| 1970 |
+
margin-bottom: 0;
|
| 1971 |
+
}
|
| 1972 |
+
}
|
| 1973 |
+
/**
|
| 1974 |
+
*
|
| 1975 |
+
* ----------------------------------------------------------------------------
|
| 1976 |
+
*/
|
| 1977 |
+
.wc-shortcodes-entry-summary > *:first-child,
|
| 1978 |
+
.wc-shortcodes-content > *:first-child {
|
| 1979 |
+
margin-top: 0 !important;
|
| 1980 |
+
}
|
| 1981 |
+
.wc-shortcodes-entry-summary > *:last-child,
|
| 1982 |
+
.wc-shortcodes-content > *:last-child {
|
| 1983 |
+
margin-bottom: 0 !important;
|
| 1984 |
+
}
|
| 1985 |
+
.wc-shortcodes-item {
|
| 1986 |
+
margin-top: 1.5em;
|
| 1987 |
+
margin-bottom: 1.5em;
|
| 1988 |
}
|
| 1989 |
|
| 1990 |
/**
|
readme.txt
CHANGED
|
@@ -88,7 +88,7 @@ Use the shortcode manager in the TinyMCE text editor
|
|
| 88 |
|
| 89 |
== Changelog ==
|
| 90 |
|
| 91 |
-
= Version 1.
|
| 92 |
|
| 93 |
* updated post slider style
|
| 94 |
|
| 88 |
|
| 89 |
== Changelog ==
|
| 90 |
|
| 91 |
+
= Version 1.97 =
|
| 92 |
|
| 93 |
* updated post slider style
|
| 94 |
|
wc-shortcodes.php
CHANGED
|
@@ -5,11 +5,11 @@ Plugin URI: http://webplantmedia.com/starter-themes/wordpresscanvas/features/sho
|
|
| 5 |
Description: A family of shortcodes to enhance site functionality.
|
| 6 |
Author: Chris Baldelomar
|
| 7 |
Author URI: http://webplantmedia.com/
|
| 8 |
-
Version: 1.
|
| 9 |
License: GPLv2 or later
|
| 10 |
*/
|
| 11 |
|
| 12 |
-
define( 'WC_SHORTCODES_VERSION', '1.
|
| 13 |
define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
|
| 14 |
define( '_WC_SHORTCODES_PREFIX', '_wc_shortcodes_' );
|
| 15 |
define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
| 5 |
Description: A family of shortcodes to enhance site functionality.
|
| 6 |
Author: Chris Baldelomar
|
| 7 |
Author URI: http://webplantmedia.com/
|
| 8 |
+
Version: 1.97
|
| 9 |
License: GPLv2 or later
|
| 10 |
*/
|
| 11 |
|
| 12 |
+
define( 'WC_SHORTCODES_VERSION', '1.97' );
|
| 13 |
define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
|
| 14 |
define( '_WC_SHORTCODES_PREFIX', '_wc_shortcodes_' );
|
| 15 |
define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
