Plugin Directory

Changeset 1981125


Ignore:
Timestamp:
11/27/2018 08:13:18 AM (7 years ago)
Author:
malikzohaib42
Message:

bug fixes

Location:
gosign-masonry-post-block/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • gosign-masonry-post-block/trunk/plugin.php

    r1979546 r1981125  
    66 * Author: Zohaib - Gosign.de
    77 * Author URI: https://www.gosign.de/team/
    8  * Version: 2.0.1
     8 * Version: 2.1.0
    99 * License: GPL3+
    1010 * License URI: https://www.gnu.org/licenses/gpl.txt
  • gosign-masonry-post-block/trunk/readme.md

    r1979546 r1981125  
    22Contributors: malikzohaib42,ahmedcassini,mansoor1,mohsinkhan1,awaiskhalid0,ahsan21
    33Tags: 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.1
     4Stable tag: 2.1.0
    55Requires at least: 4.9.8
    66Tested up to : 4.9.8
  • gosign-masonry-post-block/trunk/src/block/style.scss

    r1973626 r1981125  
    77  padding: 20px 0;
    88  margin-bottom: 15px;
     9  text-align: center;
    910  .gosign_filter {
    1011    padding: 5px;
     
    1314      color: #000;
    1415    }
    15     &:hover {
    16       color: #ff6f00;
    17     }
     16    // &:hover {
     17    //   color: #ff6f00;
     18    // }
    1819  }
    1920  .text-sep {
     
    5657    overflow: hidden;
    5758    min-height: 100px;
     59    img {
     60      width: 100%;
     61      height: auto;
     62    }
    5863
    5964    &.box4 {
     
    7984        transform: scale(0);
    8085        transition: all 0.5s ease 0s;
    81       }
    82       img {
    83         width: 100%;
    84         height: auto;
    8586      }
    8687      .icon {
     
    117118      top: 0;
    118119      left: 0;
     120      a {
     121        &:hover {
     122          .title {
     123            color: inherit;
     124          }
     125        }
     126      }
    119127      .title {
     128        transition: all 0.5s ease;
    120129        font-size: 25px;
    121130        font-weight: 700;
  • gosign-masonry-post-block/trunk/src/init.php

    r1979187 r1981125  
    100100    ));
    101101    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>";
    103103        foreach($categories as $cat){
    104104            $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>";
     
    206206            $post_data .= "</div>";
    207207        } else {
    208             $post_data .= "<a href={$link}>
     208            $post_data .= "
    209209            <div class='gallery-image {$enableEnimation}'>
    210210            <img src='{$url}' />
    211211            <div class='box-content'>
     212            <a href={$link}>
    212213            <h3 class='title'>
    213214            {$post->post_title}
    214215            </h3>
     216            </a>
    215217            </div> 
    216218            </div>
    217             </a>";
     219            ";
    218220        }
    219221        $post_data .= "</div>";
Note: See TracChangeset for help on using the changeset viewer.