diff --git a/css/profile.css b/css/profile.css index 5c373a1..d4c432d 100644 --- a/css/profile.css +++ b/css/profile.css @@ -242,6 +242,13 @@ .profile-modal .profile-location { color: #48577d; } +.profile-modal .profile-url { + font-size: 14px; + font-style: italic; +} +.profile-modal .profile-bio { + text-align: center; +} #msngrswr { position: absolute; left: 10px; @@ -256,21 +263,22 @@ width: 30px; display: inline-block; margin-right: 10px; - border: 1px solid #c0c2c6; + border: 1px solid #d6d8dc; background: #e3e5ea url(img/clipboard.png) center no-repeat; opacity: .8; -webkit-border-radius: 0 5px 5px 0; -moz-border-radius: 0 5px 5px 0; border-radius: 0 5px 5px 0; - -webkit-transition: all 200ms; - -moz-transition: all 200ms; - -ms-transition: all 200ms; - -o-transition: all 200ms; - transition: all 200ms; + -webkit-transition: all 20ms; + -moz-transition: all 20ms; + -ms-transition: all 20ms; + -o-transition: all 20ms; + transition: all 20ms; } .bitmessage-ctc:hover, .tox-ctc:hover { background-color: #f0f2f8; opacity: 1; + cursor: pointer; } .bitmessage-ctc:active, .tox-ctc:active { background-color: #edfced; @@ -279,7 +287,6 @@ display: inline-block; width: 80px; height: 35px; - margin-right: 2px; border: 1px solid #c0c2c6; opacity: .8; -webkit-border-radius: 5px 0 0 5px; @@ -296,7 +303,7 @@ background-color: #f0f2f8; } .profile-modal .profile-tox:active, .profile-modal .profile-bitmessage:active { - background-color: #fff0f0; + background-color: #edfced; } .profile-modal .profile-tox { background: #e3e5ea url(../img/tox.png) center no-repeat; @@ -389,6 +396,7 @@ h1.profile-name { h2.profile-screen-name { display: inline; bottom: 0; + color: #8f95a4; } .profile-modal .modal-buttons { diff --git a/home.html b/home.html index 2e0f598..f952c76 100644 --- a/home.html +++ b/home.html @@ -434,13 +434,10 @@


-

@

-
- - -
-
-
+

@


+
+ +
diff --git a/js/twister_actions.js b/js/twister_actions.js index 8aa6ac5..03fd659 100644 --- a/js/twister_actions.js +++ b/js/twister_actions.js @@ -179,7 +179,7 @@ function updateProfileData(profileModalContent, username) { profileModalContent.find(".following-count").parent().attr("href", $.MAL.followingUrl(username)); - requestPostRecursively(profileModalContent.find(".postboard-posts"),username,"status",10); + requestPostRecursively(profileModalContent.find(".postboard-posts"),username,"status",20); } function updateFollowingData(followingModalContent, username) { diff --git a/js/twister_io.js b/js/twister_io.js index de3737f..62c27ef 100644 --- a/js/twister_io.js +++ b/js/twister_io.js @@ -239,7 +239,7 @@ function getBitmessage( username, item ){ getProfileResource( username, "bitmessage", false, function(item, text){ item.empty(); if(text) { - item.attr('href', 'bitmsg:'+text); + item.attr('href', 'bitmsg:'+text+'?action=add&label='+username); setTimeout(function(){ $('#bmbtnwr').show(); $('.bitmessage-ctc').attr('data', text);