diff options
author | Tom <tw201207@gmail.com> | 2014-10-29 14:50:52 +0100 |
---|---|---|
committer | Tom <tw201207@gmail.com> | 2014-11-06 18:06:47 +0100 |
commit | 599827eff1cedf6141b15f7fdbbcfed4b23ae86a (patch) | |
tree | ccdd260d0fc2cad1c5967f0c7a1360a89c4c71c1 /src/main/resources | |
parent | f0ebfe6152959fda74bf7a5436bd765a0a231f6b (diff) | |
download | gitblit-599827eff1cedf6141b15f7fdbbcfed4b23ae86a.tar.gz gitblit-599827eff1cedf6141b15f7fdbbcfed4b23ae86a.zip |
CSS changes.
- As discussed:
- gutter a little lighter, context lines nearly but not quite
white.
- 2px left (and right) padding in the code column.
- I also noticed that somehow all lines were spaced vertically a little
wider than on dev.gitblit. Added cellpadding='0' to get the old line
height again.
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/gitblit.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/resources/gitblit.css b/src/main/resources/gitblit.css index f3982449..65248086 100644 --- a/src/main/resources/gitblit.css +++ b/src/main/resources/gitblit.css @@ -1363,7 +1363,7 @@ span.diff.hunk_section { .diff-cell {
margin: 0px;
- padding: 0px;
+ padding: 0 2px;
border: 0;
border-left: 1px solid #bbb;
}
@@ -1377,7 +1377,7 @@ span.diff.hunk_section { }
.context2 {
- background-color: #fbfbfb;
+ background-color: #FEFEFE;
}
.trailingws-add {
@@ -1396,7 +1396,7 @@ div.diff > table { }
.diff-line {
- background-color: #f0f0f0;
+ background-color: #fbfbfb;
text-align: center;
color: #999;
padding-left: 2px;
@@ -1409,7 +1409,7 @@ div.diff > table { }
.diff-state {
- background-color: #f0f0f0;
+ background-color: #fbfbfb;
text-align: center;
color: #999;
padding-left: 2px;
|