Changeset 2723427
- Timestamp:
- 05/13/2022 03:21:52 PM (3 years ago)
- Location:
- admin-sticky-sidebar
- Files:
-
- 6 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
admin-sticky-sidebar/trunk/admin-sticky-sidebar.css
r2723283 r2723427 2 2 #post-body-content { 3 3 float: none; 4 4 5 margin-bottom: 40px; 5 6 } … … 7 8 #postbox-container-1 { 8 9 position: sticky; 10 z-index: 1; 9 11 top: 50px; /* overwritten in js */ 10 12 right: 20px; 11 z-index: 1;12 13 14 height: 0; 13 15 margin-top: -92px; /* overwritten in js */ 14 16 margin-left: auto; 15 16 height: 0;17 17 18 18 transition: top 0.2s; … … 24 24 25 25 #postbox-container-2 .inside { 26 display: flex; 27 flex-direction: column; 26 display: inline-block; 27 28 width: 100%; 28 29 } 29 30 30 31 @media (max-width: 850px) { 31 32 #postbox-container-1 { 33 height: auto; 32 34 margin-top: 0; 33 34 height: auto;35 35 } 36 36 -
admin-sticky-sidebar/trunk/admin-sticky-sidebar.php
r2723283 r2723427 3 3 Plugin Name: Admin Sticky Sidebar 4 4 Description: Makes the sidebar follow you when you scroll and remembers scroll position on update. For more info, see the readme. 5 Version: 1.4 5 Version: 1.4.1 6 6 Author: Tom Walter 7 7 Author URI: https://littlefragments.com … … 13 13 // only add to the post.php admin page. 14 14 if ('post.php' !== $hook) return; 15 wp_enqueue_style( 'admin-sticky-sidebar-style', plugins_url( 'admin-sticky-sidebar.css?v=1.4 ' , __FILE__ ));15 wp_enqueue_style( 'admin-sticky-sidebar-style', plugins_url( 'admin-sticky-sidebar.css?v=1.4.1' , __FILE__ )); 16 16 } 17 17 add_action('admin_enqueue_scripts', 'admin_sticky_sidebar_css'); … … 23 23 // only add to the post.php admin page. 24 24 if ('post.php' !== $hook) return; 25 wp_enqueue_script('admin-sticky-sidebar-script', plugins_url( 'admin-sticky-sidebar.js?v=1.4 ' , __FILE__ ));25 wp_enqueue_script('admin-sticky-sidebar-script', plugins_url( 'admin-sticky-sidebar.js?v=1.4.1' , __FILE__ )); 26 26 } 27 27 add_action('admin_enqueue_scripts', 'admin_sticky_sidebar_js'); -
admin-sticky-sidebar/trunk/readme.txt
r2723283 r2723427 5 5 Requires at least: 5.0 6 6 Tested up to: 5.9.3 7 Stable tag: 1.4 7 Stable tag: 1.4.1 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 52 52 * Tested with Wordpress 5.9.3 53 53 * Fix for Firefox scroll bug 54 55 = 1.4.1 = 56 * Additional Firefox fix
Note: See TracChangeset
for help on using the changeset viewer.