Changeset 178751
- Timestamp:
- 11/02/2022 06:33:48 AM (3 years ago)
- Location:
- zakra/2.1.7
- Files:
- 1 added
- 8 edited
- 1 copied
- . (copied) (copied from zakra/2.1.6)
- inc/class-zakra-dynamic-css.php (modified) (9 diffs)
- inc/customizer/options/footer/class-zakra-customize-footer-bottom-bar-option.php (modified) (2 diffs)
- inc/customizer/options/global/class-zakra-customize-button-option.php (modified) (1 diff)
- languages/zakra.pot (modified) (3 diffs)
- readme.txt (modified) (2 diffs)
- style-editor-block.css (modified) (3 diffs)
- style-rtl.css (modified) (4 diffs)
- style.css (modified) (4 diffs)
- theme.json (added)
Legend:
- Unmodified
- Added
- Removed
zakra/2.1.7/inc/class-zakra-dynamic-css.php
r176413 r178751 65 65 $base_primary_color = get_theme_mod( 'zakra_base_color_primary', '#269bd1' ); 66 66 $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-pagebuildera, .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( 68 68 'color' => esc_html( $base_primary_color ), 69 69 ), 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( 71 71 'background-color' => esc_html( $base_primary_color ), 72 72 ), … … 98 98 $link_color_normal = get_theme_mod( 'zakra_link_color', '#269bd1' ); 99 99 $link_color_normal_css = array( 100 '.entry-content a, .page -template-pagebuildera' => array(100 '.entry-content a, .pagebuilder-content a' => array( 101 101 'color' => esc_html( $link_color_normal ), 102 102 ), … … 107 107 $link_color_hover = get_theme_mod( 'zakra_link_hover_color', '#269bd1' ); 108 108 $link_color_hover_css = array( 109 '.entry-content a:hover, .entry-content a:focus, .page -template-pagebuilder a:hover, .page-template-pagebuildera:focus' => array(109 '.entry-content a:hover, .entry-content a:focus, .pagebuilder-content a:hover, .pagebuilder-content a:focus' => array( 110 110 'color' => esc_html( $link_color_hover ), 111 111 ), … … 374 374 $button_padding_default, 375 375 $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', 377 377 'padding' 378 378 ); … … 381 381 $button_text_color = get_theme_mod( 'zakra_button_text_color', '#ffffff' ); 382 382 $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( 384 384 'color' => esc_html( $button_text_color ), 385 385 ), … … 390 390 $button_hover_text_color = get_theme_mod( 'zakra_button_text_hover_color', '#ffffff' ); 391 391 $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( 393 393 'color' => esc_html( $button_hover_text_color ), 394 394 ), … … 399 399 $button_bg_color = get_theme_mod( 'zakra_button_bg_color', '#269bd1' ); 400 400 $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( 402 402 'background-color' => esc_html( $button_bg_color ), 403 403 ), … … 408 408 $button_bg_hover_color = get_theme_mod( 'zakra_button_bg_hover_color', '#1e7ba6' ); 409 409 $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( 411 411 'background-color' => esc_html( $button_bg_hover_color ), 412 412 ), … … 417 417 $button_border_radius = get_theme_mod( 'zakra_button_roundness', 0 ); 418 418 $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( 420 420 'border-radius' => esc_html( $button_border_radius ) . 'px', 421 421 ), zakra/2.1.7/inc/customizer/options/footer/class-zakra-customize-footer-bottom-bar-option.php
r174741 r178751 159 159 array( 160 160 'name' => 'zakra_footer_bar_section_two', 161 'default' => ' text_html',161 'default' => 'none', 162 162 'type' => 'control', 163 163 'control' => 'select', … … 182 182 'control' => 'zakra-editor', 183 183 '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' ), 185 185 'transport' => 'postMessage', 186 186 'partial' => array( zakra/2.1.7/inc/customizer/options/global/class-zakra-customize-button-option.php
r174741 r178751 146 146 'input_attrs' => array( 147 147 'min' => 0, 148 'max' => 20,148 'max' => 50, 149 149 'step' => 1, 150 150 ), zakra/2.1.7/languages/zakra.pot
r176413 r178751 1219 1219 msgstr "" 1220 1220 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:851221 #: 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 1222 1222 msgid "Text/HTML for Left Content" 1223 1223 msgstr "" … … 1235 1235 msgstr "" 1236 1236 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 1238 msgid "Text/HTML for Right Content" 1239 msgstr "" 1240 1237 1241 #: 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 1238 1242 msgid "Border Top" … … 1401 1405 #: inc/customizer/options/header/class-zakra-customize-header-top-option.php:35 1402 1406 msgid "Enable Header Top Bar" 1403 msgstr ""1404 1405 #: inc/customizer/options/header/class-zakra-customize-header-top-option.php:1751406 msgid "Text/HTML for Right Content"1407 1407 msgstr "" 1408 1408 zakra/2.1.7/readme.txt
r176413 r178751 2 2 Contributors: themegrill 3 3 Author: ThemeGrill 4 Version: 2.1. 64 Version: 2.1.7 5 5 Tested up to: 6.0 6 6 Requires PHP: 5.6 7 7 Requires at least: 4.7 8 Stable tag: 2.1. 68 Stable tag: 2.1.7 9 9 License: GPLv3 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.en.html … … 61 61 62 62 == 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 63 71 = Version 2.1.6 - 2022-09-23 = 64 72 * Fix - Link color not applying while page builder template. zakra/2.1.7/style-editor-block.css
r173021 r178751 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 102 ul.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 1 126 /* Basic Block Editor CSS */ 2 127 .editor-styles-wrapper { … … 25 150 color: #16181a; 26 151 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; 27 159 } 28 160 … … 90 222 background-color: #1e7ba6; 91 223 color: #fff; 224 } 225 226 .wp-block-cover .block-editor-block-list__layout { 227 margin-left: auto; 228 margin-right: auto; 92 229 } 93 230 zakra/2.1.7/style-rtl.css
r176413 r178751 5 5 Author URI: https://themegrill.com 6 6 Description: 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. 67 Version: 2.1.7 8 8 Tested up to: 6.0 9 9 Requires PHP: 5.6 … … 608 608 } 609 609 610 .page -template-pagebuildera {610 .pagebuilder-content a { 611 611 color: #269bd1; 612 612 } 613 613 614 .page -template-pagebuilder a:hover, .page-template-pagebuildera:focus {614 .pagebuilder-content a:hover, .pagebuilder-content a:focus { 615 615 color: #1e7ba6; 616 616 } … … 1561 1561 input[type="button"]:hover, 1562 1562 input[type="reset"]:hover, 1563 input[type="submit"]:hover { 1563 input[type="submit"]:hover, 1564 .wp-block-button .wp-block-button__link:hover { 1564 1565 background-color: #1e7ba6; 1565 1566 color: #fff; … … 2691 2692 line-height: 1.2; 2692 2693 } 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 2714 ul.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
r176413 r178751 5 5 Author URI: https://themegrill.com 6 6 Description: 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. 67 Version: 2.1.7 8 8 Tested up to: 6.0 9 9 Requires PHP: 5.6 … … 608 608 } 609 609 610 .page -template-pagebuildera {610 .pagebuilder-content a { 611 611 color: #269bd1; 612 612 } 613 613 614 .page -template-pagebuilder a:hover, .page-template-pagebuildera:focus {614 .pagebuilder-content a:hover, .pagebuilder-content a:focus { 615 615 color: #1e7ba6; 616 616 } … … 1561 1561 input[type="button"]:hover, 1562 1562 input[type="reset"]:hover, 1563 input[type="submit"]:hover { 1563 input[type="submit"]:hover, 1564 .wp-block-button .wp-block-button__link:hover { 1564 1565 background-color: #1e7ba6; 1565 1566 color: #fff; … … 2691 2692 line-height: 1.2; 2692 2693 } 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 2714 ul.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.