diff options
author | Lars Hjemli | 2011-02-19 14:01:59 +0100 |
---|---|---|
committer | Lars Hjemli | 2011-02-19 14:01:59 +0100 |
commit | 31e1f9af1d46bd7dfdb3b2ac580c0d0cc8dbaa63 (patch) | |
tree | 26200ad3c376ea1208d2a870ebb3b2bc6d7abee6 /cgit.css | |
parent | e66a16cebcdac53b63e77876acef1ca9e4877038 (diff) | |
parent | c2bfd40f8aaaa69a66c6eb729c202e42a43ec166 (diff) | |
download | cgit-31e1f9af1d46bd7dfdb3b2ac580c0d0cc8dbaa63.tar.gz cgit-31e1f9af1d46bd7dfdb3b2ac580c0d0cc8dbaa63.tar.bz2 cgit-31e1f9af1d46bd7dfdb3b2ac580c0d0cc8dbaa63.zip |
Merge branch 'jh/graph'
* jh/graph:
ui-log: Move 'Age' column when commit graph is present
ui-log: Line-wrap long commit subjects when showmsg is enabled
ui-log: Colorize commit graph
ui-log: Implement support for commit graphs
ui-log: Change display of full commit messages (and notes)
Conflicts:
cgit.css
Diffstat (limited to 'cgit.css')
-rw-r--r-- | cgit.css | 40 |
1 files changed, 29 insertions, 11 deletions
@@ -153,26 +153,44 @@ table.list td { | |||
153 | padding: 0.1em 0.5em 0.1em 0.5em; | 153 | padding: 0.1em 0.5em 0.1em 0.5em; |
154 | } | 154 | } |
155 | 155 | ||
156 | table.list td.logsubject { | 156 | table.list td.commitgraph { |
157 | font-family: monospace; | 157 | font-family: monospace; |
158 | font-weight: bold; | 158 | white-space: pre; |
159 | } | 159 | } |
160 | 160 | ||
161 | table.list td.logmsg { | 161 | table.list td.commitgraph .column1 { |
162 | font-family: monospace; | 162 | color: #a00; |
163 | white-space: pre; | 163 | } |
164 | padding: 1em 0.5em 2em 0.5em; | 164 | |
165 | table.list td.commitgraph .column2 { | ||
166 | color: #0a0; | ||
167 | } | ||
168 | |||
169 | table.list td.commitgraph .column3 { | ||
170 | color: #aa0; | ||
165 | } | 171 | } |
166 | 172 | ||
167 | table.list td.lognotes-label { | 173 | table.list td.commitgraph .column4 { |
168 | text-align:right; | 174 | color: #00a; |
169 | vertical-align:top; | ||
170 | } | 175 | } |
171 | 176 | ||
172 | table.list td.lognotes { | 177 | table.list td.commitgraph .column5 { |
178 | color: #a0a; | ||
179 | } | ||
180 | |||
181 | table.list td.commitgraph .column6 { | ||
182 | color: #0aa; | ||
183 | } | ||
184 | |||
185 | table.list td.logsubject { | ||
186 | font-family: monospace; | ||
187 | font-weight: bold; | ||
188 | } | ||
189 | |||
190 | table.list td.logmsg { | ||
173 | font-family: monospace; | 191 | font-family: monospace; |
174 | white-space: pre; | 192 | white-space: pre; |
175 | padding: 0em 0.5em 2em 0.5em; | 193 | padding: 0 0.5em; |
176 | } | 194 | } |
177 | 195 | ||
178 | table.list td a { | 196 | table.list td a { |