changed visual aspect of remove button
authorveltr
Tue, 21 Feb 2012 12:09:36 +0100
changeset 14 1cc92b8c3a38
parent 13 e42d9f11f6e2
child 15 03c54e8c00dc
changed visual aspect of remove button
client/css/controlpanel.css
client/img/addshow.png
client/js/main.js
--- a/client/css/controlpanel.css	Tue Feb 21 11:48:06 2012 +0100
+++ b/client/css/controlpanel.css	Tue Feb 21 12:09:36 2012 +0100
@@ -56,7 +56,7 @@
 }
 
 .btv-cp-tweet-remove {
-    font-size: 16px; font-weight: bold; color: #a00000;
+    background-position: -30px 0;
 }
 
 .btv-cp-liste-tweets li:hover {
Binary file client/img/addshow.png has changed
--- a/client/js/main.js	Tue Feb 21 11:48:06 2012 +0100
+++ b/client/js/main.js	Tue Feb 21 12:09:36 2012 +0100
@@ -37,7 +37,8 @@
             + _t.from_user
             + '</span> <span class="btv-cp-tweet-text">'
             + _t.text
-            + '</span><div class="btv-cp-tweet-button btv-cp-tweet-show"></div></a><a class="btv-cp-tweet-remove" href="#" onclick="$(this).parent().detach(); return false;">&times;</a></li>'
+            + '</span><div class="btv-cp-tweet-button btv-cp-tweet-show"></div></a>'
+            + '<a title="Supprimer de cette liste" href="#" onclick="$(this).parent().detach(); return false;"><div class="btv-cp-tweet-button btv-cp-tweet-remove"></div></a></li>'
         );
     }
 }