]> spindle.queued.net Git - midori/commitdiff
Use stock close button instead of cross in speed dial
authorChristian Dywan <christian@twotoasts.de>
Fri, 15 May 2009 21:10:48 +0000 (23:10 +0200)
committerChristian Dywan <christian@twotoasts.de>
Fri, 15 May 2009 21:10:48 +0000 (23:10 +0200)
I'm not entirely decided if it's better or worse, we'll see
how it is and can revert if needed.

data/speeddial-head.html

index 842f6472987adbf0fc4de7cedde37fd7b80a20d8..621a04750738cd8ee061a723700b72cc42e309d0 100644 (file)
     }
 
     .cross {
-        -webkit-border-radius: 7px;
-        background-color: #ddd;
-        height: 15px;
-        width: 15px;
-        font-size: 11px;
-        font-weight: bolder;
-        font-family: sans-serif;
+        height: 16px;
+        width: 16px;
         margin-bottom: -17px;
-        margin-left: 183px;
+        margin-left: 180px;
         margin-top: 2px;
-        text-align: center;
-        color: #fff;
+        background: url({stock}/16/gtk-close) 98% 70% no-repeat;
         cursor: pointer;
         z-index: -4;
+        opacity: 0.6;
     }
 
     .cross:hover {
-        background-color: #ff7575;
+        opacity: 1;
     }
 
     .activated p {
         a.empty ().removeClass ('waiter').grab (im);
         a.setProperty ('href', href);
 
-        var cross = new Element ('div', { 'html': 'x' });
+        var cross = new Element ('div', { 'html': '' });
         cross.setProperty ('onclick', 'clearShortcut("' + id + '");');
         cross.addClass ('cross');
         cross.inject ($(id), 'top');
             {
                 div.addClass ('activated');
                 var im = new Element ('img', { src: 'data:image/png;base64,' + item.img });
-                var cross = new Element ('div', { 'html': 'x' });
+                var cross = new Element ('div', { 'html': '' });
                 cross.setProperty ('onclick', 'clearShortcut("' + item.id + '");');
                 cross.addClass ('cross');
                 cross.inject (div, 'top');