diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-01-05 17:40:45 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-01-05 17:40:45 +0100 |
commit | a1b35fb7d13c610ac6923e6162dd163312160c9a (patch) | |
tree | ca6958f8673c19901fd9ab6a08955874768b5bd7 /view/css | |
parent | 0364bf491396c742d550fd6b0d22b929e3681432 (diff) | |
download | volse-hubzilla-a1b35fb7d13c610ac6923e6162dd163312160c9a.tar.gz volse-hubzilla-a1b35fb7d13c610ac6923e6162dd163312160c9a.tar.bz2 volse-hubzilla-a1b35fb7d13c610ac6923e6162dd163312160c9a.zip |
fix an issue with sticky_kit where input fields and textareas would blur on recalc. auto resize the notes textarea since if it sticks to the bottom it can not be properly resized
Diffstat (limited to 'view/css')
-rw-r--r-- | view/css/widgets.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/view/css/widgets.css b/view/css/widgets.css index abaf03038..9b97d8bf7 100644 --- a/view/css/widgets.css +++ b/view/css/widgets.css @@ -64,8 +64,9 @@ li:hover .widget-nav-pills-icons { #note-text { padding: 5px; width: 100%; - resize: vertical; + resize: none; min-height: 250px; + overflow: hidden; } /* saved searches */ |