Commit: 3330307ed474a89b2fb09457b4aad797fe3353fd Author: Hannes Magnusson <[email protected]> Thu, 13 Dec 2012 11:08:16 -0800 Parents: 195da8406565a3e27eb49edff01e844b190488c1 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=3330307ed474a89b2fb09457b4aad797fe3353fd Log: Fix the path to the voting images on php.net and mirrors Changed paths: M styles/mirror.css M styles/phpnet.css M styles/site.css M styles/theme.css Diff: diff --git a/styles/mirror.css b/styles/mirror.css index 92babd7..c18a675 100644 --- a/styles/mirror.css +++ b/styles/mirror.css @@ -28,6 +28,13 @@ div.warning { background-image: url(/images/dialog-warning.png); } +/* Voting images ---------------------------------------------------------- */ +div#usernotes a.usernotes-voteu, +div#usernotes a.usernotes-voted, +div#usernotes a.usernotes-voteu:hover, +div#usernotes a.usernotes-voted:hover { + background-image: url(/images/notes-features.png); +} #mirrors-container { diff --git a/styles/phpnet.css b/styles/phpnet.css index 0f8a454..73a6433 100644 --- a/styles/phpnet.css +++ b/styles/phpnet.css @@ -27,3 +27,12 @@ div.tip { div.warning { background-image: url(//static.php.net/www.php.net/images/dialog-warning.png); } + +/* Voting images ---------------------------------------------------------- */ +div#usernotes a.usernotes-voteu, +div#usernotes a.usernotes-voted, +div#usernotes a.usernotes-voteu:hover, +div#usernotes a.usernotes-voted:hover { + background-image: url(//static.php.net/images/notes-features.png); +} + diff --git a/styles/site.css b/styles/site.css index 7640af4..089d4fa 100644 --- a/styles/site.css +++ b/styles/site.css @@ -700,7 +700,6 @@ div#usernotes a.usernotes-voteu { display: block; width: 16px; height: 16px; - background-image: url(/images/notes-features.png); background-position:0px 0px; text-indent: -99999px; } @@ -708,16 +707,13 @@ div#usernotes a.usernotes-voted { display: block; width: 16px; height: 16px; - background-image: url(/images/notes-features.png); background-position:0px 16px; text-indent: -99999px; } div#usernotes a.usernotes-voteu:hover { - background-image: url(/images/notes-features.png); background-position:-16px 0px; } div#usernotes a.usernotes-voted:hover { - background-image: url(/images/notes-features.png); background-position:-16px 16px; } div#usernotes div.features { diff --git a/styles/theme.css b/styles/theme.css index b97d6a6..2c836d3 100755 --- a/styles/theme.css +++ b/styles/theme.css @@ -432,7 +432,6 @@ hr { display: block; width: 16px; height: 16px; - background-image: url(/images/notes-features.png); background-position:0px 0px; text-indent: -99999px; } @@ -440,16 +439,13 @@ hr { display: block; width: 16px; height: 16px; - background-image: url(/images/notes-features.png); background-position:0px 16px; text-indent: -99999px; } #usernotes a.usernotes-voteu:hover { - background-image: url(/images/notes-features.png); background-position:-16px 0px; } #usernotes a.usernotes-voted:hover { - background-image: url(/images/notes-features.png); background-position:-16px 16px; } #usernotes div.features { -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
