diff --git a/CREDITS b/CREDITS index 77c87e992..916eae5d8 100644 --- a/CREDITS +++ b/CREDITS @@ -2,8 +2,8 @@ poche is based on : * ReadItYourself http://www.memiks.fr/readityourself/ * PHP Readability http://www.keyvan.net/2010/08/php-readability/ * Encoding https://github.com/neitanod/forceutf8 - -The logo is made by Brightmix http://www.iconfinder.com/icondetails/43256/128/jeans_monotone_pocket_icon +* logo by Brightmix http://www.iconfinder.com/icondetails/43256/128/jeans_monotone_pocket_icon +* icons http://icomoon.io poche is developed by Nicolas LÅ“uillet under the Do What the Fuck You Want to Public License diff --git a/css/style.css b/css/style.css index d77fb9e70..ee99dbcfc 100644 --- a/css/style.css +++ b/css/style.css @@ -66,7 +66,7 @@ footer { } input[type=submit].delete { - background : url('../img/delete.png') no-repeat center center; + background : url('../img/remove.png') no-repeat center center; width : 16px; height :16px; border : none; @@ -145,39 +145,35 @@ input[type=submit].delete { } a.fav span { - background: url('../img/fav-on.png') no-repeat; + background: url('../img/star-on.png') no-repeat; } a.fav span:hover { - background: url('../img/fav-off.png') no-repeat; + background: url('../img/star-off.png') no-repeat; } a.fav-off span { - background: url('../img/fav-off.png') no-repeat; + background: url('../img/star-off.png') no-repeat; } a.fav-off span:hover { - background: url('../img/fav-on.png') no-repeat; + background: url('../img/star-on.png') no-repeat; } a.archive span { - background: url('../img/archive-on.png') no-repeat; + background: url('../img/checkmark-on.png') no-repeat; } a.archive span:hover { - background: url('../img/archive-off.png') no-repeat; + background: url('../img/checkmark-off.png') no-repeat; } a.archive-off span { - background: url('../img/archive-off.png') no-repeat; + background: url('../img/checkmark-off.png') no-repeat; } a.archive-off span:hover { - background: url('../img/archive-on.png') no-repeat; -} - -a.delete span { - background: url('../img/delete.png') no-repeat; + background: url('../img/checkmark-on.png') no-repeat; } /*** ***/ diff --git a/img/archive-off.png b/img/archive-off.png deleted file mode 100644 index 25622167b..000000000 Binary files a/img/archive-off.png and /dev/null differ diff --git a/img/archive-on.png b/img/archive-on.png deleted file mode 100644 index 63cef2cdd..000000000 Binary files a/img/archive-on.png and /dev/null differ diff --git a/img/checkmark-off.png b/img/checkmark-off.png new file mode 100755 index 000000000..3db5a06dc Binary files /dev/null and b/img/checkmark-off.png differ diff --git a/img/checkmark-on.png b/img/checkmark-on.png new file mode 100755 index 000000000..cd3abb2c0 Binary files /dev/null and b/img/checkmark-on.png differ diff --git a/img/delete.png b/img/delete.png deleted file mode 100644 index 5924fa757..000000000 Binary files a/img/delete.png and /dev/null differ diff --git a/img/fav-off.png b/img/fav-off.png deleted file mode 100644 index 414a5c513..000000000 Binary files a/img/fav-off.png and /dev/null differ diff --git a/img/fav-on.png b/img/fav-on.png deleted file mode 100644 index c4d858a98..000000000 Binary files a/img/fav-on.png and /dev/null differ diff --git a/img/remove.png b/img/remove.png new file mode 100755 index 000000000..f8ad56a3e Binary files /dev/null and b/img/remove.png differ diff --git a/img/star-off.png b/img/star-off.png new file mode 100755 index 000000000..6a0133a79 Binary files /dev/null and b/img/star-off.png differ diff --git a/img/star-on.png b/img/star-on.png new file mode 100755 index 000000000..a9f96eaac Binary files /dev/null and b/img/star-on.png differ