From 72e90545454c0e014318fa3c81658e035aac58c1 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Wed, 10 Jun 2009 13:00:47 +0200 Subject: applying patch to version 1.15.0 --- skins/CologneBlue.php | 59 ++++++++++++++++++-------------- skins/Modern.php | 17 +++++---- skins/MonoBook.php | 19 ++++++---- skins/Nostalgia.php | 6 ++-- skins/Standard.php | 11 +++--- skins/common/block.js | 6 ++++ skins/common/changepassword.js | 16 +++++++++ skins/common/cologneblue.css | 5 +++ skins/common/common_rtl.css | 6 ++++ skins/common/history.js | 18 ++++++++-- skins/common/images/feed-icon.png | Bin 0 -> 557 bytes skins/common/images/nextredirectltr.png | Bin 0 -> 187 bytes skins/common/images/nextredirectrtl.png | Bin 0 -> 187 bytes skins/common/shared.css | 35 +++++++++++++++++-- skins/common/wikibits.js | 7 +++- skins/modern/main.css | 4 +++ skins/modern/rtl.css | 8 ++++- skins/monobook/FF2Fixes.css | 4 +++ skins/monobook/IE60Fixes.css | 11 ++++++ skins/monobook/IE70Fixes.css | 10 ++++++ skins/monobook/Opera6Fixes.css | 6 ++++ skins/monobook/Opera7Fixes.css | 10 ++++++ skins/monobook/Opera9Fixes.css | 11 ++++++ skins/monobook/external-rtl.png | Bin 0 -> 198 bytes skins/monobook/main.css | 43 +++++++++++++++++------ skins/monobook/rtl.css | 18 ++++++++-- skins/simple/main.css | 6 ++++ skins/simple/rtl.css | 7 +++- 28 files changed, 274 insertions(+), 69 deletions(-) create mode 100644 skins/common/changepassword.js create mode 100644 skins/common/images/feed-icon.png create mode 100644 skins/common/images/nextredirectltr.png create mode 100644 skins/common/images/nextredirectrtl.png create mode 100644 skins/monobook/FF2Fixes.css create mode 100644 skins/monobook/Opera9Fixes.css create mode 100644 skins/monobook/external-rtl.png (limited to 'skins') diff --git a/skins/CologneBlue.php b/skins/CologneBlue.php index f3806dc9..c650cbee 100644 --- a/skins/CologneBlue.php +++ b/skins/CologneBlue.php @@ -66,7 +66,7 @@ class SkinCologneBlue extends Skin { function doAfterContent() { - global $wgOut; + global $wgOut, $wgLang; $s = "\n
\n"; @@ -80,9 +80,11 @@ class SkinCologneBlue extends Skin { $s .= ""; $s .= $this->bottomLinks(); - $s .= "\n
" . $this->makeKnownLinkObj( Title::newMainPage() ) . " | " - . $this->aboutLink() . " | " - . $this->searchForm( wfMsg( "qbfind" ) ); + $s .= $wgLang->pipeList( array( + "\n
" . $this->makeKnownLinkObj( Title::newMainPage() ), + $this->aboutLink(), + $this->searchForm( wfMsg( "qbfind" ) ) + ) ); $s .= "\n
" . $this->pageStats(); @@ -121,7 +123,7 @@ class SkinCologneBlue extends Skin { } function sysLinks() { - global $wgUser, $wgContLang, $wgTitle; + global $wgUser, $wgLang, $wgContLang, $wgTitle; $li = $wgContLang->specialPage("Userlogin"); $lo = $wgContLang->specialPage("Userlogout"); @@ -132,29 +134,28 @@ class SkinCologneBlue extends Skin { $q = "returnto={$rt}"; } - $s = "" . - $this->mainPageLink() - . " | " . - $this->makeKnownLink( wfMsgForContent( "aboutpage" ), wfMsg( "about" ) ) - . " | " . - $this->makeKnownLink( wfMsgForContent( "helppage" ), wfMsg( "help" ) ) - . " | " . - $this->makeKnownLink( wfMsgForContent( "faqpage" ), wfMsg("faq") ) - . " | " . - $this->specialLink( "specialpages" ); + $s = array( + $this->mainPageLink(), + $this->makeKnownLink( wfMsgForContent( "aboutpage" ), wfMsg( "about" ) ), + $this->makeKnownLink( wfMsgForContent( "helppage" ), wfMsg( "help" ) ), + $this->makeKnownLink( wfMsgForContent( "faqpage" ), wfMsg("faq") ), + $this->specialLink( "specialpages" ) + ); /* show links to different language variants */ - $s .= $this->variantLinks(); - $s .= $this->extensionTabLinks(); - - $s .= " | "; + if( $this->variantLinks() ) { + $s[] = $this->variantLinks(); + } + if( $this->extensionTabLinks() ) { + $s[] = $this->extensionTabLinks(); + } if ( $wgUser->isLoggedIn() ) { - $s .= $this->makeKnownLink( $lo, wfMsg( "logout" ), $q ); + $s[] = $this->makeKnownLink( $lo, wfMsg( "logout" ), $q ); } else { - $s .= $this->makeKnownLink( $li, wfMsg( "login" ), $q ); + $s[] = $this->makeKnownLink( $li, wfMsg( "login" ), $q ); } - return $s; + return $wgLang->pipeList( $s ); } /** @@ -262,7 +263,7 @@ class SkinCologneBlue extends Skin { $s .= $this->menuHead( "qbspecialpages" ) . $this->specialLink( "newpages" ) - . $sep . $this->specialLink( "imagelist" ) + . $sep . $this->specialLink( "listfiles" ) . $sep . $this->specialLink( "statistics" ); if ( $wgUser->isLoggedIn() && $wgEnableUploads ) { $s .= $sep . $this->specialLink( "upload" ); @@ -289,7 +290,7 @@ class SkinCologneBlue extends Skin { function searchForm( $label = "" ) { - global $wgRequest; + global $wgRequest, $wgUseTwoButtonsSearchForm; $search = $wgRequest->getText( 'search' ); $action = $this->escapeSearchLink(); @@ -298,8 +299,14 @@ class SkinCologneBlue extends Skin { $s .= "searchboxes}\" class=\"mw-searchInput\" name=\"search\" size=\"14\" value=\"" . htmlspecialchars(substr($search,0,256)) . "\" />
" - . "searchboxes}\" class=\"searchButton\" name=\"go\" value=\"" . htmlspecialchars( wfMsg( "searcharticle" ) ) . "\" />" - . "searchboxes}\" class=\"searchButton\" name=\"fulltext\" value=\"" . htmlspecialchars( wfMsg( "search" ) ) . "\" />"; + . "searchboxes}\" class=\"searchButton\" name=\"go\" value=\"" . htmlspecialchars( wfMsg( "searcharticle" ) ) . "\" />"; + + if ($wgUseTwoButtonsSearchForm) + $s .= "searchboxes}\" class=\"searchButton\" name=\"fulltext\" value=\"" . htmlspecialchars( wfMsg( "search" ) ) . "\" />\n"; + else + $s .= '
\n"; + + $s .= ''; // Ensure unique id's for search boxes made after the first $this->searchboxes = $this->searchboxes == '' ? 2 : $this->searchboxes + 1; diff --git a/skins/Modern.php b/skins/Modern.php index cb24bafa..6b6651d1 100644 --- a/skins/Modern.php +++ b/skins/Modern.php @@ -245,17 +245,22 @@ class ModernTemplate extends QuickTemplate { /*************************************************************************************************/ function searchBox() { + global $wgUseTwoButtonsSearchForm; ?> \n"; + $s .= "

\n\n"; $s .= "\n
"; return $s; @@ -60,8 +59,7 @@ class SkinNostalgia extends Skin { . $this->specialLink( 'recentchanges' ); if ( $wgOut->isArticle() ) { - $s .= $sep . $this->editThisPage() - . $sep . $this->historyLink(); + $s .= $sep . '' . $this->editThisPage() . '' . $sep . $this->historyLink(); } /* show links to different language variants */ diff --git a/skins/Standard.php b/skins/Standard.php index 1f3cab95..694bc5e3 100644 --- a/skins/Standard.php +++ b/skins/Standard.php @@ -82,7 +82,7 @@ class SkinStandard extends Skin { } function doAfterContent() { - global $wgContLang; + global $wgContLang, $wgLang; $fname = 'SkinStandard::doAfterContent'; wfProfileIn( $fname ); wfProfileIn( $fname.'-1' ); @@ -108,10 +108,11 @@ class SkinStandard extends Skin { $s .= ""; $s .= $this->bottomLinks(); - $s .= "\n
" . $this->mainPageLink() - . ' | ' . $this->aboutLink() - . ' | ' . $this->specialLink( 'recentchanges' ) - . ' | ' . $this->searchForm() + $s .= "\n
" . $wgLang->pipeList( array( + $this->mainPageLink(), + $this->aboutLink(), + $this->specialLink( 'recentchanges' ), + $this->searchForm() ) ) . '
' . $this->pageStats() . ''; $s .= ""; diff --git a/skins/common/block.js b/skins/common/block.js index 6f7be0cd..90211efa 100644 --- a/skins/common/block.js +++ b/skins/common/block.js @@ -31,6 +31,7 @@ function updateBlockOptions() { var addy = target.value; var isEmpty = addy.match(/^\s*$/); var isIp = addy.match(/^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}|:(:[0-9A-Fa-f]{1,4}){1,7}|[0-9A-Fa-f]{1,4}(:{1,2}[0-9A-Fa-f]{1,4}|::$){1,7})(\/\d+)?$/); + var isIpRange = isIp && addy.match(/\/\d+$/); var anonymousRow = document.getElementById('wpAnonOnlyRow'); if( anonymousRow ) { @@ -51,4 +52,9 @@ function updateBlockOptions() { if( hideuserRow ) { hideuserRow.style.display = isIp && !isEmpty ? 'none' : ''; } + + var watchuserRow = document.getElementById('wpEnableWatchUser'); + if( watchuserRow ) { + watchuserRow.style.display = isIpRange && !isEmpty ? 'none' : ''; + } } diff --git a/skins/common/changepassword.js b/skins/common/changepassword.js new file mode 100644 index 00000000..1e3e2069 --- /dev/null +++ b/skins/common/changepassword.js @@ -0,0 +1,16 @@ + +function onNameChange() { + if ( wgUserName != document.getElementById('wpName').value ) { + document.getElementById('wpPassword').disabled = true; + document.getElementById('wpComment').disabled = false; + } else { + document.getElementById('wpPassword').disabled = false; + document.getElementById('wpComment').disabled = true; + } +} + +function onNameChangeHook() { + document.getElementById( 'wpName' ).onblur = onNameChange; +} + +addOnloadHook( onNameChangeHook ); diff --git a/skins/common/cologneblue.css b/skins/common/cologneblue.css index 2723bbef..2329d233 100644 --- a/skins/common/cologneblue.css +++ b/skins/common/cologneblue.css @@ -1,6 +1,11 @@ body { margin: 0px; padding: 0px; color: black; } #specialform { display: inline; } #content { top: 0; margin: 0; padding: 0; } +#mw-data-after-content { + font-family: Verdana, Arial, sans-serif; + color: black; + font-size: 8pt; +} #topbar { padding: 0px; } #powersearch { background: #DDEEFF; border-style: solid; border-width: 1px; padding: 2px; diff --git a/skins/common/common_rtl.css b/skins/common/common_rtl.css index 11fc995b..4f075ae3 100644 --- a/skins/common/common_rtl.css +++ b/skins/common/common_rtl.css @@ -46,3 +46,9 @@ table.filehistory th { html > body div#article ul { display: table; } + +/* feed links */ +a.feedlink { + background: none !important; + padding-left: 0 !important; +} diff --git a/skins/common/history.js b/skins/common/history.js index 57e61849..6a84b997 100644 --- a/skins/common/history.js +++ b/skins/common/history.js @@ -27,7 +27,13 @@ function diffcheck() { } if (oli) { // it's the second checked radio if (inputs[1].checked) { - oli.className = "selected"; + if ( (typeof oli.className) != 'undefined') { + oli.classNameOriginal = oli.className.replace( 'selected', '' ); + } else { + oli.classNameOriginal = ''; + } + + oli.className = "selected "+oli.classNameOriginal; return false; } } else if (inputs[0].checked) { @@ -42,7 +48,13 @@ function diffcheck() { if (dli) { inputs[1].style.visibility = 'hidden'; } - lis[i].className = "selected"; + if ( (typeof lis[i].className) != 'undefined') { + lis[i].classNameOriginal = lis[i].className.replace( 'selected', '' ); + } else { + lis[i].classNameOriginal = ''; + } + + lis[i].className = "selected "+lis[i].classNameOriginal; oli = lis[i]; } else { // no radio is checked in this row if (!oli) { @@ -55,7 +67,7 @@ function diffcheck() { } else { inputs[1].style.visibility = 'visible'; } - lis[i].className = ""; + lis[i].className = lis[i].classNameOriginal; } } } diff --git a/skins/common/images/feed-icon.png b/skins/common/images/feed-icon.png new file mode 100644 index 00000000..7188fa23 Binary files /dev/null and b/skins/common/images/feed-icon.png differ diff --git a/skins/common/images/nextredirectltr.png b/skins/common/images/nextredirectltr.png new file mode 100644 index 00000000..7d60cdcf Binary files /dev/null and b/skins/common/images/nextredirectltr.png differ diff --git a/skins/common/images/nextredirectrtl.png b/skins/common/images/nextredirectrtl.png new file mode 100644 index 00000000..3d5b3959 Binary files /dev/null and b/skins/common/images/nextredirectrtl.png differ diff --git a/skins/common/shared.css b/skins/common/shared.css index bd306167..bb08c648 100644 --- a/skins/common/shared.css +++ b/skins/common/shared.css @@ -14,7 +14,7 @@ span.texhtml { font-family: serif; } #wikiPreview.ontop { margin-bottom: 1em; } /* Stop floats from intruding into edit area in previews */ -#toolbar, #wpTextbox1 { clear: both; } +#editform, #toolbar, #wpTextbox1 { clear: both; } div#mw-js-message { margin: 1em 5%; @@ -253,10 +253,12 @@ td.os-suggest-result-hl { /* * Special:ListGroupRights styling * Special:Statistics styling + * Special:Tags styling */ table.mw-listgrouprights-table, -table.mw-statistics-table { +table.mw-statistics-table, +table.mw-tags-table { border: 1px solid #ccc; border-collapse: collapse; } @@ -266,7 +268,8 @@ table.mw-listgrouprights-table tr { } table.mw-listgrouprights-table td, table.mw-listgrouprights-table th, -table.mw-statistics-table td, table.mw-statistics-table th { +table.mw-statistics-table td, table.mw-statistics-table th, +table.mw-tags-table td, table.mw-tags-table th { padding: 0.5em 0.2em 0.5em 0.2em; border: 1px solid #ccc; } @@ -297,6 +300,19 @@ td#mw-emailuser-sender, td#mw-emailuser-recipient { font-weight: bold; } +/* Special:Prefixindex styling */ +table#mw-prefixindex-list-table, +table#mw-prefixindex-nav-table { + width: 98%; + background-color: transparent; +} +td#mw-prefixindex-nav-form { + font-size: smaller; + margin-bottom: 1em; + text-align: right; + vertical-align: top; +} + /* * Recreating deleted page warning * Reupload file warning @@ -311,3 +327,16 @@ div.mw-warning-with-logexcerpt { div.mw-warning-with-logexcerpt ul li { font-size: 90%; } + +/* (show/hide) revision deletion links */ +span.mw-revdelundel-link, +strong.mw-revdelundel-link { + font-family: monospace; + font-size: smaller; +} + +/* feed links */ +a.feedlink { + background: url("images/feed-icon.png") center left no-repeat; + padding-left: 16px; +} diff --git a/skins/common/wikibits.js b/skins/common/wikibits.js index 089d22d7..397dac91 100644 --- a/skins/common/wikibits.js +++ b/skins/common/wikibits.js @@ -14,6 +14,7 @@ var is_khtml = navigator.vendor == 'KDE' || ( document.childNodes && !document.all && !navigator.taintEnabled ); // For accesskeys; note that FF3+ is included here! var is_ff2 = /firefox\/[2-9]|minefield\/3/.test( clientPC ); +var is_ff2_ = /firefox\/2/.test( clientPC ); // These aren't used here, but some custom scripts rely on them var is_ff2_win = is_ff2 && clientPC.indexOf('windows') != -1; var is_ff2_x11 = is_ff2 && clientPC.indexOf('x11') != -1; @@ -91,8 +92,12 @@ if (typeof stylepath != 'undefined' && typeof skin != 'undefined') { importStylesheetURI(stylepath+'/'+skin+'/Opera6Fixes.css'); } else if (is_opera_seven && !is_opera_95) { importStylesheetURI(stylepath+'/'+skin+'/Opera7Fixes.css'); + } else if (is_opera_95) { + importStylesheetURI(stylepath+'/'+skin+'/Opera9Fixes.css'); } else if (is_khtml) { importStylesheetURI(stylepath+'/'+skin+'/KHTMLFixes.css'); + } else if (is_ff2_) { + importStylesheetURI(stylepath+'/'+skin+'/FF2Fixes.css'); } } @@ -807,7 +812,7 @@ function ts_parseFloat( s ) { } num = parseFloat(s.replace(/,/g, "")); - return (isNaN(num) ? s : num); + return (isNaN(num) ? 0 : num); } function ts_currencyToSortKey( s ) { diff --git a/skins/modern/main.css b/skins/modern/main.css index d9537c18..80ef008c 100644 --- a/skins/modern/main.css +++ b/skins/modern/main.css @@ -158,6 +158,10 @@ textarea { margin-right: auto; } +#p-search #searchform div div { + margin-top: .4em; +} + .portlet h5 { padding: 0.1em 0 0.3em 1em; margin: 0 0 0 0; diff --git a/skins/modern/rtl.css b/skins/modern/rtl.css index d7aae769..d2dcacec 100644 --- a/skins/modern/rtl.css +++ b/skins/modern/rtl.css @@ -44,7 +44,7 @@ div.tleft, div.floatleft, table.floatleft { } /* Fix link icons */ -.external { +.external, a.feedlink { padding: 0 !important; background: none !important; } @@ -151,3 +151,9 @@ html > body div.pBody ul li { html > body div#mw_contentholder ul#filetoc { display: block; } + +/* Special:Prefixindex styling */ +td#mw-prefixindex-nav-form { + text-align: left; +} + diff --git a/skins/monobook/FF2Fixes.css b/skins/monobook/FF2Fixes.css new file mode 100644 index 00000000..c8b65f50 --- /dev/null +++ b/skins/monobook/FF2Fixes.css @@ -0,0 +1,4 @@ +.rtl .external, a.feedlink { + padding: 0 !important; + background: none !important; +} diff --git a/skins/monobook/IE60Fixes.css b/skins/monobook/IE60Fixes.css index bf78413d..e6e447f6 100644 --- a/skins/monobook/IE60Fixes.css +++ b/skins/monobook/IE60Fixes.css @@ -61,6 +61,17 @@ padding-right: 13px; } +.rtl #bodyContent a.external { + background-image: url(external-rtl.png); + padding-right: 13px; +} + +.rtl a.feedlink { + background-position: right; + padding-right: 0; + padding-left: 16px; +} + /* show the hand */ #p-logo a, #p-logo a:hover { diff --git a/skins/monobook/IE70Fixes.css b/skins/monobook/IE70Fixes.css index 43ff7076..00145860 100644 --- a/skins/monobook/IE70Fixes.css +++ b/skins/monobook/IE70Fixes.css @@ -18,6 +18,16 @@ margin-top: 160px; } +.rtl #bodyContent a.external { + background-image: url(external-rtl.png); + padding: 0 13px 0 0; +} + +.rtl a.feedlink { + background-position: right; + padding-right: 0; + padding-left: 16px; +} /* the tabs */ #p-cactions { diff --git a/skins/monobook/Opera6Fixes.css b/skins/monobook/Opera6Fixes.css index 88704739..2a3d78f8 100644 --- a/skins/monobook/Opera6Fixes.css +++ b/skins/monobook/Opera6Fixes.css @@ -12,3 +12,9 @@ background: url(external.png) center right no-repeat; padding-right: 13px; } + +.rtl a.feedlink { + background-position: right; + padding-right: 0; + padding-left: 16px; +} diff --git a/skins/monobook/Opera7Fixes.css b/skins/monobook/Opera7Fixes.css index 446ea44c..1dcba7c9 100644 --- a/skins/monobook/Opera7Fixes.css +++ b/skins/monobook/Opera7Fixes.css @@ -9,3 +9,13 @@ background: url(external.png) center right no-repeat; padding-right: 13px; } +.rtl #bodyContent a.external { + background-image: url(external-rtl.png); + padding-right: 13px; +} + +.rtl a.feedlink { + background-position: right; + padding-right: 0; + padding-left: 16px; +} diff --git a/skins/monobook/Opera9Fixes.css b/skins/monobook/Opera9Fixes.css new file mode 100644 index 00000000..9c312a84 --- /dev/null +++ b/skins/monobook/Opera9Fixes.css @@ -0,0 +1,11 @@ +.rtl #bodyContent a.external { + background-image: url(external-rtl.png); + padding-right: 13px; + padding-left: 0; +} + +.rtl a.feedlink { + background-position: right; + padding-right: 0; + padding-left: 16px; +} diff --git a/skins/monobook/external-rtl.png b/skins/monobook/external-rtl.png new file mode 100644 index 00000000..c5cd84db Binary files /dev/null and b/skins/monobook/external-rtl.png differ diff --git a/skins/monobook/main.css b/skins/monobook/main.css index 7e5809b5..d6a67c1e 100644 --- a/skins/monobook/main.css +++ b/skins/monobook/main.css @@ -527,32 +527,36 @@ table.rimage { #bodyContent a.external, #bodyContent a[href ^="gopher://"] { background: url(external.png) center right no-repeat; - padding-right: 13px; + padding: 0 13px; +} +.rtl #bodyContent a.external, +.rtl #bodyContent a[href ^="gopher://"] { + background-image: url(external-rtl.png); } #bodyContent a[href ^="https://"], .link-https { background: url(lock_icon.gif) center right no-repeat; - padding-right: 16px; + padding: 0 16px; } #bodyContent a[href ^="mailto:"], .link-mailto { background: url(mail_icon.gif) center right no-repeat; - padding-right: 18px; + padding: 0 18px; } #bodyContent a[href ^="news://"] { background: url(news_icon.png) center right no-repeat; - padding-right: 18px; + padding: 0 18px; } #bodyContent a[href ^="ftp://"], .link-ftp { background: url(file_icon.gif) center right no-repeat; - padding-right: 18px; + padding: 0 18px; } #bodyContent a[href ^="irc://"], #bodyContent a.extiw[href ^="irc://"], .link-irc { background: url(discussionitem_icon.gif) center right no-repeat; - padding-right: 18px; + padding: 0 18px; } #bodyContent a.external[href $=".ogg"], #bodyContent a.external[href $=".OGG"], #bodyContent a.external[href $=".mid"], #bodyContent a.external[href $=".MID"], @@ -562,7 +566,7 @@ table.rimage { #bodyContent a.external[href $=".wma"], #bodyContent a.external[href $=".WMA"], .link-audio { background: url("audio.png") center right no-repeat; - padding-right: 13px; + padding: 0 13px; } #bodyContent a.external[href $=".ogm"], #bodyContent a.external[href $=".OGM"], #bodyContent a.external[href $=".avi"], #bodyContent a.external[href $=".AVI"], @@ -570,14 +574,30 @@ table.rimage { #bodyContent a.external[href $=".mpg"], #bodyContent a.external[href $=".MPG"], .link-video { background: url("video.png") center right no-repeat; - padding-right: 13px; + padding: 0 13px; } #bodyContent a.external[href $=".pdf"], #bodyContent a.external[href $=".PDF"], #bodyContent a.external[href *=".pdf#"], #bodyContent a.external[href *=".PDF#"], #bodyContent a.external[href *=".pdf?"], #bodyContent a.external[href *=".PDF?"], .link-document { background: url("document.png") center right no-repeat; - padding-right: 12px; + padding: 0 12px; +} + +/* for rtl wikis */ +.rtl #bodyContent a.external { + background-position: left; + padding-right: 0; +} +.rtl a.feedlink { + background-position: right; + padding-right: 16px; + padding-left: 0; +} + +/* correction for ltr wikis */ +.ltr #bodyContent a.external { + padding-left: 0; } /* disable interwiki styling */ @@ -715,7 +735,10 @@ input.searchButton { padding: .5em .4em .4em .4em; text-align: center; } - +#p-search #searchform div div { + margin-top: .4em; + font-size: 95%; +} /* ** the personal toolbar */ diff --git a/skins/monobook/rtl.css b/skins/monobook/rtl.css index fbd5ab35..9b8e4f44 100644 --- a/skins/monobook/rtl.css +++ b/skins/monobook/rtl.css @@ -147,14 +147,23 @@ li#ca-watch { #p-personal li { float: left; } -/* Fix link icons */ -.external { +/* Fix link icons +.external, a.feedlink { padding: 0 !important; background: none !important; } +*/ #footer { clear: both; } +#f-poweredbyico { + float: left; + height: 1%; +} +#f-copyrightico { + float: right; + height: 1%; +} * html #footer { margin-left: 0; margin-right: 13.6em; @@ -231,3 +240,8 @@ html > body div#bodyContent ul { html > body div#bodyContent ul#filetoc { display: block; } +/* Special:Prefixindex styling */ +td#mw-prefixindex-nav-form { + text-align: left; +} + diff --git a/skins/simple/main.css b/skins/simple/main.css index 6f3e8eb8..6ba47e0d 100644 --- a/skins/simple/main.css +++ b/skins/simple/main.css @@ -175,6 +175,12 @@ input.searchButton { padding: 0.5em 0.4em 0.4em 0.4em; } +/* feed links */ +a.feedlink { + background: url("../common/images/feed-icon.png") center left no-repeat; + padding-left: 16px; +} + textarea { width: 100%; } diff --git a/skins/simple/rtl.css b/skins/simple/rtl.css index 1ba1431d..53b3dc0c 100644 --- a/skins/simple/rtl.css +++ b/skins/simple/rtl.css @@ -94,7 +94,7 @@ div.tleft, div.floatleft, table.floatleft { } /* Fix link icons */ -.external { +.external, a.feedlink { padding: 0 !important; background: none !important; } @@ -174,3 +174,8 @@ table.filehistory th { html > body div#bodyContent ul { display: table; } +/* Special:Prefixindex styling */ +td#mw-prefixindex-nav-form { + text-align: left; +} + -- cgit v1.2.2