Plugin Directory

Changeset 2826776


Ignore:
Timestamp:
11/30/2022 11:15:55 PM (3 years ago)
Author:
jr00ck
Message:

Update to version 2.6 from GitHub

Location:
hide-wp-toolbar
Files:
2 deleted
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • hide-wp-toolbar/tags/2.6/hide-wp-toolbar.php

    r2822490 r2826776  
    44Plugin URI: http://blog.webguysaz.com/hide-wp-toolbar-wordpress-plugin/
    55Description: The plugin adds a clickable button to the right side of the WordPress Toolbar that will show or hide the bar with nice transitions.
    6 Version: 2.5.6
     6Version: 2.6
    77Author: Web Guys
    88Author URI: http://webguysaz.com
     
    5454    if(!is_admin() && is_user_logged_in()){
    5555        // Register the style for plugin
    56         wp_enqueue_style( 'hide-wp-toolbar-style', plugins_url( 'style.css', __FILE__ ), array('dashicons'), '2.5.6'  );
     56        wp_enqueue_style( 'hide-wp-toolbar-style', plugins_url( 'style.css', __FILE__ ), array('dashicons'), '2.6'  );
    5757    }
    5858}
  • hide-wp-toolbar/tags/2.6/readme.txt

    r2822490 r2826776  
    66Requires at least: 3.8
    77Tested up to: 6.1.1
    8 Stable tag: 2.5.6
     8Stable tag: 2.6
    99
    1010Easily hide or show the front-end WordPress Admin Toolbar with a click of a button.
     
    4343
    4444== Changelog ==
     45
     46= 2.6 =
     47* Cleaned up outdated CSS prefixes (Github issue #8)
     48* Removed font size CSS declaration to accept default font size (maintains icon position when rotating)
     49* Created plugin icon for plugin repository (Github issue #4)
     50* Created animated gif screenshot to see plugin behavior (Github issue #5)
    4551
    4652= 2.5.6 =
  • hide-wp-toolbar/tags/2.6/style.css

    r1661972 r2826776  
    11html.show-wp-toolbar.transition {
    22    transition: margin-top 1s;
    3     -webkit-transition: margin-top 1s;
    4     -moz-transition: margin-top 1s;
    53}
    64
     
    119html.hide-wp-toolbar.transition {
    1210    transition: margin-top 1s;
    13     -webkit-transition: margin-top 1s;
    14     -moz-transition: margin-top 1s;
    1511    transition-delay: 1s;
    16     -webkit-transition-delay: 1s;
    17     -moz-transition-delay: 1s;
    1812}
    1913
     
    2418#wpadminbar.show-wp-toolbar.transition #wp-admin-bar-hide {
    2519    transition: margin-right 2.5s;
    26     -webkit-transition: margin-right 2.5s;
    27     -moz-transition: margin-right 2.5s;
    2820}
    2921
     
    3426#wpadminbar.hide-wp-toolbar.transition #wp-admin-bar-hide {
    3527    transition: margin-right 2.5s;
    36     -webkit-transition: margin-right 2.5s;
    37     -moz-transition: margin-right 2.5s;
    3828}
    3929
     
    4434#wpadminbar.show-wp-toolbar.transition {
    4535    transition: left 1s;
    46     -webkit-transition: left 1s;
    47     -moz-transition: left 1s;
    4836}
    4937
     
    5543#wpadminbar.hide-wp-toolbar.transition {
    5644    transition: left 1s;
    57     -webkit-transition: left 1s;
    58     -moz-transition: left 1s;
    5945}
    6046
     
    6450
    6551#wpadminbar #wp-admin-bar-hide div a:before {
    66     font-size: 15px;
    6752    font-family: "dashicons";
    6853    content: "\f340";
     
    7560#wpadminbar.show-wp-toolbar.transition #wp-admin-bar-hide div a {
    7661    transform: rotate(0deg);
    77     -webkit-transform: rotate(0deg);
    78     -moz-transform: rotate(0deg);
    7962    transition: all 1s;
    80     -webkit-transition: all 1s;
    81     -moz-transition: all 1s;
    8263    transition-delay: 1s;
    83     -webkit-transition-delay: 1s;
    84     -moz-transition-delay: 1s;
    8564}
    8665
    8766#wpadminbar.hide-wp-toolbar #wp-admin-bar-hide div a {
    8867    transform: rotate(180deg);
    89     -webkit-transform: rotate(180deg);
    90     -moz-transform: rotate(180deg);
    9168}
    9269
    9370#wpadminbar.hide-wp-toolbar.transition #wp-admin-bar-hide div a {
    9471    transition: all 1s;
    95     -webkit-transition: all 1s;
    96     -moz-transition: all 1s;
    9772    transition-delay: 1s;
    98     -webkit-transition-delay: 1s;
    99     -moz-transition-delay: 1s;
    10073}
  • hide-wp-toolbar/trunk/hide-wp-toolbar.php

    r2822490 r2826776  
    44Plugin URI: http://blog.webguysaz.com/hide-wp-toolbar-wordpress-plugin/
    55Description: The plugin adds a clickable button to the right side of the WordPress Toolbar that will show or hide the bar with nice transitions.
    6 Version: 2.5.6
     6Version: 2.6
    77Author: Web Guys
    88Author URI: http://webguysaz.com
     
    5454    if(!is_admin() && is_user_logged_in()){
    5555        // Register the style for plugin
    56         wp_enqueue_style( 'hide-wp-toolbar-style', plugins_url( 'style.css', __FILE__ ), array('dashicons'), '2.5.6'  );
     56        wp_enqueue_style( 'hide-wp-toolbar-style', plugins_url( 'style.css', __FILE__ ), array('dashicons'), '2.6'  );
    5757    }
    5858}
  • hide-wp-toolbar/trunk/readme.txt

    r2822490 r2826776  
    66Requires at least: 3.8
    77Tested up to: 6.1.1
    8 Stable tag: 2.5.6
     8Stable tag: 2.6
    99
    1010Easily hide or show the front-end WordPress Admin Toolbar with a click of a button.
     
    4343
    4444== Changelog ==
     45
     46= 2.6 =
     47* Cleaned up outdated CSS prefixes (Github issue #8)
     48* Removed font size CSS declaration to accept default font size (maintains icon position when rotating)
     49* Created plugin icon for plugin repository (Github issue #4)
     50* Created animated gif screenshot to see plugin behavior (Github issue #5)
    4551
    4652= 2.5.6 =
  • hide-wp-toolbar/trunk/style.css

    r1661972 r2826776  
    11html.show-wp-toolbar.transition {
    22    transition: margin-top 1s;
    3     -webkit-transition: margin-top 1s;
    4     -moz-transition: margin-top 1s;
    53}
    64
     
    119html.hide-wp-toolbar.transition {
    1210    transition: margin-top 1s;
    13     -webkit-transition: margin-top 1s;
    14     -moz-transition: margin-top 1s;
    1511    transition-delay: 1s;
    16     -webkit-transition-delay: 1s;
    17     -moz-transition-delay: 1s;
    1812}
    1913
     
    2418#wpadminbar.show-wp-toolbar.transition #wp-admin-bar-hide {
    2519    transition: margin-right 2.5s;
    26     -webkit-transition: margin-right 2.5s;
    27     -moz-transition: margin-right 2.5s;
    2820}
    2921
     
    3426#wpadminbar.hide-wp-toolbar.transition #wp-admin-bar-hide {
    3527    transition: margin-right 2.5s;
    36     -webkit-transition: margin-right 2.5s;
    37     -moz-transition: margin-right 2.5s;
    3828}
    3929
     
    4434#wpadminbar.show-wp-toolbar.transition {
    4535    transition: left 1s;
    46     -webkit-transition: left 1s;
    47     -moz-transition: left 1s;
    4836}
    4937
     
    5543#wpadminbar.hide-wp-toolbar.transition {
    5644    transition: left 1s;
    57     -webkit-transition: left 1s;
    58     -moz-transition: left 1s;
    5945}
    6046
     
    6450
    6551#wpadminbar #wp-admin-bar-hide div a:before {
    66     font-size: 15px;
    6752    font-family: "dashicons";
    6853    content: "\f340";
     
    7560#wpadminbar.show-wp-toolbar.transition #wp-admin-bar-hide div a {
    7661    transform: rotate(0deg);
    77     -webkit-transform: rotate(0deg);
    78     -moz-transform: rotate(0deg);
    7962    transition: all 1s;
    80     -webkit-transition: all 1s;
    81     -moz-transition: all 1s;
    8263    transition-delay: 1s;
    83     -webkit-transition-delay: 1s;
    84     -moz-transition-delay: 1s;
    8564}
    8665
    8766#wpadminbar.hide-wp-toolbar #wp-admin-bar-hide div a {
    8867    transform: rotate(180deg);
    89     -webkit-transform: rotate(180deg);
    90     -moz-transform: rotate(180deg);
    9168}
    9269
    9370#wpadminbar.hide-wp-toolbar.transition #wp-admin-bar-hide div a {
    9471    transition: all 1s;
    95     -webkit-transition: all 1s;
    96     -moz-transition: all 1s;
    9772    transition-delay: 1s;
    98     -webkit-transition-delay: 1s;
    99     -moz-transition-delay: 1s;
    10073}
Note: See TracChangeset for help on using the changeset viewer.