diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-03-01 14:03:34 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-03-01 14:03:34 +0100 |
commit | 9d00db06b299e65e807d13d2df56ffdd1e2b5254 (patch) | |
tree | 5e664f388955211d863468781c72a393e198dea0 /view/theme | |
parent | 141f3e21b222b0eb5eae4580367c24825a963f5b (diff) | |
download | volse-hubzilla-9d00db06b299e65e807d13d2df56ffdd1e2b5254.tar.gz volse-hubzilla-9d00db06b299e65e807d13d2df56ffdd1e2b5254.tar.bz2 volse-hubzilla-9d00db06b299e65e807d13d2df56ffdd1e2b5254.zip |
fix resize issue
Diffstat (limited to 'view/theme')
-rw-r--r-- | view/theme/redbasic/css/style.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 0b583b5f6..2cf311baa 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1160,11 +1160,16 @@ img.mail-conv-sender-photo { } #profile-jot-text { - resize: vertical; + resize: none; border-width: 0px; border-radius: $radiuspx; } +#profile-jot-text:focus { + resize: vertical; +} + + #profile-jot-text::-webkit-input-placeholder { font-size:16px; } |