https://bugzilla.wikimedia.org/show_bug.cgi?id=31738

Fomafix <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #7 from Fomafix <[email protected]> 2012-05-28 19:42:23 UTC ---
On dewiki we solve this problem with

    mw.loader.using( [ 'mediawiki.util' ], function () { $( function () {
        if ( mw.config.get( 'dontShowTopicons', false ) ) return;
        mw.util.$content
        .find( 'div.topicon' )
        .insertBefore( '#firstHeading' )
        .show();
    } ) } );
in [[MediaWiki:Vector.js]]

    div.topicon {
        float: right;
        margin-left: 3px;
        font-size: 0.8em;
    }
    #firstHeading {
        overflow: visible;
    }
in [[MediaWiki:Vector.css]

and
    .topicon {
        display: none;
    }
in [[MediaWiki:Common.css]]

Example:
https://de.wikipedia.org/w/index.php?title=Burg_Stahleck_%28Bacharach%29&uselang=ar&useskin=vector

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
You are on the CC list for the bug.

_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to