Browse Source

fix modal reply window

fix modal reply window
master
Hedgehog 10 years ago
parent
commit
c263056467
  1. 5
      css/profile.css
  2. 12
      css/style.css
  3. 5
      home.html

5
css/profile.css

@ -337,6 +337,11 @@ button.follow:hover { @@ -337,6 +337,11 @@ button.follow:hover {
background: #b2d67b;
color: #fff;
}
.profile-modal .separator {
height: 10px;
width: 100%;
background-color: #000;
}
.profile-modal .postboard
{
margin-left: 0;

12
css/style.css

@ -705,14 +705,18 @@ input.userMenu-search-field:focus::-ms-input-placeholder { @@ -705,14 +705,18 @@ input.userMenu-search-field:focus::-ms-input-placeholder {
margin-right: 55px;
background: #6d83bd url(../img/dm.png) no-repeat 10px 3px;
}
.post-submit {
background: #6d83bd url(../img/pen.png) no-repeat 10px 3px;
}
.post .post-submit {
margin-right: 16px;
background: #6d83bd url(../img/pen.png) no-repeat 10px 3px;
}
.mini-profile .post-submit {
background: #6d83bd url(../img/pen.png) no-repeat 10px 3px;
margin-right: 0;
}
.reply .post-submit {
margin-right: 35px;
}
.post-submit.disabled {
opacity: .6;
-webkit-transition: all 200ms;
@ -2029,4 +2033,8 @@ ul.dropdown-menu img { @@ -2029,4 +2033,8 @@ ul.dropdown-menu img {
p.post-text img {
width: 20px;
height: 20px;
}
.reply textarea{
margin-top: 20px;
}

5
home.html

@ -368,7 +368,6 @@ @@ -368,7 +368,6 @@
<div id="reply-modal-template">
<div class="post-area">
<form class="post-area-new open">
<p>test</p>
<textarea placeholder="New Post..."></textarea>
<div class="post-area-extras">
<span class="post-area-remaining">140</span>
@ -464,10 +463,10 @@ @@ -464,10 +463,10 @@
<div class="postboard">
<h2>
<span>Posts</span>
<!-- o botão de novas postagens deve ser ocultado quando o usuário clicá-lo via javascript -->
<!--o botão de novas postagens deve ser ocultado quando o usuário clicá-lo via javascript-->
<button class="postboard-news" style="display:none;"></button>
</h2>
<div id="separator"></div>
<ol id="profile-posts" class="postboard-posts">
</ol>

Loading…
Cancel
Save