aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornicosomb <nicolas@loeuillet.org>2013-04-15 15:09:00 +0200
committernicosomb <nicolas@loeuillet.org>2013-04-15 15:09:00 +0200
commit023579d1d8ef0a920b25ce57a13ce8e08e535efe (patch)
tree98cee9bf496a4efa80ebb6cd77d9bd3e977408e1
parentcf3180f6b8c552bbf7214d1ba72fbf1fc90ef861 (diff)
downloadwallabag-023579d1d8ef0a920b25ce57a13ce8e08e535efe.tar.gz
wallabag-023579d1d8ef0a920b25ce57a13ce8e08e535efe.tar.zst
wallabag-023579d1d8ef0a920b25ce57a13ce8e08e535efe.zip
nouvelles icônes
-rw-r--r--CREDITS4
-rw-r--r--css/style.css22
-rw-r--r--img/archive-off.pngbin326 -> 0 bytes
-rw-r--r--img/archive-on.pngbin333 -> 0 bytes
-rwxr-xr-ximg/checkmark-off.pngbin0 -> 277 bytes
-rwxr-xr-ximg/checkmark-on.pngbin0 -> 235 bytes
-rw-r--r--img/delete.pngbin314 -> 0 bytes
-rw-r--r--img/fav-off.pngbin301 -> 0 bytes
-rw-r--r--img/fav-on.pngbin301 -> 0 bytes
-rwxr-xr-ximg/remove.pngbin0 -> 252 bytes
-rwxr-xr-ximg/star-off.pngbin0 -> 314 bytes
-rwxr-xr-ximg/star-on.pngbin0 -> 281 bytes
12 files changed, 11 insertions, 15 deletions
diff --git a/CREDITS b/CREDITS
index 77c87e99..916eae5d 100644
--- a/CREDITS
+++ b/CREDITS
@@ -2,8 +2,8 @@ poche is based on :
2* ReadItYourself http://www.memiks.fr/readityourself/ 2* ReadItYourself http://www.memiks.fr/readityourself/
3* PHP Readability http://www.keyvan.net/2010/08/php-readability/ 3* PHP Readability http://www.keyvan.net/2010/08/php-readability/
4* Encoding https://github.com/neitanod/forceutf8 4* Encoding https://github.com/neitanod/forceutf8
5 5* logo by Brightmix http://www.iconfinder.com/icondetails/43256/128/jeans_monotone_pocket_icon
6The logo is made by Brightmix http://www.iconfinder.com/icondetails/43256/128/jeans_monotone_pocket_icon 6* icons http://icomoon.io
7 7
8poche is developed by Nicolas Lœuillet under the Do What the Fuck You Want to Public License 8poche is developed by Nicolas Lœuillet under the Do What the Fuck You Want to Public License
9 9
diff --git a/css/style.css b/css/style.css
index d77fb9e7..ee99dbcf 100644
--- a/css/style.css
+++ b/css/style.css
@@ -66,7 +66,7 @@ footer {
66} 66}
67 67
68input[type=submit].delete { 68input[type=submit].delete {
69 background : url('../img/delete.png') no-repeat center center; 69 background : url('../img/remove.png') no-repeat center center;
70 width : 16px; 70 width : 16px;
71 height :16px; 71 height :16px;
72 border : none; 72 border : none;
@@ -145,39 +145,35 @@ input[type=submit].delete {
145} 145}
146 146
147a.fav span { 147a.fav span {
148 background: url('../img/fav-on.png') no-repeat; 148 background: url('../img/star-on.png') no-repeat;
149} 149}
150 150
151a.fav span:hover { 151a.fav span:hover {
152 background: url('../img/fav-off.png') no-repeat; 152 background: url('../img/star-off.png') no-repeat;
153} 153}
154 154
155a.fav-off span { 155a.fav-off span {
156 background: url('../img/fav-off.png') no-repeat; 156 background: url('../img/star-off.png') no-repeat;
157} 157}
158 158
159a.fav-off span:hover { 159a.fav-off span:hover {
160 background: url('../img/fav-on.png') no-repeat; 160 background: url('../img/star-on.png') no-repeat;
161} 161}
162 162
163a.archive span { 163a.archive span {
164 background: url('../img/archive-on.png') no-repeat; 164 background: url('../img/checkmark-on.png') no-repeat;
165} 165}
166 166
167a.archive span:hover { 167a.archive span:hover {
168 background: url('../img/archive-off.png') no-repeat; 168 background: url('../img/checkmark-off.png') no-repeat;
169} 169}
170 170
171a.archive-off span { 171a.archive-off span {
172 background: url('../img/archive-off.png') no-repeat; 172 background: url('../img/checkmark-off.png') no-repeat;
173} 173}
174 174
175a.archive-off span:hover { 175a.archive-off span:hover {
176 background: url('../img/archive-on.png') no-repeat; 176 background: url('../img/checkmark-on.png') no-repeat;
177}
178
179a.delete span {
180 background: url('../img/delete.png') no-repeat;
181} 177}
182 178
183/*** ***/ 179/*** ***/
diff --git a/img/archive-off.png b/img/archive-off.png
deleted file mode 100644
index 25622167..00000000
--- a/img/archive-off.png
+++ /dev/null
Binary files differ
diff --git a/img/archive-on.png b/img/archive-on.png
deleted file mode 100644
index 63cef2cd..00000000
--- a/img/archive-on.png
+++ /dev/null
Binary files differ
diff --git a/img/checkmark-off.png b/img/checkmark-off.png
new file mode 100755
index 00000000..3db5a06d
--- /dev/null
+++ b/img/checkmark-off.png
Binary files differ
diff --git a/img/checkmark-on.png b/img/checkmark-on.png
new file mode 100755
index 00000000..cd3abb2c
--- /dev/null
+++ b/img/checkmark-on.png
Binary files differ
diff --git a/img/delete.png b/img/delete.png
deleted file mode 100644
index 5924fa75..00000000
--- a/img/delete.png
+++ /dev/null
Binary files differ
diff --git a/img/fav-off.png b/img/fav-off.png
deleted file mode 100644
index 414a5c51..00000000
--- a/img/fav-off.png
+++ /dev/null
Binary files differ
diff --git a/img/fav-on.png b/img/fav-on.png
deleted file mode 100644
index c4d858a9..00000000
--- a/img/fav-on.png
+++ /dev/null
Binary files differ
diff --git a/img/remove.png b/img/remove.png
new file mode 100755
index 00000000..f8ad56a3
--- /dev/null
+++ b/img/remove.png
Binary files differ
diff --git a/img/star-off.png b/img/star-off.png
new file mode 100755
index 00000000..6a0133a7
--- /dev/null
+++ b/img/star-off.png
Binary files differ
diff --git a/img/star-on.png b/img/star-on.png
new file mode 100755
index 00000000..a9f96eaa
--- /dev/null
+++ b/img/star-on.png
Binary files differ