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 {
background: #b2d67b; background: #b2d67b;
color: #fff; color: #fff;
} }
.profile-modal .separator {
height: 10px;
width: 100%;
background-color: #000;
}
.profile-modal .postboard .profile-modal .postboard
{ {
margin-left: 0; margin-left: 0;

12
css/style.css

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

5
home.html

@ -368,7 +368,6 @@
<div id="reply-modal-template"> <div id="reply-modal-template">
<div class="post-area"> <div class="post-area">
<form class="post-area-new open"> <form class="post-area-new open">
<p>test</p>
<textarea placeholder="New Post..."></textarea> <textarea placeholder="New Post..."></textarea>
<div class="post-area-extras"> <div class="post-area-extras">
<span class="post-area-remaining">140</span> <span class="post-area-remaining">140</span>
@ -464,10 +463,10 @@
<div class="postboard"> <div class="postboard">
<h2> <h2>
<span>Posts</span> <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> <button class="postboard-news" style="display:none;"></button>
</h2> </h2>
<div id="separator"></div>
<ol id="profile-posts" class="postboard-posts"> <ol id="profile-posts" class="postboard-posts">
</ol> </ol>

Loading…
Cancel
Save