From c94ab1230f28257b655c07f86cc33ac0c719e0aa Mon Sep 17 00:00:00 2001 From: "R. Steve McKown" Date: Thu, 17 Dec 2009 10:14:57 -0700 Subject: [PATCH] Git integration is looking quite good now. --- in/gitweb/git-logo.png | Bin 207 -> 273 bytes in/gitweb/githeader.md | 3 + in/gitweb/gitweb.css | 137 +++++++++++++++++++++++++++++++++++++++ in/style/bodyheader.tmpl | 35 ++++++++++ in/style/default.css | 4 +- in/style/none.tmpl | 5 ++ 6 files changed, 182 insertions(+), 2 deletions(-) create mode 100644 in/gitweb/githeader.md create mode 100644 in/style/bodyheader.tmpl create mode 100644 in/style/none.tmpl diff --git a/in/gitweb/git-logo.png b/in/gitweb/git-logo.png index f4ede2e944868b9a08401dafeb2b944c7166fd0a..63fc01da04b3895e3ae2d5dba623f7e09925c4a6 100644 GIT binary patch delta 222 zcmX@lIFV_Bgcu7m0|SHZ%`3V9@kFyn{q}Jz8y8oJcpkKgG!RyJVHV1_Xqv1~ zYozVsH$hj6(*>U#WA(j!(ot9IvGm2O>t1fl4(WazQ`0-|sJn=Dze?TrZ1!kD?nBP$ SkyC&+GI+ZBxvXC-NklotGhl0|P~i$)-spEt!DmG!4Oj(E`y{=&}QVPEVav`S8+sy%-3K4v`F-e93n=ACyP7?a2n|X$Q?(91Ro%p-ctYo000O{ KMNUMnLSTX@kv`b~ diff --git a/in/gitweb/githeader.md b/in/gitweb/githeader.md new file mode 100644 index 0000000..de487ab --- /dev/null +++ b/in/gitweb/githeader.md @@ -0,0 +1,3 @@ +title: OSS Projects Repository +template: bodyheader +ctime: 2009-12-17 diff --git a/in/gitweb/gitweb.css b/in/gitweb/gitweb.css index 40f6a02..3689284 100644 --- a/in/gitweb/gitweb.css +++ b/in/gitweb/gitweb.css @@ -1,3 +1,17 @@ +/* ============================================= + Clear - Accessibilty +================================================ */ + +* { + margin: 0; + padding: 0; + border: 0; +} + +/* ============================================= + Main Blocks +================================================ */ + body { font-family: sans-serif; font-size: small; @@ -6,6 +20,129 @@ body { color: #494949; } +/* ============================================= + Header +================================================ */ + +#header { + font-family: "Times New Roman", Times, serif; + font-size: 14px; + margin-bottom: 18px; + width: 955px; + margin-left: auto; + margin-right: auto; + padding: 16px 0; + height: 86px; +} + +#homeLink { + float: left; + width: 280px; + padding-right: 21px; +} + +#homeLink a .homeLinkText { + display: none; +} + +#homeLink a { + display: block; + width: 280px; + height: 86px; + background-image: url(/style/banner.jpg); + background-repeat: no-repeat; + background-position: 0px 5px; +} + +#homeLink a:hover { + background-position: 0px -112px; +} + +#homeLink a:active, +#homeLink.onClick a { + background-position: 0px -110px; +} + +/* ============================================= + Top Info +================================================ */ + +#topInfo { + float: right; +} + +#topInfo p { + color: #444444; + line-height: 18px; + margin-bottom: 18px; + text-align: right; +} + +#topInfo h2 { + color: #23292F; + font-size: 38px; + font-style: italic; + font-weight: normal; + margin-top: 6px; + line-height: 40px; + text-align: right; +} + +#topInfo a { + color: #4A80BE; + text-decoration: none; +} + +#topInfo a:hover { + text-decoration: underline; +} + + +/* ============================================= + Bread Crumbs +================================================ */ + +#breadCrumbs { + width: 100%; + float: right; + margin-top: 8px; + border-top: 1px solid #d4d4d4; +} + +#breadCrumbs p { + color: #444444; + line-height: 18px; + margin-top: 2px; + text-align: right; +} + +#breadCrumbs a { + color: #4A80BE; + text-decoration: none; +} + +#breadCrumbs a:hover { + text-decoration: underline; +} + + +/* ============================================= + Titles +================================================ */ + +h2 { + color: #23292F; + font-size: 38px; + font-style: italic; + font-weight: normal; + margin-top: 6px; + line-height: 40px; +} + +/* ============================================= + Original gitweb CSS, modified (body is at top) +================================================ */ + a { color: #4a80be; text-decoration: none; diff --git a/in/style/bodyheader.tmpl b/in/style/bodyheader.tmpl new file mode 100644 index 0000000..e3a3ef9 --- /dev/null +++ b/in/style/bodyheader.tmpl @@ -0,0 +1,35 @@ +<%def name="contents()">\ +${body} +\ +####################################################################### + diff --git a/in/style/default.css b/in/style/default.css index b51756b..3bca629 100644 --- a/in/style/default.css +++ b/in/style/default.css @@ -650,9 +650,9 @@ hr { #footer { margin: 18px 0 0 0; border-top: 1px solid #d4d4d4; - background-color: #F0F2F6; + //background-color: #F0F2F6; padding-bottom: 20px; - border-bottom: 1px solid #d4d4d4; + //border-bottom: 1px solid #d4d4d4; } #footerInner { diff --git a/in/style/none.tmpl b/in/style/none.tmpl new file mode 100644 index 0000000..9cba21f --- /dev/null +++ b/in/style/none.tmpl @@ -0,0 +1,5 @@ +<%def name="contents()">\ +${body} +\ +####################################################################### +${self.contents()} -- 2.39.2