Plugin Directory

Changeset 1328869


Ignore:
Timestamp:
01/15/2016 09:25:19 AM (10 years ago)
Author:
michouse
Message:

Correct CSS file.

Location:
wp-extend-toolbar/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-extend-toolbar/trunk/css/wp-extend-toolbar.css

    r1322315 r1328869  
    11@charset 'utf-8';
    22
    3 html { margin-top: 96px !important; }
    4 * html body { margin-top: 96px !important; }
    5 #wpadminbar { height: 96px !important; }
    63#wp-admin-bar-extend-toolbar {
    74    z-index: 9998 !important;
     
    118    top: 32px;
    129    left: 0;
     10    width: 100%;
     11    border-top: 1px solid #CCC;
     12    border-bottom: 1px dotted #CCC;
    1313}
    1414#wp-admin-bar-extend-toolbar-description {
     
    1717    left: 0;
    1818}
    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;
    2122}
    22 body.admin-bar .navbar-fixed-top {
    23     top: 96px !important;
    24 }
  • wp-extend-toolbar/trunk/readme.txt

    r1326287 r1328869  
    44Requires at least: 4.0
    55Tested up to: 4.4
    6 Stable tag: 1.1.3
     6Stable tag: 1.1.4
    77License: GPLv2
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4040== Changelog ==
    4141
     42= 1.1.4 =
     43* Correct the CSS File.
     44
     45* CSS ファイルを修正。
     46
    4247= 1.1.3 =
    4348* Correct the CSS File and JavaScript File.
  • wp-extend-toolbar/trunk/wp-extend-toolbar.php

    r1327265 r1328869  
    55 Description: Adds a page information to the admin bar.
    66 Author: Michinari Odajima
    7  Version: 1.1.3
     7 Version: 1.1.4
    88 Author URI: http://piece-web.jp/
    99 Domain Path: /language
     
    3737            'id'     => 'extend-toolbar',
    3838            'meta'   => array(
    39                 'class' => 'ab-extend-toolbar',
     39            'class' => 'ab-extend-toolbar',
    4040            ),
    4141        ) );
     
    7171    function enqueue() {
    7272       
    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 );
    7575       
    7676    }
Note: See TracChangeset for help on using the changeset viewer.