Changeset - 9b1df7c06ec2
[Not reviewed]
default
0 2 0
drewp@bigasterisk.com - 12 years ago 2013-06-18 02:18:52
drewp@bigasterisk.com
asco bigger numbers so 3 year old users can find them
Ignore-this: 97feafa3ee4af3017ab3046be45b3d8
2 files changed with 10 insertions and 2 deletions:
0 comments (0 inline, 0 general)
light9/ascoltami/index.html
Show inline comments
 
@@ -94,7 +94,10 @@
 
	$.each(data.songs, function (i, song) {
 
	    var button = $("<button>");
 
            // link is just for dragging, not clicking
 
            var link = $("<a>").text(song.label).attr("href", song.uri);
 
            var link = $("<a>");
 
            link.append($("<span>").addClass("num").text(song.label.slice(0,2)));
 
            link.append($("<span>").text(song.label.slice(2)));
 
            link.attr("href", song.uri);
 
            link.click(function () { button.click(); return false; }); 
 
            button.append(link);
 
	    button.data(song);
static/style.css
Show inline comments
 
@@ -44,4 +44,9 @@ button a {
 
}
 
.stalled {
 
    opacity: .5;
 
}
 
\ No newline at end of file
 
}
 
.num {
 
font-size: 27px;
 
color: rgb(233, 122, 122);
 
display: inline-block; 
 
    }
 
\ No newline at end of file
0 comments (0 inline, 0 general)