Changeset 2826776
- Timestamp:
- 11/30/2022 11:15:55 PM (3 years ago)
- Location:
- hide-wp-toolbar
- Files:
-
- 2 deleted
- 10 edited
- 1 copied
-
tags/2.6 (copied) (copied from hide-wp-toolbar/trunk)
-
tags/2.6/assets/banner-772x250.png (modified) (previous)
-
tags/2.6/assets/screenshot-1.png (deleted)
-
tags/2.6/assets/screenshot-2.png (modified) (previous)
-
tags/2.6/hide-wp-toolbar.php (modified) (2 diffs)
-
tags/2.6/readme.txt (modified) (2 diffs)
-
tags/2.6/style.css (modified) (8 diffs)
-
trunk/assets/banner-772x250.png (modified) (previous)
-
trunk/assets/screenshot-1.png (deleted)
-
trunk/assets/screenshot-2.png (modified) (previous)
-
trunk/hide-wp-toolbar.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/style.css (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hide-wp-toolbar/tags/2.6/hide-wp-toolbar.php
r2822490 r2826776 4 4 Plugin URI: http://blog.webguysaz.com/hide-wp-toolbar-wordpress-plugin/ 5 5 Description: 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.66 Version: 2.6 7 7 Author: Web Guys 8 8 Author URI: http://webguysaz.com … … 54 54 if(!is_admin() && is_user_logged_in()){ 55 55 // 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' ); 57 57 } 58 58 } -
hide-wp-toolbar/tags/2.6/readme.txt
r2822490 r2826776 6 6 Requires at least: 3.8 7 7 Tested up to: 6.1.1 8 Stable tag: 2. 5.68 Stable tag: 2.6 9 9 10 10 Easily hide or show the front-end WordPress Admin Toolbar with a click of a button. … … 43 43 44 44 == 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) 45 51 46 52 = 2.5.6 = -
hide-wp-toolbar/tags/2.6/style.css
r1661972 r2826776 1 1 html.show-wp-toolbar.transition { 2 2 transition: margin-top 1s; 3 -webkit-transition: margin-top 1s;4 -moz-transition: margin-top 1s;5 3 } 6 4 … … 11 9 html.hide-wp-toolbar.transition { 12 10 transition: margin-top 1s; 13 -webkit-transition: margin-top 1s;14 -moz-transition: margin-top 1s;15 11 transition-delay: 1s; 16 -webkit-transition-delay: 1s;17 -moz-transition-delay: 1s;18 12 } 19 13 … … 24 18 #wpadminbar.show-wp-toolbar.transition #wp-admin-bar-hide { 25 19 transition: margin-right 2.5s; 26 -webkit-transition: margin-right 2.5s;27 -moz-transition: margin-right 2.5s;28 20 } 29 21 … … 34 26 #wpadminbar.hide-wp-toolbar.transition #wp-admin-bar-hide { 35 27 transition: margin-right 2.5s; 36 -webkit-transition: margin-right 2.5s;37 -moz-transition: margin-right 2.5s;38 28 } 39 29 … … 44 34 #wpadminbar.show-wp-toolbar.transition { 45 35 transition: left 1s; 46 -webkit-transition: left 1s;47 -moz-transition: left 1s;48 36 } 49 37 … … 55 43 #wpadminbar.hide-wp-toolbar.transition { 56 44 transition: left 1s; 57 -webkit-transition: left 1s;58 -moz-transition: left 1s;59 45 } 60 46 … … 64 50 65 51 #wpadminbar #wp-admin-bar-hide div a:before { 66 font-size: 15px;67 52 font-family: "dashicons"; 68 53 content: "\f340"; … … 75 60 #wpadminbar.show-wp-toolbar.transition #wp-admin-bar-hide div a { 76 61 transform: rotate(0deg); 77 -webkit-transform: rotate(0deg);78 -moz-transform: rotate(0deg);79 62 transition: all 1s; 80 -webkit-transition: all 1s;81 -moz-transition: all 1s;82 63 transition-delay: 1s; 83 -webkit-transition-delay: 1s;84 -moz-transition-delay: 1s;85 64 } 86 65 87 66 #wpadminbar.hide-wp-toolbar #wp-admin-bar-hide div a { 88 67 transform: rotate(180deg); 89 -webkit-transform: rotate(180deg);90 -moz-transform: rotate(180deg);91 68 } 92 69 93 70 #wpadminbar.hide-wp-toolbar.transition #wp-admin-bar-hide div a { 94 71 transition: all 1s; 95 -webkit-transition: all 1s;96 -moz-transition: all 1s;97 72 transition-delay: 1s; 98 -webkit-transition-delay: 1s;99 -moz-transition-delay: 1s;100 73 } -
hide-wp-toolbar/trunk/hide-wp-toolbar.php
r2822490 r2826776 4 4 Plugin URI: http://blog.webguysaz.com/hide-wp-toolbar-wordpress-plugin/ 5 5 Description: 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.66 Version: 2.6 7 7 Author: Web Guys 8 8 Author URI: http://webguysaz.com … … 54 54 if(!is_admin() && is_user_logged_in()){ 55 55 // 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' ); 57 57 } 58 58 } -
hide-wp-toolbar/trunk/readme.txt
r2822490 r2826776 6 6 Requires at least: 3.8 7 7 Tested up to: 6.1.1 8 Stable tag: 2. 5.68 Stable tag: 2.6 9 9 10 10 Easily hide or show the front-end WordPress Admin Toolbar with a click of a button. … … 43 43 44 44 == 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) 45 51 46 52 = 2.5.6 = -
hide-wp-toolbar/trunk/style.css
r1661972 r2826776 1 1 html.show-wp-toolbar.transition { 2 2 transition: margin-top 1s; 3 -webkit-transition: margin-top 1s;4 -moz-transition: margin-top 1s;5 3 } 6 4 … … 11 9 html.hide-wp-toolbar.transition { 12 10 transition: margin-top 1s; 13 -webkit-transition: margin-top 1s;14 -moz-transition: margin-top 1s;15 11 transition-delay: 1s; 16 -webkit-transition-delay: 1s;17 -moz-transition-delay: 1s;18 12 } 19 13 … … 24 18 #wpadminbar.show-wp-toolbar.transition #wp-admin-bar-hide { 25 19 transition: margin-right 2.5s; 26 -webkit-transition: margin-right 2.5s;27 -moz-transition: margin-right 2.5s;28 20 } 29 21 … … 34 26 #wpadminbar.hide-wp-toolbar.transition #wp-admin-bar-hide { 35 27 transition: margin-right 2.5s; 36 -webkit-transition: margin-right 2.5s;37 -moz-transition: margin-right 2.5s;38 28 } 39 29 … … 44 34 #wpadminbar.show-wp-toolbar.transition { 45 35 transition: left 1s; 46 -webkit-transition: left 1s;47 -moz-transition: left 1s;48 36 } 49 37 … … 55 43 #wpadminbar.hide-wp-toolbar.transition { 56 44 transition: left 1s; 57 -webkit-transition: left 1s;58 -moz-transition: left 1s;59 45 } 60 46 … … 64 50 65 51 #wpadminbar #wp-admin-bar-hide div a:before { 66 font-size: 15px;67 52 font-family: "dashicons"; 68 53 content: "\f340"; … … 75 60 #wpadminbar.show-wp-toolbar.transition #wp-admin-bar-hide div a { 76 61 transform: rotate(0deg); 77 -webkit-transform: rotate(0deg);78 -moz-transform: rotate(0deg);79 62 transition: all 1s; 80 -webkit-transition: all 1s;81 -moz-transition: all 1s;82 63 transition-delay: 1s; 83 -webkit-transition-delay: 1s;84 -moz-transition-delay: 1s;85 64 } 86 65 87 66 #wpadminbar.hide-wp-toolbar #wp-admin-bar-hide div a { 88 67 transform: rotate(180deg); 89 -webkit-transform: rotate(180deg);90 -moz-transform: rotate(180deg);91 68 } 92 69 93 70 #wpadminbar.hide-wp-toolbar.transition #wp-admin-bar-hide div a { 94 71 transition: all 1s; 95 -webkit-transition: all 1s;96 -moz-transition: all 1s;97 72 transition-delay: 1s; 98 -webkit-transition-delay: 1s;99 -moz-transition-delay: 1s;100 73 }
Note: See TracChangeset
for help on using the changeset viewer.