Changeset 2908096
- Timestamp:
- 05/04/2023 03:05:27 PM (23 months ago)
- Location:
- admin-sticky-sidebar
- Files:
-
- 6 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
admin-sticky-sidebar/trunk/admin-sticky-sidebar.css
r2888166 r2908096 7 7 .body--ass #postbox-container-1 { 8 8 position: sticky; 9 z-index: 1;10 9 top: 50px; /* overwritten in js */ 11 10 right: 20px; 11 z-index: 1; 12 13 margin-top: -92px; /* overwritten in js */ 14 margin-left: auto; 12 15 13 16 height: 0; 14 margin-top: -92px; /* overwritten in js */15 margin-left: auto;16 17 17 18 transition: top 0.2s; … … 24 25 .body--ass #postbox-container-2 .inside { 25 26 display: inline-block; 27 26 28 width: 100%; 29 } 30 31 .body--ass .columns-1 #postbox-container-1 { 32 margin-top: 0 !important; /* overwritten in js */ 33 34 height: auto; 35 } 36 37 .body--ass .columns-1 #postbox-container-2 { 38 float: left; 27 39 } 28 40 29 41 @media (max-width: 1200px) { 30 42 .body--ass .post-type-attachment #postbox-container-1 { 43 margin-top: 0 !important; 44 31 45 height: auto; 32 margin-top: 0 !important;33 46 } 34 47 } … … 36 49 @media (max-width: 850px) { 37 50 .body--ass #postbox-container-1 { 51 margin-top: 0 !important; 52 38 53 height: auto; 39 margin-top: 0 !important;40 54 } 41 55 -
admin-sticky-sidebar/trunk/admin-sticky-sidebar.php
r2898448 r2908096 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. 5.35 Version: 1.6 6 6 Author: Tom Walter 7 7 Author URI: https://littlefragments.com … … 13 13 { 14 14 // only add to the post.php admin page. 15 wp_enqueue_style('admin-sticky-sidebar-style', plugins_url('admin-sticky-sidebar.css?v=1. 5.3', __FILE__));15 wp_enqueue_style('admin-sticky-sidebar-style', plugins_url('admin-sticky-sidebar.css?v=1.6', __FILE__)); 16 16 } 17 17 add_action('admin_enqueue_scripts', 'admin_sticky_sidebar_css'); … … 23 23 { 24 24 // only add to the post.php admin page. 25 wp_enqueue_script('admin-sticky-sidebar-script', plugins_url('admin-sticky-sidebar.js?v=1. 5.3', __FILE__));25 wp_enqueue_script('admin-sticky-sidebar-script', plugins_url('admin-sticky-sidebar.js?v=1.6', __FILE__)); 26 26 } 27 27 add_action('admin_enqueue_scripts', 'admin_sticky_sidebar_js'); -
admin-sticky-sidebar/trunk/readme.txt
r2898448 r2908096 4 4 Tags: admin, sticky, fixed, floating, float, sidebar, submit, publish, update, box, modal, scroll, timesaver, lifehack, lifesaver, float 5 5 Requires at least: 5.0 6 Tested up to: 6. 27 Stable tag: 1. 5.36 Tested up to: 6.3 7 Stable tag: 1.6 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 70 70 = 1.5.3 = 71 71 * Tested with Wordpress 6.2 72 73 = 1.5.4 = 74 * Cleanup 75 76 = 1.6 = 77 * Fix for single column page
Note: See TracChangeset
for help on using the changeset viewer.