diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-10-30 13:34:47 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-10-30 13:36:34 +0100 |
commit | fb7692cf9c9a78d8a9ab39ee0926d864397f390d (patch) | |
tree | 0d5f743386bf1afd43f0f994f04dd8cbd3b2dd0d | |
parent | a532bd9cf1805bad7f07856f92d957728792506e (diff) | |
download | volse-hubzilla-fb7692cf9c9a78d8a9ab39ee0926d864397f390d.tar.gz volse-hubzilla-fb7692cf9c9a78d8a9ab39ee0926d864397f390d.tar.bz2 volse-hubzilla-fb7692cf9c9a78d8a9ab39ee0926d864397f390d.zip |
fix https://zothub.de/display/9d9078d212862c5f58
-rw-r--r-- | view/css/conversation.css | 2 | ||||
-rwxr-xr-x | view/tpl/jot-header.tpl | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/view/css/conversation.css b/view/css/conversation.css index 7ecd41627..9272ed3f6 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -36,7 +36,7 @@ display: inherit; } -#profile-jot-text:focus { +#profile-jot-text.jot-expanded { resize: vertical; } diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index ac657e63f..edabee2da 100755 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -26,6 +26,7 @@ function initEditor(cb){ 'transition' : 'elastic' }); $(".jothidden").show(); + $("#profile-jot-text").addClass('jot-expanded'); if (typeof cb!="undefined") cb(); if(pretext.length) addeditortext(pretext); |