diff options
author | Tayane Fernandes <tayane.rmf@gmail.com> | 2016-12-19 16:08:30 -0200 |
---|---|---|
committer | Tayane Fernandes <tayane.rmf@gmail.com> | 2016-12-19 16:14:18 -0200 |
commit | 92578430b99ea1beff71f7be38f2734758a6767d (patch) | |
tree | d42203d9e0ed80bf334278f3ac4ba6db4243f46e /web-ui | |
parent | 0c2a1ee3264b4f7e4565bcf4d2b49be90fca845f (diff) |
[#847] Fixes the "Body" placeholder issue that isn't moving to body when clicked
The hidden label was overlapping the placeholder and this was preventing the
user to click
Diffstat (limited to 'web-ui')
-rw-r--r-- | web-ui/app/scss/views/_compose-view.scss | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/web-ui/app/scss/views/_compose-view.scss b/web-ui/app/scss/views/_compose-view.scss index 9e120357..61e785a0 100644 --- a/web-ui/app/scss/views/_compose-view.scss +++ b/web-ui/app/scss/views/_compose-view.scss @@ -151,12 +151,14 @@ transition: all 0.1s linear; opacity: 0; font-weight: bold; + display: none; } label.showfloatlabel { color: $light_blue !important; top: -0.3rem; opacity: 1; + display: block; } input, textarea { |