git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] gitweb: Add padding to project's README on "summary" page
@ 2007-03-27 23:20 Jakub Narebski
  0 siblings, 0 replies; only message in thread
From: Jakub Narebski @ 2007-03-27 23:20 UTC (permalink / raw)
  To: git; +Cc: Jakub Narebski

Add padding to (optional) project's README on "summary" page (taken
from README.html in project's GIT_DIR), to make it line out with the
rest of the page.

It is done by adding a wrapper div element around README contents,
with "readme" class, and CSS rule for div.readme; it fixes layout,
but probably should be refactored during gitweb CSS cleanup.

Signed-off-by: Jakub Narebski <jnareb@gmail.com>
---
 gitweb/gitweb.css  |    4 ++++
 gitweb/gitweb.perl |    2 ++
 2 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/gitweb/gitweb.css b/gitweb/gitweb.css
index 5e40292..cbe8c11 100644
--- a/gitweb/gitweb.css
+++ b/gitweb/gitweb.css
@@ -76,6 +76,10 @@ div.page_body {
 	font-family: monospace;
 }
 
+div.readme {
+	padding: 8px;
+}
+
 div.title, a.title {
 	display: block;
 	padding: 6px 8px;
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 3786955..4f34c29 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -3063,7 +3063,9 @@ sub git_summary {
 	if (-s "$projectroot/$project/README.html") {
 		if (open my $fd, "$projectroot/$project/README.html") {
 			print "<div class=\"title\">readme</div>\n";
+			print "<div class=\"readme\">\n";
 			print $_ while (<$fd>);
+			print "</div>\n"; # class="readme"
 			close $fd;
 		}
 	}
-- 
1.5.0.5

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2007-03-27 23:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-27 23:20 [PATCH] gitweb: Add padding to project's README on "summary" page Jakub Narebski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).