Plugin Directory

Changeset 599266


Ignore:
Timestamp:
09/15/2012 11:42:45 AM (13 years ago)
Author:
keoshi
Message:

1.2 update: fixed the z-index order

Location:
wordcamp-lisbon-ribbon/tags/1.2
Files:
1 edited
7 copied

Legend:

Unmodified
Added
Removed
  • wordcamp-lisbon-ribbon/tags/1.2/css/wclx2012-ribbon.css

    r587128 r599266  
    22
    33a.wclx-ribbon {
     4    cursor:pointer;
     5    position:fixed;
     6    z-index:12345;
    47    -webkit-transition:all 0.12s ease !important;
    58    -moz-transition:all 0.12s ease !important;
     
    1215    opacity:0.9;
    1316}
     17    a.wclx-ribbon-right {
     18        right:0px;
     19    }
     20
     21    a.wclx-ribbon-left {
     22        left:0px;
     23    }
     24   
    1425
    1526.wclx-ribbon-image {
    1627    margin:0px;
    17     cursor:pointer;
     28    padding:0px;
    1829    border:none;
    19     position:fixed;
    20     z-index:12345;
    21 }
    22 
    23 .wclx-ribbon-image-right {
    24     right:0px;
    25 }
    26 
    27 .wclx-ribbon-image-left {
    28     left:0px;
     30    z-index:12344;
    2931}
    3032
    3133@media only screen and (max-width:768px) {
    32     .wclx-ribbon-image {
     34    .wclx-ribbon {
    3335        width:100px;
    3436        height:auto;
  • wordcamp-lisbon-ribbon/tags/1.2/readme.txt

    r587185 r599266  
    55Requires at least: 3.0
    66Tested up to: 3.4.1
    7 Stable tag: 1.1
     7Stable tag: 1.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3636== Changelog ==
    3737
     38= 1.2 =
     39* Fixed z-index order.
     40
    3841= 1.1 =
    3942* Fixed Plugin Settings Link.
  • wordcamp-lisbon-ribbon/tags/1.2/wclxribbon.php

    r587185 r599266  
    44Plugin URI: http://2012.lisboa.wordcamp.org
    55Description: WordCamp Lisboa 2012 Ribbon. Core foundation from David Gwyer's Plugin Options Starter Kit.
    6 Version: 1.1
     6Version: 1.2
    77Author: Filipe Varela
    88Author URI: http://wp-portugal.com
     
    9898function wclxribbon_plugin_action_links( $links, $file ) {
    9999    if ( $file == plugin_basename( __FILE__ ) ) {
    100         $posk_links = '<a href="'.get_admin_url().'options-general.php?page=wordcamp-lisbon-ribbon/wclxribbon.php">'.__('Settings').'</a>';
     100        $posk_links = '<a href="'.get_admin_url().'options-general.php?page=wclxribbon/wclxribbon.php">'.__('Settings').'</a>';
    101101        array_unshift( $links, $posk_links );
    102102    }
     
    136136    endif;
    137137
    138     echo "<a target='_blank' href='http://2012.lisboa.wordcamp.org' class='wclx-ribbon'><img src='{$image}' alt='WordCamp Lisboa 2012' class='wclx-ribbon-image wclx-ribbon-image-$side' style='top: ".$top ."px;' /></a>";
     138    echo "<a target='_blank' href='http://2012.lisboa.wordcamp.org' class='wclx-ribbon wclx-ribbon-$side' style='top: ".$top ."px;'><img src='{$image}' alt='WordCamp Lisboa 2012' class='wclx-ribbon-image' /></a>";
    139139}
    140140add_action('wp_footer', 'wclxribbon_ribbon');
Note: See TracChangeset for help on using the changeset viewer.