diff options
author | Vitaly Takmazov | 2017-08-30 09:19:24 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-08-30 09:19:24 +0300 |
commit | 49b10c518986ffd2f4787659411420155c974cc9 (patch) | |
tree | 7ff8e291b3bad3ce01f0a97f183ce8561ea5545e /juick-www/src/main | |
parent | 7c5469465b363505b9bdcf1cd0057d1c05f6b475 (diff) |
www: new message fixes
Diffstat (limited to 'juick-www/src/main')
-rw-r--r-- | juick-www/src/main/static/style.css | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/juick-www/src/main/static/style.css b/juick-www/src/main/static/style.css index 354c786f..ab6f7500 100644 --- a/juick-www/src/main/static/style.css +++ b/juick-www/src/main/static/style.css @@ -168,9 +168,8 @@ body > header p { border: 1px solid #CCC; margin: 0 0 5px 0; min-height: 14pt; - padding: 4px; resize: vertical; - width: 688px; + width: 100%; } #newmessage input { border: 1px solid #CCC; @@ -605,8 +604,12 @@ q { #dialogw { z-index: 11; position: relative; - max-height: 90%; max-width: 90%; + max-height: calc(100% - 100px); + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); } #dialogw a { display: block; |