Changeset 599266
- Timestamp:
- 09/15/2012 11:42:45 AM (13 years ago)
- Location:
- wordcamp-lisbon-ribbon/tags/1.2
- Files:
-
- 1 edited
- 7 copied
-
. (copied) (copied from wordcamp-lisbon-ribbon/tags/1.1)
-
css (copied) (copied from wordcamp-lisbon-ribbon/tags/1.1/css)
-
css/wclx2012-ribbon.css (modified) (2 diffs)
-
images (copied) (copied from wordcamp-lisbon-ribbon/tags/1.1/images)
-
lang (copied) (copied from wordcamp-lisbon-ribbon/tags/1.1/lang)
-
readme.txt (copied) (copied from wordcamp-lisbon-ribbon/tags/1.1/readme.txt) (2 diffs)
-
screenshot-1.png (copied) (copied from wordcamp-lisbon-ribbon/tags/1.1/screenshot-1.png)
-
wclxribbon.php (copied) (copied from wordcamp-lisbon-ribbon/tags/1.1/wclxribbon.php) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wordcamp-lisbon-ribbon/tags/1.2/css/wclx2012-ribbon.css
r587128 r599266 2 2 3 3 a.wclx-ribbon { 4 cursor:pointer; 5 position:fixed; 6 z-index:12345; 4 7 -webkit-transition:all 0.12s ease !important; 5 8 -moz-transition:all 0.12s ease !important; … … 12 15 opacity:0.9; 13 16 } 17 a.wclx-ribbon-right { 18 right:0px; 19 } 20 21 a.wclx-ribbon-left { 22 left:0px; 23 } 24 14 25 15 26 .wclx-ribbon-image { 16 27 margin:0px; 17 cursor:pointer;28 padding:0px; 18 29 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; 29 31 } 30 32 31 33 @media only screen and (max-width:768px) { 32 .wclx-ribbon -image{34 .wclx-ribbon { 33 35 width:100px; 34 36 height:auto; -
wordcamp-lisbon-ribbon/tags/1.2/readme.txt
r587185 r599266 5 5 Requires at least: 3.0 6 6 Tested up to: 3.4.1 7 Stable tag: 1. 17 Stable tag: 1.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 36 36 == Changelog == 37 37 38 = 1.2 = 39 * Fixed z-index order. 40 38 41 = 1.1 = 39 42 * Fixed Plugin Settings Link. -
wordcamp-lisbon-ribbon/tags/1.2/wclxribbon.php
r587185 r599266 4 4 Plugin URI: http://2012.lisboa.wordcamp.org 5 5 Description: WordCamp Lisboa 2012 Ribbon. Core foundation from David Gwyer's Plugin Options Starter Kit. 6 Version: 1. 16 Version: 1.2 7 7 Author: Filipe Varela 8 8 Author URI: http://wp-portugal.com … … 98 98 function wclxribbon_plugin_action_links( $links, $file ) { 99 99 if ( $file == plugin_basename( __FILE__ ) ) { 100 $posk_links = '<a href="'.get_admin_url().'options-general.php?page=w ordcamp-lisbon-ribbon/wclxribbon.php">'.__('Settings').'</a>';100 $posk_links = '<a href="'.get_admin_url().'options-general.php?page=wclxribbon/wclxribbon.php">'.__('Settings').'</a>'; 101 101 array_unshift( $links, $posk_links ); 102 102 } … … 136 136 endif; 137 137 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>"; 139 139 } 140 140 add_action('wp_footer', 'wclxribbon_ribbon');
Note: See TracChangeset
for help on using the changeset viewer.