From: Leon Weber Date: Sun, 4 Mar 2007 20:53:48 +0000 (+0000) Subject: Finish what I began in r20065. Tested it in all skins and works except in MySkin... X-Git-Tag: 1.31.0-rc.0~53914 X-Git-Url: https://git.cyclocoop.org//%22?a=commitdiff_plain;h=560218d6ac2cd81b17a18e57f10055c2402221a5;p=lhc%2Fweb%2Fwiklou.git Finish what I began in r20065. Tested it in all skins and works except in MySkin. I guess this is okay, but I didn't understand yet what MySkin is :) If something's wrong, please feel free to correct it, as I'll be away for some weeks now. --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index a1d3e03a6f..99603d4498 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -229,8 +229,7 @@ lighter making things easier to read. * (bug 8958) Handle search operators better when using tsearch2 (Postgres) * Added rate limiter for Special:Emailuser * Have a checkered background on images on the description pages and in - galeries to make transparency visible (just MonoBook for now, will add the - rest soon). + galeries to make transparency visible. * (bug 7782) Standardisation of file info at image description pages. * (bug 8799) Use redirect table for Special:BrokenRedirects and Special:DoubleRedirects diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index c834a2c961..690d9c2acd 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1117,7 +1117,7 @@ $wgCacheEpoch = '20030516000000'; * to ensure that client-side caches don't keep obsolete copies of global * styles. */ -$wgStyleVersion = '60'; +$wgStyleVersion = '61'; # Server-side caching: diff --git a/skins/common/common.css b/skins/common/common.css index 92b4888375..64a82e375b 100644 --- a/skins/common/common.css +++ b/skins/common/common.css @@ -474,4 +474,8 @@ p.mw-ipb-conveniencelinks { .mw-plusminus-null { color: #aaa; } .texvc { direction: ltr; unicode-bidi: embed; } /* Stop floats from intruding into edit area in previews */ -#toolbar, #wpTextbox1 { clear: both; } \ No newline at end of file +#toolbar, #wpTextbox1 { clear: both; } + +#file img, .gallerybox .thumb img { + background: url(images/Checker-16x16.png) repeat; +} diff --git a/skins/common/images/Checker-16x16.png b/skins/common/images/Checker-16x16.png new file mode 100644 index 0000000000..3e9e3d0969 Binary files /dev/null and b/skins/common/images/Checker-16x16.png differ diff --git a/skins/monobook/Checker-16x16.png b/skins/monobook/Checker-16x16.png deleted file mode 100644 index 3e9e3d0969..0000000000 Binary files a/skins/monobook/Checker-16x16.png and /dev/null differ diff --git a/skins/monobook/main.css b/skins/monobook/main.css index 1a5c2600e6..c48d9e2852 100644 --- a/skins/monobook/main.css +++ b/skins/monobook/main.css @@ -1624,4 +1624,11 @@ p.mw-ipb-conveniencelinks { .mw-plusminus-null { color: #aaa; } .texvc { direction: ltr; unicode-bidi: embed; } /* Stop floats from intruding into edit area in previews */ -#toolbar, #wpTextbox1 { clear: both; } \ No newline at end of file +#toolbar, #wpTextbox1 { clear: both; } + +/* Have a checkered background on images on the description pages and in galleries + to make transparency visible +*/ +#file img, .gallerybox .thumb img { + background: url(../common/images/Checker-16x16.png) repeat; +} diff --git a/skins/simple/main.css b/skins/simple/main.css index 41d0b54706..c22f0b75ce 100644 --- a/skins/simple/main.css +++ b/skins/simple/main.css @@ -445,4 +445,8 @@ table.collapsed tr.collapsable { .mw-plusminus-null { color: #aaa; } .texvc { direction: ltr; unicode-bidi: embed; } /* Stop floats from intruding into edit area in previews */ -#toolbar, #wpTextbox1 { clear: both; } \ No newline at end of file +#toolbar, #wpTextbox1 { clear: both; } + +#file img, .gallerybox .thumb img { + background: url(../common/images/Checker-16x16.png) repeat; +}