diff options
author | Tom <tw201207@gmail.com> | 2014-11-06 22:53:38 +0100 |
---|---|---|
committer | Tom <tw201207@gmail.com> | 2014-11-06 22:53:38 +0100 |
commit | 6e55f53a790145dbbe78b8860004e4743e47acf1 (patch) | |
tree | 45de1ddc6fb17a2da29e72914f2c9f2d6e7e4c1d /src | |
parent | 8fa8cbcf9db40fea41d7a555c86428aede7f25e8 (diff) | |
download | gitblit-6e55f53a790145dbbe78b8860004e4743e47acf1.tar.gz gitblit-6e55f53a790145dbbe78b8860004e4743e47acf1.zip |
Add min-width in .diff-line CSS
To ensure the line number columns never get squashed.
Diffstat (limited to 'src')
-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 65248086..1064231c 100644 --- a/src/main/resources/gitblit.css +++ b/src/main/resources/gitblit.css @@ -1402,6 +1402,7 @@ div.diff > table { padding-left: 2px;
padding-right: 2px;
width: 3em; /* Font-size relative! */
+ min-width: 3em;
}
.diff-line:before {
|