diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-01-18 20:11:17 -0800 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-01-18 20:11:17 -0800 |
commit | a5f5849340b4ad38da21fcada446ef3eb01872b5 (patch) | |
tree | 19cc513aa8824ad5b55fe20183fefc941821c3c3 | |
parent | 85c0ce2e1a2f99de2e7155026cd97d5fe9765018 (diff) | |
download | gitlab-ce-a5f5849340b4ad38da21fcada446ef3eb01872b5.tar.gz |
Dont allow event content to overflow it UI limits
-rw-r--r-- | app/assets/stylesheets/sections/events.scss | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/assets/stylesheets/sections/events.scss b/app/assets/stylesheets/sections/events.scss index 3c3a0d92c6e..9582c995980 100644 --- a/app/assets/stylesheets/sections/events.scss +++ b/app/assets/stylesheets/sections/events.scss @@ -55,11 +55,12 @@ } .event-body { margin-left: 35px; - margin-right: 100px; + margin-right: 80px; color: #777; .event-note { margin-top: 5px; + word-wrap: break-word; .md { font-size: 13px; @@ -71,6 +72,7 @@ border-radius: 0; color: #777; margin: 0 20px; + overflow: hidden; } .note-image-attach { |