Changeset 19645 for websites

Show
Ignore:
Timestamp:
09/20/08 16:01:22 (2 months ago)
Author:
NeoCat
Message:

add source / subtle change of design

Location:
websites/twicli
Files:
1 added
1 modified

Legend:

Unmodified
Added
Removed
  • websites/twicli/twicli.html

    r19342 r19645  
    66<title>twicli</title> 
    77<style type="text/css"><!-- 
    8 body { background-color: transparent; margin: 1px; min-height: 500px; } 
     8body { background-image: url(block_bg.png); background-attachment: fixed; background-color: transparent; margin: 1px; min-height: 500px; } 
    99img { border: 0; } 
    1010hr { margin: 0; padding: 0; } 
     
    2626.dir { color: #679; } 
    2727.status { text-decoration: none; color: black; } 
    28 .date { color: #999; font-size: x-small; } 
     28.prop, .prop a { color: #999; font-size: x-small; } 
    2929.fromme { background-color: #cfc; } 
    3030.tome { background-color: #ccf; } 
    3131.button { color: #f29; border: solid 1px #ddd; text-decoration: none; font-size: medium; } 
     32.green { color: #195; } 
    3233.lock { position: relative; top: 2px; left: 0; } 
    3334.close { color: red; } 
     
    286287                tw.text.replace(/https?:\/\/[\w!#$%&'()*+,.\/:;=?@~-]+/g, " <a target=\"twitter\" href=\"$&\">$&</a>") 
    287288                                .replace(/@([\w-]+)/g, "<a href=\"http://twitter.com/$1\" onClick=\"switchUser('$1'); return false;\" >$&</a>").replace(/\r?\n|\r/g, "<br>") + '</span>' + 
    288                 //日付' 
    289                 ' <span class="date">' + dateFmt(new Date(tw.created_at)) + '</span>' + 
     289                //日付'クライアント 
     290                ' <span class="prop">' + dateFmt(new Date(tw.created_at)) + ' / ' + tw.source + '</span>' + 
    290291                //返信先を設定 
    291                 ' <a class="button" href="javascript:replyTo(\'' + un + "'," + tw.id + ')">↩</a>' + 
     292                ' <a class="button green" href="javascript:replyTo(\'' + un + "'," + tw.id + ')">↩</a>' + 
    292293                //返信元へのリンク 
    293294                (tw.in_reply_to_status_id ? ' <a class="button" href="#" onClick="dispReply(\'' + un + '\',' + tw.in_reply_to_status_id + ',this); return false;">☞</a>' : '') +