Make WordPress Themes

Changeset 241736

Timestamp:
09/12/2024 10:38:55 AM (15 months ago)
Author:
themedropbox
Message:

New version of Extendable - 2.0.13

Location:
extendable/2.0.13
Files:
3 edited
1 copied

Legend:

Unmodified
Added
Removed
  • extendable/2.0.13/readme.txt

    r241665 r241736  
    44Tested up to: 6.6
    55Requires PHP: 7.4
    6 Stable tag: 2.0.12
     6Stable tag: 2.0.13
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1414== Changelog ==
    1515
     16= 2.0.13 - 2024-09-12 =
     17-  Add: scroll margin for sticky header page content
     18
    1619= 2.0.12 - 2024-09-11 =
    17 - Add no-title-sticky-header.html template
    18 - Add Smooth scrolling
     20- Add: no-title-sticky-header.html template
     21- Add: Smooth scrolling
    1922
    2023= 2.0.11 - 2024-08-22 =
  • extendable/2.0.13/style.css

    r241665 r241736  
    88Tested up to: 6.6
    99Requires PHP: 7.4
    10 Version: 2.0.12
     10Version: 2.0.13
    1111License: GNU General Public License v2 or later
    1212License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    236236    visibility: hidden;
    237237}
     238
     239/*
     240 * Adds offset for sticky header overlap
     241 */
     242
     243 .sticky-header-offset-container .entry-content > .wp-block-group {
     244    scroll-margin-top: var(--wp--preset--spacing--60);
     245}
  • extendable/2.0.13/templates/no-title-sticky-header.html

    r241665 r241736  
    1 <!-- wp:group {"tagName":"header","metadata":{"name":"Sticky Header"},"style":{"position":{"type":"sticky","top":"0px"},"spacing":{"padding":{"top":"0","bottom":"0","left":"0","right":"0"}},"border":{"bottom":{"color":"#8585851f","width":"1px"},"top":{},"right":{},"left":{}}},"backgroundColor":"background","layout":{"type":"default"}} -->
     1<!-- wp:group {"tagName":"header","metadata":{"name":"Sticky Header"},"style":{"position":{"type":"sticky","top":"0px"},"border":{"bottom":{"color":"#8585851f","width":"1px"},"top":[],"right":[],"left":[]},"spacing":{"padding":{"top":"0","bottom":"0","left":"0","right":"0"}}},"backgroundColor":"background","layout":{"type":"default"}} -->
    22<header
    33    class="wp-block-group has-background-background-color has-background"
     
    1111    "
    1212>
    13     <!-- wp:template-part {"slug":"header","tagName":"header"} /-->
     13    <!-- wp:template-part {"slug":"header","theme":"extendable","tagName":"header"} /-->
    1414</header>
    1515<!-- /wp:group -->
    1616
    17 <!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}}} -->
    18 <main class="wp-block-group" style="margin-top: 0px; margin-bottom: 0px">
     17<!-- wp:group {"tagName":"main","className":"sticky-header-offset-container","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}}} -->
     18<main
     19    class="wp-block-group sticky-header-offset-container"
     20    style="margin-top: 0px; margin-bottom: 0px"
     21>
    1922    <!-- wp:post-content {"layout":{"type":"constrained"}} /-->
    2023</main>
Note: See TracChangeset for help on using the changeset viewer.