diff options
| author | Lars Hjemli <hjemli@gmail.com> | 2011-05-23 23:29:24 +0200 | 
|---|---|---|
| committer | Lars Hjemli <hjemli@gmail.com> | 2011-05-23 23:29:24 +0200 | 
| commit | 2ffeecb7a6827dcf0f81cf543ed312155f6e8f83 (patch) | |
| tree | 328117f4fe71862b7432359b4d6a7237affd42fe /cgit.c | |
| parent | Merge branch 'fh/filter-api' (diff) | |
| parent | ui-stats.c: create a control panel for stat options (diff) | |
| download | cgit-2ffeecb7a6827dcf0f81cf543ed312155f6e8f83.tar.gz cgit-2ffeecb7a6827dcf0f81cf543ed312155f6e8f83.tar.bz2 cgit-2ffeecb7a6827dcf0f81cf543ed312155f6e8f83.zip  | |
Merge branch 'lh/panel'
Diffstat (limited to '')
| -rw-r--r-- | cgit.css | 27 | 
1 files changed, 27 insertions, 0 deletions
@@ -331,6 +331,33 @@ table.commit-info {  	margin-top: 1.5em;  } +div.cgit-panel { +	float: right; +	margin-top: 1.5em; +} + +div.cgit-panel table { +	border-collapse: collapse; +	border: solid 1px #aaa; +	background-color: #eee; +} + +div.cgit-panel th { +	text-align: center; +} + +div.cgit-panel td { +	padding: 0.25em 0.5em; +} + +div.cgit-panel td.label { +	padding-right: 0.5em; +} + +div.cgit-panel td.ctrl { +	padding-left: 0.5em; +} +  table.commit-info th {  	text-align: left;  	font-weight: normal;  |