Plugin Directory

Changeset 3432095


Ignore:
Timestamp:
01/04/2026 01:04:34 PM (3 months ago)
Author:
rstheme2017
Message:

version updated

Location:
ultimate-tag-cloud
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • ultimate-tag-cloud/tags/1.0.3/widget/css/el-ultimate-tag-cloud.css

    r3432036 r3432095  
    1212}
    1313
    14 .ultimate-tag-cloud-container .ultimate-tag-cloud-words {
    15   display: flex;
    16   align-items: center;
    17 }
    1814.ultimate-tag-cloud-container .ultimate-tag-cloud-words:not(.swiper-wrapper) {
    1915  flex-wrap: wrap;
    2016  gap: 15px;
     17  display: flex;
     18  align-items: center;
    2119}
    2220.ultimate-tag-cloud-container .ultimate-tag-cloud-words:not(.swiper-wrapper) .tag-word-wrap {
  • ultimate-tag-cloud/tags/1.0.3/widget/css/el-ultimate-tag-cloud.scss

    r3432036 r3432095  
    1717.ultimate-tag-cloud-container {
    1818    .ultimate-tag-cloud-words {
    19         display: flex;
    20         align-items: center;
    2119        &:not(.swiper-wrapper) {
    2220            flex-wrap: wrap;
    2321            gap: 15px;
     22            display: flex;
     23            align-items: center;
    2424            .tag-word-wrap {
    2525                position: relative;
  • ultimate-tag-cloud/tags/1.0.3/widget/el-ultimate-tag-cloud.php

    r3432036 r3432095  
    821821                    'size_units' => [ 'px', '%', 'custom' ],
    822822                    'selectors' => [
    823                         '{{WRAPPER}} .ultimate-tag-cloud .swiper .swiper-wrapper' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
     823                        '{{WRAPPER}} .ultimate-tag-cloud .swiper' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
    824824                    ],
    825825                    'separator' => 'before',
     
    10011001            ]
    10021002        );
    1003            
     1003            $this->add_responsive_control(
     1004                'tag_text_align',
     1005                [
     1006                    'label' => esc_html__( 'Text Align', 'ultimate-tag-cloud' ),
     1007                    'type' => Controls_Manager::CHOOSE,
     1008                    'options' => [
     1009                        'left' => [
     1010                            'title' => esc_html__( 'Left', 'ultimate-tag-cloud' ),
     1011                            'icon' => 'eicon-text-align-left',
     1012                        ],
     1013                        'center' => [
     1014                            'title' => esc_html__( 'Center', 'ultimate-tag-cloud' ),
     1015                            'icon' => 'eicon-text-align-center',
     1016                        ],
     1017                        'right' => [
     1018                            'title' => esc_html__( 'Right', 'ultimate-tag-cloud' ),
     1019                            'icon' => 'eicon-text-align-right',
     1020                        ],
     1021                    ],
     1022                    'default' => '',
     1023                    'toggle' => true,
     1024                    'selectors' => [
     1025                        '{{WRAPPER}} .ultimate-tag-cloud-container .ultimate-tag-cloud-words .tag-word-wrap a' => 'text-align: {{VALUE}};',
     1026                    ],
     1027                ]
     1028            );
    10041029            $this->add_responsive_control(
    10051030                'tag_display_style',
  • ultimate-tag-cloud/trunk/widget/css/el-ultimate-tag-cloud.css

    r3432036 r3432095  
    1212}
    1313
    14 .ultimate-tag-cloud-container .ultimate-tag-cloud-words {
    15   display: flex;
    16   align-items: center;
    17 }
    1814.ultimate-tag-cloud-container .ultimate-tag-cloud-words:not(.swiper-wrapper) {
    1915  flex-wrap: wrap;
    2016  gap: 15px;
     17  display: flex;
     18  align-items: center;
    2119}
    2220.ultimate-tag-cloud-container .ultimate-tag-cloud-words:not(.swiper-wrapper) .tag-word-wrap {
  • ultimate-tag-cloud/trunk/widget/css/el-ultimate-tag-cloud.scss

    r3432036 r3432095  
    1717.ultimate-tag-cloud-container {
    1818    .ultimate-tag-cloud-words {
    19         display: flex;
    20         align-items: center;
    2119        &:not(.swiper-wrapper) {
    2220            flex-wrap: wrap;
    2321            gap: 15px;
     22            display: flex;
     23            align-items: center;
    2424            .tag-word-wrap {
    2525                position: relative;
  • ultimate-tag-cloud/trunk/widget/el-ultimate-tag-cloud.php

    r3432036 r3432095  
    821821                    'size_units' => [ 'px', '%', 'custom' ],
    822822                    'selectors' => [
    823                         '{{WRAPPER}} .ultimate-tag-cloud .swiper .swiper-wrapper' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
     823                        '{{WRAPPER}} .ultimate-tag-cloud .swiper' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
    824824                    ],
    825825                    'separator' => 'before',
     
    10011001            ]
    10021002        );
    1003            
     1003            $this->add_responsive_control(
     1004                'tag_text_align',
     1005                [
     1006                    'label' => esc_html__( 'Text Align', 'ultimate-tag-cloud' ),
     1007                    'type' => Controls_Manager::CHOOSE,
     1008                    'options' => [
     1009                        'left' => [
     1010                            'title' => esc_html__( 'Left', 'ultimate-tag-cloud' ),
     1011                            'icon' => 'eicon-text-align-left',
     1012                        ],
     1013                        'center' => [
     1014                            'title' => esc_html__( 'Center', 'ultimate-tag-cloud' ),
     1015                            'icon' => 'eicon-text-align-center',
     1016                        ],
     1017                        'right' => [
     1018                            'title' => esc_html__( 'Right', 'ultimate-tag-cloud' ),
     1019                            'icon' => 'eicon-text-align-right',
     1020                        ],
     1021                    ],
     1022                    'default' => '',
     1023                    'toggle' => true,
     1024                    'selectors' => [
     1025                        '{{WRAPPER}} .ultimate-tag-cloud-container .ultimate-tag-cloud-words .tag-word-wrap a' => 'text-align: {{VALUE}};',
     1026                    ],
     1027                ]
     1028            );
    10041029            $this->add_responsive_control(
    10051030                'tag_display_style',
Note: See TracChangeset for help on using the changeset viewer.