
adam at svn
Nov 19, 2009, 9:16 AM
Post #1 of 1
(88 views)
Permalink
|
|
SVN: [59254] trunk/phase3/skins/vector
|
|
http://www.mediawiki.org/wiki/Special:Code/MediaWiki/59254 Revision: 59254 Author: adam Date: 2009-11-19 17:16:30 +0000 (Thu, 19 Nov 2009) Log Message: ----------- a followup, better fix for what r59224 aimed to do: Fixing a spacing issue with RTL langauges and the dropdown menu Modified Paths: -------------- trunk/phase3/skins/vector/main-ltr.css trunk/phase3/skins/vector/main-rtl.css Modified: trunk/phase3/skins/vector/main-ltr.css =================================================================== --- trunk/phase3/skins/vector/main-ltr.css 2009-11-19 16:47:57 UTC (rev 59253) +++ trunk/phase3/skins/vector/main-ltr.css 2009-11-19 17:16:30 UTC (rev 59254) @@ -213,11 +213,14 @@ #head div.vectorMenu h5 { float: left; background-image: url(images/tab-break.png); - background-position: bottom left; background-repeat: no-repeat; - margin-left: -1px; } + /* IGNORED BY IE6 */ + #head div.vectorMenu > h5 { + background-image: none; + } #head div.vectorMenu h5 { + background-position: bottom left; margin-left: -1px; } /* OVERRIDDEN BY COMPLIANT BROWSERS */ @@ -228,9 +231,11 @@ height: 2.5em; text-decoration: none; background-image: url(images/tab-break.png); - background-position: bottom right; background-repeat: no-repeat; } + div.vectorMenu h5 a{ + background-position: bottom right; + } /* IGNORED BY IE6 */ div.vectorMenu h5 > a { display: block; Modified: trunk/phase3/skins/vector/main-rtl.css =================================================================== --- trunk/phase3/skins/vector/main-rtl.css 2009-11-19 16:47:57 UTC (rev 59253) +++ trunk/phase3/skins/vector/main-rtl.css 2009-11-19 17:16:30 UTC (rev 59254) @@ -213,11 +213,14 @@ #head div.vectorMenu h5 { float: left; background-image: url(images/tab-break.png); - background-position: bottom left; background-repeat: no-repeat; - margin-left: -1px; } + /* IGNORED BY IE6 */ + #head div.vectorMenu > h5 { + background-image: none; + } #head div.vectorMenu h5 { + background-position: bottom right; margin-right: -1px; } /* OVERRIDDEN BY COMPLIANT BROWSERS */ @@ -228,9 +231,11 @@ height: 2.5em; text-decoration: none; background-image: url(images/tab-break.png); - background-position: bottom right; background-repeat: no-repeat; } + div.vectorMenu h5 a{ + background-position: bottom left; + } /* IGNORED BY IE6 */ div.vectorMenu h5 > a { display: block; _______________________________________________ MediaWiki-CVS mailing list MediaWiki-CVS [at] lists https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs
|