r55410 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r55409‎ | r55410 | r55411 >
Date:11:24, 21 August 2009
Author:werdna
Status:deferred
Tags:
Comment:
Instead of completely hiding the toolbar when not moused over, give it some transparency.
Modified paths:
  • /trunk/extensions/LiquidThreads/lqt.css (modified) (history)
  • /trunk/extensions/LiquidThreads/lqt.js (modified) (history)

Diff [purge]

Index: trunk/extensions/LiquidThreads/lqt.css
@@ -356,8 +356,10 @@
357357 }
358358
359359 .lqt-thread-toolbar {
360 - position: absolute;
361 - right: 0.5em;
 360+/* position: absolute;
 361+ right: 0.5em;*/
 362+ float: right;
 363+ clear: both;
362364 background-image: url(images/box-c.png);
363365 }
364366
Index: trunk/extensions/LiquidThreads/lqt.js
@@ -194,10 +194,10 @@
195195 var post = $j(this);
196196
197197 var toolbar = post.find('.lqt-thread-toolbar');
198 - toolbar.hide();
 198+ toolbar.fadeTo( 0, 0.5 );
199199
200 - post.hover( function() { toolbar.fadeIn(100); } /*over*/,
201 - function() { toolbar.fadeOut(100); }/*out */ );
 200+ post.hover( function() { toolbar.fadeTo('fast', 1.0); } /*over*/,
 201+ function() { toolbar.fadeTo('fast', 0.5); }/*out */ );
202202
203203 var menu = post.find('.lqt-thread-toolbar-command-list');
204204 var menuContainer = post.find( '.lqt-thread-toolbar-menu' );

Follow-up revisions

RevisionCommit summaryAuthorDate
r55419Revert r55410, apparently they like this one better :))werdna17:51, 21 August 2009

Status & tagging log