diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-01-09 10:12:17 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-01-09 10:12:17 +0200 |
commit | a10c08c4c75ea2753b092e66b1daed7ffe23a0b6 (patch) | |
tree | 046cc66de9e15ddfde756d374e65fd482934634c | |
parent | 9e347d9a9d6d078cbde984c98b485d72d4bb5cd0 (diff) | |
download | gitlab-ce-a10c08c4c75ea2753b092e66b1daed7ffe23a0b6.tar.gz |
Fix tree table overflow
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-rw-r--r-- | app/assets/stylesheets/sections/tree.scss | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/assets/stylesheets/sections/tree.scss b/app/assets/stylesheets/sections/tree.scss index 00561a4d0f9..dfdcbb59b6b 100644 --- a/app/assets/stylesheets/sections/tree.scss +++ b/app/assets/stylesheets/sections/tree.scss @@ -49,6 +49,7 @@ .tree-item { .tree-item-file-name { + max-width: 320px; vertical-align: middle; a { &:hover { @@ -62,6 +63,10 @@ } } + .tree_commit { + max-width: 320px; + } + .tree_time_ago { min-width: 135px; } |