LinuxMintNL WiKi:Proef: verschil tussen versies

Uit LinuxMintNL WiKi
Ga naar: navigatie, zoeken
(Nieuw)
 
(Aangevuld)
Regel 3: Regel 3:
 
<noinclude>
 
<noinclude>
 
* MediaWiki:Monobook.css
 
* MediaWiki:Monobook.css
* Verwijderd 6-1-15
+
* Verwijderd 6-1-15 ivm niet plaatsen uitgebreide werkbalk
 
 
 
/* increase sidebar width */
 
/* increase sidebar width */
 
#column-content { margin-left: -13em; }
 
#column-content { margin-left: -13em; }
Regel 15: Regel 14:
  
  
 
+
* Gebruiker:Jos1950/common.css
* Gebruiker:Jos1950/common.css
+
* Verwijderd ivm niet plaatsen uitgebreide werkbalk - geen effect
 
@import "/w/index.php?title=MediaWiki:Gadget-popups.css&action=raw&ctype=text/css";
 
@import "/w/index.php?title=MediaWiki:Gadget-popups.css&action=raw&ctype=text/css";
  
Regel 24: Regel 23:
 
Gebruiker:Jos1950/common.js
 
Gebruiker:Jos1950/common.js
 
#importScript('MediaWiki:Gadget-popups.js' );
 
#importScript('MediaWiki:Gadget-popups.js' );
 +
 +
 +
* MediaWiki:Gadget-mijnKladblok.js
 +
* Verwijderd 6-1-15 ivm niet plaatsen uitgebreide werkbalk - waarschijnlijk de oorzaak
 +
/**
 +
* Add a "My sandbox" link to the personal portlet menu.
 +
*
 +
* Required modules: mediawiki.util, mediawiki.Title, mediawiki.Uri
 +
*
 +
* @source www.mediawiki.org/wiki/Snippets/MySandbox
 +
* @version 2014-05-14
 +
*/
 +
( function ( mw, $ ) {
 +
$( function () {
 +
var conf, title, url;
 +
 +
// Customize/Translate this to your needs
 +
conf = {
 +
subpageName: 'Kladblok',
 +
portletLabel: 'Kladblok',
 +
portletTooltip: 'Uw kladblok',
 +
editintroPagename: 'Template:Hoofding gebruikerskladblok',
 +
preloadPagename: 'Template:Hoofding gebruikerskladblok/preload'
 +
};
 +
// Don't alter the code below
 +
 +
// Use Special:MyPage (as opposed to mw.user.getName()) so that it
 +
// works for logged-out users as well.
 +
title = new mw.Title( 'Special:MyPage/' + conf.subpageName );
 +
 +
url = new mw.Uri( title.getUrl() );
 +
url.extend({
 +
action: 'edit',
 +
redlink: 1,
 +
editintro: new mw.Title( conf.editintroPagename ),
 +
preload: new mw.Title( conf.preloadPagename )
 +
});
 +
 +
mw.util.addPortletLink(
 +
'p-personal',
 +
url,
 +
conf.portletLabel,
 +
'pt-sandbox',
 +
conf.portletTooltip,
 +
null,
 +
'#pt-preferences'
 +
);
 +
});
 +
}( mediaWiki, jQuery ) );
 +
 
</noinclude>
 
</noinclude>

Versie van 6 jan 2015 om 23:01

Deze pagina is bedoeld om proeven met extra aanpassingen van de wiki uit te proberen en te archiveren.


  • MediaWiki:Monobook.css
  • Verwijderd 6-1-15 ivm niet plaatsen uitgebreide werkbalk

/* increase sidebar width */

  1. column-content { margin-left: -13em; }
  2. column-content #content { margin-left: 13em; }
  3. p-logo a, #p-logo a:hover { width: 13em; }
  4. p-cactions { left: 12.5em; }

.portlet { width: 12em; } div#column-content { margin-left: -12em; } div#content { margin-left: 12em; }


  • Gebruiker:Jos1950/common.css
  • Verwijderd ivm niet plaatsen uitgebreide werkbalk - geen effect

@import "/w/index.php?title=MediaWiki:Gadget-popups.css&action=raw&ctype=text/css";

.ns-2 #content, .ns-3 #content { background-color: #7FFFD4; } .ns-2 div.thumb, .ns-3 div.thumb { border-color: green; }

Gebruiker:Jos1950/common.js

  1. importScript('MediaWiki:Gadget-popups.js' );


  • MediaWiki:Gadget-mijnKladblok.js
  • Verwijderd 6-1-15 ivm niet plaatsen uitgebreide werkbalk - waarschijnlijk de oorzaak

/**

* Add a "My sandbox" link to the personal portlet menu.
*
* Required modules: mediawiki.util, mediawiki.Title, mediawiki.Uri
*
* @source www.mediawiki.org/wiki/Snippets/MySandbox
* @version 2014-05-14
*/

( function ( mw, $ ) { $( function () { var conf, title, url;

// Customize/Translate this to your needs conf = { subpageName: 'Kladblok', portletLabel: 'Kladblok', portletTooltip: 'Uw kladblok', editintroPagename: 'Template:Hoofding gebruikerskladblok', preloadPagename: 'Template:Hoofding gebruikerskladblok/preload' }; // Don't alter the code below

// Use Special:MyPage (as opposed to mw.user.getName()) so that it // works for logged-out users as well. title = new mw.Title( 'Special:MyPage/' + conf.subpageName );

url = new mw.Uri( title.getUrl() ); url.extend({ action: 'edit', redlink: 1, editintro: new mw.Title( conf.editintroPagename ), preload: new mw.Title( conf.preloadPagename ) });

mw.util.addPortletLink( 'p-personal', url, conf.portletLabel, 'pt-sandbox', conf.portletTooltip, null, '#pt-preferences' ); }); }( mediaWiki, jQuery ) );