Changeset 1981125
- Timestamp:
- 11/27/2018 08:13:18 AM (7 years ago)
- Location:
- gosign-masonry-post-block/trunk
- Files:
-
- 4 edited
-
plugin.php (modified) (1 diff)
-
readme.md (modified) (1 diff)
-
src/block/style.scss (modified) (5 diffs)
-
src/init.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gosign-masonry-post-block/trunk/plugin.php
r1979546 r1981125 6 6 * Author: Zohaib - Gosign.de 7 7 * Author URI: https://www.gosign.de/team/ 8 * Version: 2. 0.18 * Version: 2.1.0 9 9 * License: GPL3+ 10 10 * License URI: https://www.gnu.org/licenses/gpl.txt -
gosign-masonry-post-block/trunk/readme.md
r1979546 r1981125 2 2 Contributors: malikzohaib42,ahmedcassini,mansoor1,mohsinkhan1,awaiskhalid0,ahsan21 3 3 Tags: Latest Posts Block,Posts Block,Gutenberg,Posts Masonry Gallery,Masonry Post Block,Gosign post block, masonry gallery, posts masonry gallery, posts gallery, latest posts, masonry gallery 4 Stable tag: 2. 0.14 Stable tag: 2.1.0 5 5 Requires at least: 4.9.8 6 6 Tested up to : 4.9.8 -
gosign-masonry-post-block/trunk/src/block/style.scss
r1973626 r1981125 7 7 padding: 20px 0; 8 8 margin-bottom: 15px; 9 text-align: center; 9 10 .gosign_filter { 10 11 padding: 5px; … … 13 14 color: #000; 14 15 } 15 &:hover {16 color: #ff6f00;17 }16 // &:hover { 17 // color: #ff6f00; 18 // } 18 19 } 19 20 .text-sep { … … 56 57 overflow: hidden; 57 58 min-height: 100px; 59 img { 60 width: 100%; 61 height: auto; 62 } 58 63 59 64 &.box4 { … … 79 84 transform: scale(0); 80 85 transition: all 0.5s ease 0s; 81 }82 img {83 width: 100%;84 height: auto;85 86 } 86 87 .icon { … … 117 118 top: 0; 118 119 left: 0; 120 a { 121 &:hover { 122 .title { 123 color: inherit; 124 } 125 } 126 } 119 127 .title { 128 transition: all 0.5s ease; 120 129 font-size: 25px; 121 130 font-weight: 700; -
gosign-masonry-post-block/trunk/src/init.php
r1979187 r1981125 100 100 )); 101 101 if($attributes['showNavigation']){ 102 $categoriesButton .= "<div class='gosign_categories_filters'><a href='#' data-filter='*' class='gosign_filter gosign_sort_all_button '><span class='inner_sort_button'>All</span></a><span class='text-sep'>/</span>";102 $categoriesButton .= "<div class='gosign_categories_filters'><a href='#' data-filter='*' class='gosign_filter gosign_sort_all_button active'><span class='inner_sort_button'>All</span></a><span class='text-sep'>/</span>"; 103 103 foreach($categories as $cat){ 104 104 $categoriesButton .= "<a href='#' data-filter='.gosign_sort_{$cat->slug}' class='gosign_filter gosign_sort_{$cat->slug}_button'><span class='inner_sort_button'>{$cat->name}</span></a><span class='text-sep'>/</span>"; … … 206 206 $post_data .= "</div>"; 207 207 } else { 208 $post_data .= " <a href={$link}>208 $post_data .= " 209 209 <div class='gallery-image {$enableEnimation}'> 210 210 <img src='{$url}' /> 211 211 <div class='box-content'> 212 <a href={$link}> 212 213 <h3 class='title'> 213 214 {$post->post_title} 214 215 </h3> 216 </a> 215 217 </div> 216 218 </div> 217 </a>";219 "; 218 220 } 219 221 $post_data .= "</div>";
Note: See TracChangeset
for help on using the changeset viewer.