diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-06-11 12:35:08 +0200 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-06-11 12:35:08 +0200 |
commit | 216887490e3be0ba141484afc11d37475e91562d (patch) | |
tree | b1ba81dc991f06966713864525f6f993d3fa9e90 /client/components/activities | |
parent | 765b0168eaaeb28550dfb698de0b6cec9f9c2113 (diff) | |
download | wekan-216887490e3be0ba141484afc11d37475e91562d.tar.gz wekan-216887490e3be0ba141484afc11d37475e91562d.tar.bz2 wekan-216887490e3be0ba141484afc11d37475e91562d.zip |
Fix card title edition
Closes #184
Diffstat (limited to 'client/components/activities')
-rw-r--r-- | client/components/activities/comments.styl | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/client/components/activities/comments.styl b/client/components/activities/comments.styl new file mode 100644 index 00000000..f372e5ef --- /dev/null +++ b/client/components/activities/comments.styl @@ -0,0 +1,46 @@ +.new-comment + position: relative + margin: 0 0 20px 38px + + .member + opacity: .7 + position: absolute + top: 1px + left: -38px + + &.focus + .member + opacity: 1 + + .helper + display: inline-block + + .new-comment-input + min-height: 108px + color: #4d4d4d + cursor: auto + overflow: hidden + word-wrap: break-word + + .too-long + margin-top: 8px + +.new-comment-input + background-color: #fff + border: 0 + box-shadow: 0 1px 2px rgba(0, 0, 0, .23) + color: #8c8c8c + height: 36px + margin: 4px 4px 6px 0 + padding: 9px 11px + width: 100% + + &:hover, + &:focus + background-color: #fff + box-shadow: 0 1px 3px rgba(0, 0, 0, .33) + border: 0 + cursor: pointer + + &:focus + cursor: auto |