diff options
author | Jan Breuer <jan.breuer@mobatime.cz> | 2017-02-20 17:35:49 +0100 |
---|---|---|
committer | Jan Breuer <jan.breuer@mobatime.cz> | 2017-02-20 17:35:49 +0100 |
commit | e49d70def0db06a4df65d4d0631d79b2b433bdc1 (patch) | |
tree | 1fcb86452514d777ace79d5b47e1639cb84238e6 | |
parent | d54dc044acc6f359994230d506d7e1fe19413be4 (diff) | |
download | gitblit-e49d70def0db06a4df65d4d0631d79b2b433bdc1.tar.gz gitblit-e49d70def0db06a4df65d4d0631d79b2b433bdc1.zip |
Prevent last column on Tree page from wraping
With localizations, there can be longer text then 13em so there is a line break.
This fix prevent this line breaking and thus every line has normal height again.
-rw-r--r-- | src/main/resources/gitblit.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/resources/gitblit.css b/src/main/resources/gitblit.css index 10c9a0e8..5dabbec2 100644 --- a/src/main/resources/gitblit.css +++ b/src/main/resources/gitblit.css @@ -1963,6 +1963,7 @@ td.rightAlign { td.treeLinks {
text-align: right;
width: 13em;
+ white-space: nowrap;
}
span.help-inline {
|