]> git.mxchange.org Git - friendica.git/commitdiff
Text box alignment in Smoothly theme
authorOlaf Conradi <olaf@conradi.org>
Wed, 19 Dec 2012 17:27:50 +0000 (18:27 +0100)
committerOlaf Conradi <olaf@conradi.org>
Wed, 19 Dec 2012 17:27:50 +0000 (18:27 +0100)
Make sure comment text boxes stay within their surrounding box.

view/theme/smoothly/style.css

index 80e42dd6172d47f3f00793cb8c91fbc135cd9230..847b5ced58740d5b77bc9c938c940481f1dd9c67 100644 (file)
@@ -1780,7 +1780,8 @@ code {
 }
 
 .comment-edit-text-empty { 
-       width: 672px; /*80%*/
+       width: 98%;
+       max-width: 672px;
        height: 20px;
        color: #babdb6;
        transition: all 0.5s ease-in-out;       
@@ -1793,7 +1794,8 @@ code {
 }
 
 .comment-edit-text-full { 
-       width: 670px; 
+       width: 98%;
+       max-width: 672px;
        height: 6em;
        transition: all 0.5s ease-in-out;       
                -webkit-transition: all 0.5s ease-in-out;
@@ -1801,7 +1803,8 @@ code {
 }
 
 .comment-edit-submit-wrapper { 
-       width: 670px; 
+       width: 98%;
+       max-width: 672px;
        margin-left: 20px; 
        text-align: left; 
 }