diff options
author | Wanfung Joshua Lee <cloudwindhk@gmail.com> | 2015-01-05 21:36:58 -0800 |
---|---|---|
committer | Wanfung Joshua Lee <cloudwindhk@gmail.com> | 2015-01-05 21:36:58 -0800 |
commit | 33a510685706549fcf61f78021ce7099ea23e067 (patch) | |
tree | 0362e296c9f4bdbcb0e5727518ec6c7d2a616890 | |
parent | d884c210049b59b4cfcbb2c9bd162595acad7204 (diff) | |
download | gitlab-ce-33a510685706549fcf61f78021ce7099ea23e067.tar.gz |
fix event-last-push message's styling on mobile [ci skip]
-rw-r--r-- | app/assets/stylesheets/sections/events.scss | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/assets/stylesheets/sections/events.scss b/app/assets/stylesheets/sections/events.scss index 93ad17f57c0..3c3a0d92c6e 100644 --- a/app/assets/stylesheets/sections/events.scss +++ b/app/assets/stylesheets/sections/events.scss @@ -145,8 +145,12 @@ * Last push widget */ .event-last-push { + overflow: auto; .event-last-push-text { - @include str-truncated(75%); + @include str-truncated(100%); + float:left; + margin-right: -150px; + padding-right: 150px; line-height: 24px; } } |