From: Adam Miller Date: Tue, 27 Oct 2009 21:10:43 +0000 (+0000) Subject: fixing a slight bug with watch/unwatch. The icon watch/unwatch was dependent on the... X-Git-Tag: 1.31.0-rc.0~39073 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=a6bbcc5537568815e74d0669537a58b963d41df0;p=lhc%2Fweb%2Fwiklou.git fixing a slight bug with watch/unwatch. The icon watch/unwatch was dependent on the dropdown menu for it's right border, and this should correct that --- diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 2c4c5f8e78..0e6609e646 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1605,7 +1605,7 @@ $wgCacheEpoch = '20030516000000'; * to ensure that client-side caches do not keep obsolete copies of global * styles. */ -$wgStyleVersion = '247'; +$wgStyleVersion = '248'; # Server-side caching: diff --git a/skins/vector/main-ltr.css b/skins/vector/main-ltr.css index af5efbfad3..84648b1d69 100644 --- a/skins/vector/main-ltr.css +++ b/skins/vector/main-ltr.css @@ -1069,6 +1069,7 @@ div#bodyContent { /* Watch/Unwatch Icon Styling */ #ca-unwatch.icon, #ca-watch.icon { + margin-right:1px; } #ca-unwatch.icon a, #ca-watch.icon a { @@ -1104,3 +1105,8 @@ div#bodyContent { #ca-watch.icon a span { display: none; } +div.vectorTabs ul { + background-image:url(images/tab-break.png); + background-position:right bottom; + background-repeat:no-repeat; +} \ No newline at end of file diff --git a/skins/vector/main-rtl.css b/skins/vector/main-rtl.css index c5ae83910b..2a0fd953d4 100644 --- a/skins/vector/main-rtl.css +++ b/skins/vector/main-rtl.css @@ -1069,6 +1069,7 @@ div#bodyContent { /* Watch/Unwatch Icon Styling */ #ca-unwatch.icon, #ca-watch.icon { + margin-left:1px; } #ca-unwatch.icon a, #ca-watch.icon a { @@ -1104,3 +1105,8 @@ div#bodyContent { #ca-watch.icon a span { display: none; } +div.vectorTabs ul { + background-image:url(images/tab-break.png); + background-position:left bottom; + background-repeat:no-repeat; +} \ No newline at end of file