Make WordPress Themes

Changeset 178751


Ignore:
Timestamp:
11/02/2022 06:33:48 AM (3 years ago)
Author:
themedropbox
Message:

New version of Zakra - 2.1.7

Location:
zakra/2.1.7
Files:
1 added
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • zakra/2.1.7/inc/class-zakra-dynamic-css.php

    r176413r178751 
    6565            $base_primary_color     = get_theme_mod( 'zakra_base_color_primary', '#269bd1' );
    6666            $base_primary_color_css = array(
    67                 'a:hover, a:focus, .tg-primary-menu > div ul li:hover > a,  .tg-primary-menu > div ul li.current_page_item > a, .tg-primary-menu > div ul li.current-menu-item > a,  .tg-mobile-navigation > div ul li.current_page_item > a, .tg-mobile-navigation > div ul li.current-menu-item > a,  .entry-content a, .page-template-pagebuilder a, .tg-meta-style-two .entry-meta span, .tg-meta-style-two .entry-meta a' => array(
     67                'a:hover, a:focus, .tg-primary-menu > div ul li:hover > a,  .tg-primary-menu > div ul li.current_page_item > a, .tg-primary-menu > div ul li.current-menu-item > a,  .tg-mobile-navigation > div ul li.current_page_item > a, .tg-mobile-navigation > div ul li.current-menu-item > a,  .entry-content a, .pagebuilder-content a, .tg-meta-style-two .entry-meta span, .tg-meta-style-two .entry-meta a' => array(
    6868                    'color' => esc_html( $base_primary_color ),
    6969                ),
    70                 '.tg-primary-menu.tg-primary-menu--style-underline > div > ul > li.current_page_item > a::before, .tg-primary-menu.tg-primary-menu--style-underline > div > ul > li.current-menu-item > a::before, .tg-primary-menu.tg-primary-menu--style-left-border > div > ul > li.current_page_item > a::before, .tg-primary-menu.tg-primary-menu--style-left-border > div > ul > li.current-menu-item > a::before, .tg-primary-menu.tg-primary-menu--style-right-border > div > ul > li.current_page_item > a::before, .tg-primary-menu.tg-primary-menu--style-right-border > div > ul > li.current-menu-item > a::before, .tg-scroll-to-top:hover, button, input[type="button"], input[type="reset"], input[type="submit"], .tg-primary-menu > div ul li.tg-header-button-wrap a' => array(
     70                '.tg-primary-menu.tg-primary-menu--style-underline > div > ul > li.current_page_item > a::before, .tg-primary-menu.tg-primary-menu--style-underline > div > ul > li.current-menu-item > a::before, .tg-primary-menu.tg-primary-menu--style-left-border > div > ul > li.current_page_item > a::before, .tg-primary-menu.tg-primary-menu--style-left-border > div > ul > li.current-menu-item > a::before, .tg-primary-menu.tg-primary-menu--style-right-border > div > ul > li.current_page_item > a::before, .tg-primary-menu.tg-primary-menu--style-right-border > div > ul > li.current-menu-item > a::before, .tg-scroll-to-top:hover, button, input[type="button"], input[type="reset"], input[type="submit"], .tg-primary-menu > div ul li.tg-header-button-wrap a, .wp-block-button .wp-block-button__link' => array(
    7171                    'background-color' => esc_html( $base_primary_color ),
    7272                ),
     
    9898            $link_color_normal     = get_theme_mod( 'zakra_link_color', '#269bd1' );
    9999            $link_color_normal_css = array(
    100                 '.entry-content a, .page-template-pagebuilder a' => array(
     100                '.entry-content a, .pagebuilder-content a' => array(
    101101                    'color' => esc_html( $link_color_normal ),
    102102                ),
     
    107107            $link_color_hover     = get_theme_mod( 'zakra_link_hover_color', '#269bd1' );
    108108            $link_color_hover_css = array(
    109                 '.entry-content a:hover, .entry-content a:focus, .page-template-pagebuilder a:hover, .page-template-pagebuilder a:focus' => array(
     109                '.entry-content a:hover, .entry-content a:focus, .pagebuilder-content a:hover, .pagebuilder-content a:focus' => array(
    110110                    'color' => esc_html( $link_color_hover ),
    111111                ),
     
    374374                $button_padding_default,
    375375                $button_padding,
    376                 'button, input[type="button"], input[type="reset"], input[type="submit"], #infinite-handle span',
     376                'button, input[type="button"], input[type="reset"], input[type="submit"], #infinite-handle span, .wp-block-button .wp-block-button__link',
    377377                'padding'
    378378            );
     
    381381            $button_text_color     = get_theme_mod( 'zakra_button_text_color', '#ffffff' );
    382382            $button_text_color_css = array(
    383                 'button, input[type="button"], input[type="reset"], input[type="submit"], #infinite-handle span' => array(
     383                'button, input[type="button"], input[type="reset"], input[type="submit"], #infinite-handle span, .wp-block-button .wp-block-button__link' => array(
    384384                    'color' => esc_html( $button_text_color ),
    385385                ),
     
    390390            $button_hover_text_color     = get_theme_mod( 'zakra_button_text_hover_color', '#ffffff' );
    391391            $button_hover_text_color_css = array(
    392                 'button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, #infinite-handle span:hover' => array(
     392                'button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, #infinite-handle span:hover, .wp-block-button .wp-block-button__link:hover' => array(
    393393                    'color' => esc_html( $button_hover_text_color ),
    394394                ),
     
    399399            $button_bg_color     = get_theme_mod( 'zakra_button_bg_color', '#269bd1' );
    400400            $button_bg_color_css = array(
    401                 'button, input[type="button"], input[type="reset"], input[type="submit"], #infinite-handle span' => array(
     401                'button, input[type="button"], input[type="reset"], input[type="submit"], #infinite-handle span, .wp-block-button .wp-block-button__link' => array(
    402402                    'background-color' => esc_html( $button_bg_color ),
    403403                ),
     
    408408            $button_bg_hover_color     = get_theme_mod( 'zakra_button_bg_hover_color', '#1e7ba6' );
    409409            $button_bg_hover_color_css = array(
    410                 'button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, #infinite-handle span:hover' => array(
     410                'button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, #infinite-handle span:hover, .wp-block-button .wp-block-button__link:hover' => array(
    411411                    'background-color' => esc_html( $button_bg_hover_color ),
    412412                ),
     
    417417            $button_border_radius     = get_theme_mod( 'zakra_button_roundness', 0 );
    418418            $button_border_radius_css = array(
    419                 'button, input[type="button"], input[type="reset"], input[type="submit"], #infinite-handle span' => array(
     419                'button, input[type="button"], input[type="reset"], input[type="submit"], #infinite-handle span, .wp-block-button .wp-block-button__link' => array(
    420420                    'border-radius' => esc_html( $button_border_radius ) . 'px',
    421421                ),
  • zakra/2.1.7/inc/customizer/options/footer/class-zakra-customize-footer-bottom-bar-option.php

    r174741r178751 
    159159                array(
    160160                    'name'       => 'zakra_footer_bar_section_two',
    161                     'default'    => 'text_html',
     161                    'default'    => 'none',
    162162                    'type'       => 'control',
    163163                    'control'    => 'select',
     
    182182                    'control'    => 'zakra-editor',
    183183                    'section'    => 'zakra_footer_bottom_bar',
    184                     'label'      => esc_html__( 'Text/HTML for Left Content', 'zakra' ),
     184                    'label'      => esc_html__( 'Text/HTML for Right Content', 'zakra' ),
    185185                    'transport'  => 'postMessage',
    186186                    'partial'    => array(
  • zakra/2.1.7/inc/customizer/options/global/class-zakra-customize-button-option.php

    r174741r178751 
    146146                    'input_attrs' => array(
    147147                        'min'  => 0,
    148                         'max'  => 20,
     148                        'max'  => 50,
    149149                        'step' => 1,
    150150                    ),
  • zakra/2.1.7/languages/zakra.pot

    r176413r178751 
    12191219msgstr ""
    12201220
    1221 #: inc/customizer/options/footer/class-zakra-customize-footer-bottom-bar-option.php:98, inc/customizer/options/footer/class-zakra-customize-footer-bottom-bar-option.php:184, inc/customizer/options/header/class-zakra-customize-header-top-option.php:85
     1221#: inc/customizer/options/footer/class-zakra-customize-footer-bottom-bar-option.php:98, inc/customizer/options/header/class-zakra-customize-header-top-option.php:85
    12221222msgid "Text/HTML for Left Content"
    12231223msgstr ""
     
    12351235msgstr ""
    12361236
     1237#: inc/customizer/options/footer/class-zakra-customize-footer-bottom-bar-option.php:184, inc/customizer/options/header/class-zakra-customize-header-top-option.php:175
     1238msgid "Text/HTML for Right Content"
     1239msgstr ""
     1240
    12371241#: inc/customizer/options/footer/class-zakra-customize-footer-bottom-bar-option.php:322, inc/customizer/options/footer/class-zakra-customize-footer-widget-option.php:277
    12381242msgid "Border Top"
     
    14011405#: inc/customizer/options/header/class-zakra-customize-header-top-option.php:35
    14021406msgid "Enable Header Top Bar"
    1403 msgstr ""
    1404 
    1405 #: inc/customizer/options/header/class-zakra-customize-header-top-option.php:175
    1406 msgid "Text/HTML for Right Content"
    14071407msgstr ""
    14081408
  • zakra/2.1.7/readme.txt

    r176413r178751 
    22Contributors: themegrill
    33Author: ThemeGrill
    4 Version: 2.1.6
     4Version: 2.1.7
    55Tested up to: 6.0
    66Requires PHP: 5.6
    77Requires at least: 4.7
    8 Stable tag: 2.1.6
     8Stable tag: 2.1.7
    99License: GPLv3 or later
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
     
    6161
    6262== Changelog ==
     63= Version 2.1.7 - 2022-11-02 =
     64* Fix - Design issues on editor buttons while changing button properties from customizer.
     65* Fix - Responsive spacing issue on Media & Text block.
     66* Add - Default padding in Columns block.
     67* Add - Alignment and spacing options in default block.
     68* Fix - Links color issue while using page builder template.
     69* Fix - Right content not appearing in footer bottom bar.
     70
    6371= Version 2.1.6 - 2022-09-23 =
    6472* Fix - Link color not applying while page builder template.
  • zakra/2.1.7/style-editor-block.css

    r173021r178751 
     1.site-content {
     2    margin-top: 80px;
     3    margin-bottom: 80px;
     4}
     5
     6#primary {
     7    width: 70%;
     8    padding-right: 60px;
     9}
     10
     11#secondary {
     12    width: 30%;
     13    padding-left: 60px;
     14    border-left: 1px solid #e9ecef;
     15}
     16
     17.tg-site-layout--default #primary {
     18    width: unset;
     19    padding: 0;
     20}
     21
     22.tg-site-layout--default #primary .entry-content > .alignfull {
     23    width: auto;
     24    margin-left: calc(50% - 50vw);
     25    margin-right: calc(50% - 50vw);
     26}
     27
     28.tg-site-layout--default #primary .entry-content > .alignwide {
     29    margin-left: -100px;
     30    margin-right: -100px;
     31    max-width: unset;
     32}
     33
     34.tg-site-layout--default .content-area {
     35    max-width: 760px;
     36    margin: 0 auto;
     37}
     38
     39.tg-site-layout--default .hentry {
     40    margin: 0 0 10em;
     41}
     42
     43.tg-site-layout--left .site-content .tg-container--flex {
     44    -webkit-box-orient: horizontal;
     45    -webkit-box-direction: reverse;
     46    -ms-flex-direction: row-reverse;
     47    flex-direction: row-reverse;
     48}
     49
     50.tg-site-layout--left #primary {
     51    padding-right: 0;
     52    padding-left: 60px;
     53}
     54
     55.tg-site-layout--left #secondary {
     56    padding-left: 0;
     57    padding-right: 60px;
     58    border-left: 0 none;
     59    border-right: 1px solid #e9ecef;
     60}
     61
     62.tg-site-layout--no-sidebar #primary {
     63    width: 100%;
     64    padding-right: 0;
     65}
     66
     67.tg-site-layout--no-sidebar #primary .entry-content > .alignfull {
     68    margin-left: calc(50% - 50vw);
     69    margin-right: calc(50% - 50vw);
     70    max-width: unset;
     71}
     72
     73.tg-site-layout--no-sidebar #primary .entry-content > .alignfull.wp-block-cover, .tg-site-layout--no-sidebar #primary .entry-content > .alignfull.wp-block-cover-image {
     74    width: unset;
     75}
     76
     77.tg-site-layout--no-sidebar #primary .entry-content > .alignwide {
     78    margin-left: -100px;
     79    margin-right: -100px;
     80    max-width: unset;
     81}
     82
     83.wp-block-columns {
     84    padding-top: 3em;
     85    padding-right: 2em;
     86    padding-bottom: 3em;
     87    padding-left: 2em;
     88}
     89
     90.wp-block-media-text .wp-block-media-text__content {
     91    padding: 0 0 0 8%;
     92}
     93
     94.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
     95    padding: 0 8% 0 0;
     96}
     97
     98.widget ul.wp-block-social-links li:last-child {
     99    border-bottom: 1px solid #e9ecef;
     100}
     101
     102ul.wp-block-post-template {
     103    margin: 0;
     104}
     105
     106@media (max-width: 768px) {
     107    .wp-block-group,
     108    .wp-block-cover {
     109        padding: 2em;
     110    }
     111}
     112
     113@media (max-width: 600px) {
     114    .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
     115        padding: 0;
     116    }
     117    .wp-block-media-text .wp-block-media-text__content {
     118        padding: 0;
     119    }
     120}
     121
     122.zakra-border-radius-img-inside--20 img {
     123    border-radius: 20px;
     124}
     125
    1126/* Basic Block Editor CSS */
    2127.editor-styles-wrapper {
     
    25150    color: #16181a;
    26151    font-weight: normal;
     152}
     153
     154.wp-block-button__link {
     155    background-color: #269bd1;
     156    border-radius: 0;
     157    color: #fff;
     158    padding: 0.7rem 1rem;
    27159}
    28160
     
    90222    background-color: #1e7ba6;
    91223    color: #fff;
     224}
     225
     226.wp-block-cover .block-editor-block-list__layout {
     227    margin-left: auto;
     228    margin-right: auto;
    92229}
    93230
  • zakra/2.1.7/style-rtl.css

    r176413r178751 
    55Author URI: https://themegrill.com
    66Description: Zakra is flexible, fast, lightweight and modern multipurpose theme that comes with many starter free sites (currently 10+ free starter sites and more will be added later) that you can use to make your site beautiful and professional. Check all the starter sites at https://zakratheme.com/demos. Suitable for personal blog, portfolio, WooCommerce stores, business websites and niche-based sites (like Cafe, Spa, Charity, Yoga, Wedding, Dentist, Education etc) as well. Works with Elementor plus other major page builders so you can create any layout you want. The theme is responsive, Gutenberg compatible, SEO friendly, translation ready and major WordPress plugins compatible.
    7 Version: 2.1.6
     7Version: 2.1.7
    88Tested up to: 6.0
    99Requires PHP: 5.6
     
    608608}
    609609
    610 .page-template-pagebuilder a {
     610.pagebuilder-content a {
    611611    color: #269bd1;
    612612}
    613613
    614 .page-template-pagebuilder a:hover, .page-template-pagebuilder a:focus {
     614.pagebuilder-content a:hover, .pagebuilder-content a:focus {
    615615    color: #1e7ba6;
    616616}
     
    15611561input[type="button"]:hover,
    15621562input[type="reset"]:hover,
    1563 input[type="submit"]:hover {
     1563input[type="submit"]:hover,
     1564.wp-block-button .wp-block-button__link:hover {
    15641565    background-color: #1e7ba6;
    15651566    color: #fff;
     
    26912692    line-height: 1.2;
    26922693}
     2694
     2695.wp-block-columns {
     2696    padding-top: 3em;
     2697    padding-left: 2em;
     2698    padding-bottom: 3em;
     2699    padding-right: 2em;
     2700}
     2701
     2702.wp-block-media-text .wp-block-media-text__content {
     2703    padding: 0 8% 0 0;
     2704}
     2705
     2706.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
     2707    padding: 0 0 0 8%;
     2708}
     2709
     2710.widget ul.wp-block-social-links li:last-child {
     2711    border-bottom: 1px solid #e9ecef;
     2712}
     2713
     2714ul.wp-block-post-template {
     2715    margin: 0;
     2716}
     2717
     2718@media (max-width: 768px) {
     2719    .wp-block-group,
     2720    .wp-block-cover {
     2721        padding: 2em;
     2722    }
     2723}
     2724
     2725@media (max-width: 600px) {
     2726    .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
     2727        padding: 0;
     2728    }
     2729    .wp-block-media-text .wp-block-media-text__content {
     2730        padding: 0;
     2731    }
     2732}
     2733
     2734.zakra-border-radius-img-inside--20 img {
     2735    border-radius: 20px;
     2736}
  • zakra/2.1.7/style.css

    r176413r178751 
    55Author URI: https://themegrill.com
    66Description: Zakra is flexible, fast, lightweight and modern multipurpose theme that comes with many starter free sites (currently 10+ free starter sites and more will be added later) that you can use to make your site beautiful and professional. Check all the starter sites at https://zakratheme.com/demos. Suitable for personal blog, portfolio, WooCommerce stores, business websites and niche-based sites (like Cafe, Spa, Charity, Yoga, Wedding, Dentist, Education etc) as well. Works with Elementor plus other major page builders so you can create any layout you want. The theme is responsive, Gutenberg compatible, SEO friendly, translation ready and major WordPress plugins compatible.
    7 Version: 2.1.6
     7Version: 2.1.7
    88Tested up to: 6.0
    99Requires PHP: 5.6
     
    608608}
    609609
    610 .page-template-pagebuilder a {
     610.pagebuilder-content a {
    611611    color: #269bd1;
    612612}
    613613
    614 .page-template-pagebuilder a:hover, .page-template-pagebuilder a:focus {
     614.pagebuilder-content a:hover, .pagebuilder-content a:focus {
    615615    color: #1e7ba6;
    616616}
     
    15611561input[type="button"]:hover,
    15621562input[type="reset"]:hover,
    1563 input[type="submit"]:hover {
     1563input[type="submit"]:hover,
     1564.wp-block-button .wp-block-button__link:hover {
    15641565    background-color: #1e7ba6;
    15651566    color: #fff;
     
    26912692    line-height: 1.2;
    26922693}
     2694
     2695.wp-block-columns {
     2696    padding-top: 3em;
     2697    padding-right: 2em;
     2698    padding-bottom: 3em;
     2699    padding-left: 2em;
     2700}
     2701
     2702.wp-block-media-text .wp-block-media-text__content {
     2703    padding: 0 0 0 8%;
     2704}
     2705
     2706.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
     2707    padding: 0 8% 0 0;
     2708}
     2709
     2710.widget ul.wp-block-social-links li:last-child {
     2711    border-bottom: 1px solid #e9ecef;
     2712}
     2713
     2714ul.wp-block-post-template {
     2715    margin: 0;
     2716}
     2717
     2718@media (max-width: 768px) {
     2719    .wp-block-group,
     2720    .wp-block-cover {
     2721        padding: 2em;
     2722    }
     2723}
     2724
     2725@media (max-width: 600px) {
     2726    .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
     2727        padding: 0;
     2728    }
     2729    .wp-block-media-text .wp-block-media-text__content {
     2730        padding: 0;
     2731    }
     2732}
     2733
     2734.zakra-border-radius-img-inside--20 img {
     2735    border-radius: 20px;
     2736}
Note: See TracChangeset for help on using the changeset viewer.