mirror of
https://github.com/twisterarmy/twister-html.git
synced 2025-02-05 03:24:17 +00:00
commit
c9bfac7e67
@ -153,8 +153,9 @@
|
|||||||
.profile-modal .modal-wrapper
|
.profile-modal .modal-wrapper
|
||||||
{
|
{
|
||||||
width: 528px;
|
width: 528px;
|
||||||
height: 590px;
|
height: 680px;
|
||||||
margin: -300px 0 0 -264px;
|
margin: -340px 0 0 -264px;
|
||||||
|
border-radius: 5px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
.profile-modal .modal-content
|
.profile-modal .modal-content
|
||||||
@ -189,7 +190,7 @@
|
|||||||
}
|
}
|
||||||
.profile-modal .postboard-posts .post
|
.profile-modal .postboard-posts .post
|
||||||
{
|
{
|
||||||
padding: 5px;
|
padding: 0;
|
||||||
}
|
}
|
||||||
.profile-modal .post-interactions
|
.profile-modal .post-interactions
|
||||||
{
|
{
|
||||||
|
@ -509,22 +509,32 @@ button.disabled:hover
|
|||||||
/***********************************
|
/***********************************
|
||||||
********************* POST AREA ****
|
********************* POST AREA ****
|
||||||
***********************************/
|
***********************************/
|
||||||
.post-area-new
|
.post-area-new {
|
||||||
{
|
padding-bottom: 4px;
|
||||||
padding: 10px;
|
|
||||||
}
|
}
|
||||||
.post-area-new textarea
|
.post-area-new textarea
|
||||||
{
|
{
|
||||||
resize: none;
|
resize: none;
|
||||||
width: 100%;
|
width: 445px;
|
||||||
display: block;
|
display: block;
|
||||||
transition: all .3s linear;
|
transition: all .3s linear;
|
||||||
height: 28px;
|
height: 28px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
border: solid 1px rgba(0, 0, 0, .3 );
|
border: solid 1px rgba(0, 0, 0, .3 );
|
||||||
|
margin-left: 55px;
|
||||||
|
margin-bottom: 10px;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
}
|
}
|
||||||
|
.mini-profile .post-area-new
|
||||||
|
{
|
||||||
|
padding: 9px;
|
||||||
|
}
|
||||||
|
.mini-profile .post-area-new textarea
|
||||||
|
{
|
||||||
|
margin-left: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
.post-area-new.open textarea
|
.post-area-new.open textarea
|
||||||
{
|
{
|
||||||
height: 80px;
|
height: 80px;
|
||||||
@ -551,7 +561,6 @@ button.disabled:hover
|
|||||||
{
|
{
|
||||||
height: 35px;
|
height: 35px;
|
||||||
transition: all .6s linear;
|
transition: all .6s linear;
|
||||||
padding-top: 4px;
|
|
||||||
}
|
}
|
||||||
.post-area-remaining
|
.post-area-remaining
|
||||||
{
|
{
|
||||||
@ -806,6 +815,7 @@ button.disabled:hover
|
|||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
color: #e34f42;
|
color: #e34f42;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
padding-left: 2px;
|
||||||
}
|
}
|
||||||
.post-info-tag
|
.post-info-tag
|
||||||
{
|
{
|
||||||
@ -1317,11 +1327,12 @@ button.disabled:hover
|
|||||||
width: 560px;
|
width: 560px;
|
||||||
height: 470px;
|
height: 470px;
|
||||||
margin: -200px 0 0 -280px;
|
margin: -200px 0 0 -280px;
|
||||||
overflow-x: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
.hashtag-modal .modal-content
|
.hashtag-modal .modal-content
|
||||||
{
|
{
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
|
height: 440px;
|
||||||
}
|
}
|
||||||
.hashtag-modal .modal-buttons
|
.hashtag-modal .modal-buttons
|
||||||
{
|
{
|
||||||
|
@ -420,12 +420,17 @@ var postSubmit = function(e)
|
|||||||
var $replyText = $this.closest(".post-area-new").find("textarea");
|
var $replyText = $this.closest(".post-area-new").find("textarea");
|
||||||
|
|
||||||
var $postOrig = $this.closest(".post-data");
|
var $postOrig = $this.closest(".post-data");
|
||||||
if( !$postOrig.length )
|
|
||||||
|
if (!$postOrig.length) {
|
||||||
$postOrig = $this.closest(".modal-content").find(".post-data");
|
$postOrig = $this.closest(".modal-content").find(".post-data");
|
||||||
|
}
|
||||||
|
|
||||||
newPostMsg($replyText.val(), $postOrig);
|
newPostMsg($replyText.val(), $postOrig);
|
||||||
|
|
||||||
$replyText.val("");
|
$replyText.val("");
|
||||||
|
var tweetForm = $this.parents("form");
|
||||||
|
var remainingCount = tweetForm.find(".post-area-remaining");
|
||||||
|
remainingCount.text(140);
|
||||||
$replyText.attr("placeholder", "Your message was sent!");
|
$replyText.attr("placeholder", "Your message was sent!");
|
||||||
closeModal($this);
|
closeModal($this);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user