From a6bbcc5537568815e74d0669537a58b963d41df0 Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Tue, 27 Oct 2009 21:10:43 +0000 Subject: [PATCH] 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 --- includes/DefaultSettings.php | 2 +- skins/vector/main-ltr.css | 6 ++++++ skins/vector/main-rtl.css | 6 ++++++ 3 files changed, 13 insertions(+), 1 deletion(-) 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 -- 2.20.1