Changeset 1328869
- Timestamp:
- 01/15/2016 09:25:19 AM (10 years ago)
- Location:
- wp-extend-toolbar/trunk
- Files:
-
- 3 edited
-
css/wp-extend-toolbar.css (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
wp-extend-toolbar.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-extend-toolbar/trunk/css/wp-extend-toolbar.css
r1322315 r1328869 1 1 @charset 'utf-8'; 2 2 3 html { margin-top: 96px !important; }4 * html body { margin-top: 96px !important; }5 #wpadminbar { height: 96px !important; }6 3 #wp-admin-bar-extend-toolbar { 7 4 z-index: 9998 !important; … … 11 8 top: 32px; 12 9 left: 0; 10 width: 100%; 11 border-top: 1px solid #CCC; 12 border-bottom: 1px dotted #CCC; 13 13 } 14 14 #wp-admin-bar-extend-toolbar-description { … … 17 17 left: 0; 18 18 } 19 body.admin-bar { 20 padding-top: 96px; 19 #wp-admin-bar-extend-toolbar-title .ab-item, 20 #wp-admin-bar-extend-toolbar-description .ab-item { 21 height: auto !important; 21 22 } 22 body.admin-bar .navbar-fixed-top {23 top: 96px !important;24 } -
wp-extend-toolbar/trunk/readme.txt
r1326287 r1328869 4 4 Requires at least: 4.0 5 5 Tested up to: 4.4 6 Stable tag: 1.1. 36 Stable tag: 1.1.4 7 7 License: GPLv2 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 40 40 == Changelog == 41 41 42 = 1.1.4 = 43 * Correct the CSS File. 44 45 * CSS ファイルを修正。 46 42 47 = 1.1.3 = 43 48 * Correct the CSS File and JavaScript File. -
wp-extend-toolbar/trunk/wp-extend-toolbar.php
r1327265 r1328869 5 5 Description: Adds a page information to the admin bar. 6 6 Author: Michinari Odajima 7 Version: 1.1. 37 Version: 1.1.4 8 8 Author URI: http://piece-web.jp/ 9 9 Domain Path: /language … … 37 37 'id' => 'extend-toolbar', 38 38 'meta' => array( 39 'class' => 'ab-extend-toolbar',39 'class' => 'ab-extend-toolbar', 40 40 ), 41 41 ) ); … … 71 71 function enqueue() { 72 72 73 wp_enqueue_style( 'wp-extend-toolbar', plugins_url( "css/wp-extend-toolbar.css", __FILE__ ), array(), '1.1. 3' );74 wp_enqueue_script( 'wp-extend-toolbar', plugins_url( "js/wp-extend-toolbar.js", __FILE__ ), array( 'jquery' ), '1.1. 3', true );73 wp_enqueue_style( 'wp-extend-toolbar', plugins_url( "css/wp-extend-toolbar.css", __FILE__ ), array(), '1.1.4' ); 74 wp_enqueue_script( 'wp-extend-toolbar', plugins_url( "js/wp-extend-toolbar.js", __FILE__ ), array( 'jquery' ), '1.1.4', true ); 75 75 76 76 }
Note: See TracChangeset
for help on using the changeset viewer.