From: Bartosz DziewoƄski Date: Sun, 3 Aug 2014 19:13:54 +0000 (+0200) Subject: Vector: Fix missing tab images on Special:Preferences X-Git-Tag: 1.31.0-rc.0~14619 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/modifier.php?a=commitdiff_plain;h=ff1265d321497561a7d8773bd23d54630eeb9d83;p=lhc%2Fweb%2Fwiklou.git Vector: Fix missing tab images on Special:Preferences This fixes an issue in vector when you go to special preference the images would not load. That is because you needed to add ../ to the file path. This follows up If248781e44300039eb52262d03b2f6722838dd12 Change-Id: Iee3303eb1288ad5fc9e5a39e4854774a6da375ff --- diff --git a/skins/Vector/skinStyles/mediawiki.special.preferences.less b/skins/Vector/skinStyles/mediawiki.special.preferences.less index 592a64d8e6..c463718612 100644 --- a/skins/Vector/skinStyles/mediawiki.special.preferences.less +++ b/skins/Vector/skinStyles/mediawiki.special.preferences.less @@ -14,7 +14,7 @@ clear: both; margin: 0 !important; padding: 0 !important; - .background-image('images/preferences/break.png'); + .background-image('../images/preferences/break.png'); background-position: bottom left; background-repeat: no-repeat; @@ -28,7 +28,7 @@ white-space: nowrap; list-style-type: none; list-style-image: none; - .background-image('images/preferences/break.png'); + .background-image('../images/preferences/break.png'); background-position: bottom right; background-repeat: no-repeat; @@ -39,7 +39,7 @@ &.selected { a { - .background-image('images/preferences/fade.png'); + .background-image('../images/preferences/fade.png'); background-position: bottom; background-repeat: repeat-x; color: #333;