Commit bdaaa5b9a0088212b933bc99b7edb30bef3aaf44
- Date: Mon Apr 28 20:48:04 +0000 2008
- Committer: Johan Sørensen (johan@johansorensen.com)
- Author: Johan Sørensen (johan@johansorensen.com)
- Commit SHA1: bdaaa5b9a0088212b933bc99b7edb30bef3aaf44
- Tree SHA1: 92f6a4a86d0c7fa6267979fd5a22d97528e39de1
fix submenu positioning in webkit
Commit diff
| |   |
| 1 | 1 | new-ui: |
| 2 | | * Fix menu bottom spacing issue in safari |
| 3 | 2 | * Clone stats graph on repositories#index |
| 4 | 3 | * divergence from mainline in +/- |
| 5 | 4 | * popular & active projects on frontpage |
| toggle raw diff |
--- a/TODO.txt
+++ b/TODO.txt
@@ -1,5 +1,4 @@
new-ui:
-* Fix menu bottom spacing issue in safari
* Clone stats graph on repositories#index
* divergence from mainline in +/-
* popular & active projects on frontpage |
| |   |
| 141 | 141 | background: #292929; |
| 142 | 142 | padding-left: 20px; |
| 143 | 143 | height: 125px; |
| 144 | /* overflow:hidden;*/ |
| 144 | 145 | } |
| 145 | 146 | |
| 146 | 147 | #header #logo { |
| 147 | 148 | padding: 10px 0 15px 0; |
| 148 | | line-height: 100%; |
| 149 | line-height: 25px; |
| 149 | 150 | margin:0; |
| 151 | border:0; |
| 150 | 152 | } |
| 151 | 153 | #header #logo a { color: #666; } |
| 152 | 154 | |
| 155 | #header #project_title { |
| 156 | font-size: 19px; |
| 157 | line-height: 19px; |
| 158 | margin: 0 0 17px 0; |
| 159 | padding: 0; |
| 160 | } |
| 153 | 161 | #header #project_title a { |
| 154 | 162 | color: #aaa; |
| 155 | 163 | letter-spacing: 0.05em; |
| … | … | |
| 318 | 318 | } |
| 319 | 319 | |
| 320 | 320 | #submenu li a { |
| 321 | float:none; |
| 321 | 322 | font-size: 12px; |
| 322 | 323 | background: #555; |
| 323 | 324 | color: #fff; |
| toggle raw diff |
--- a/public/stylesheets/base.css
+++ b/public/stylesheets/base.css
@@ -141,15 +141,23 @@ abbr {
background: #292929;
padding-left: 20px;
height: 125px;
+/* overflow:hidden;*/
}
#header #logo {
padding: 10px 0 15px 0;
- line-height: 100%;
+ line-height: 25px;
margin:0;
+ border:0;
}
#header #logo a { color: #666; }
+#header #project_title {
+ font-size: 19px;
+ line-height: 19px;
+ margin: 0 0 17px 0;
+ padding: 0;
+}
#header #project_title a {
color: #aaa;
letter-spacing: 0.05em;
@@ -310,6 +318,7 @@ abbr {
}
#submenu li a {
+ float:none;
font-size: 12px;
background: #555;
color: #fff; |