Changeset - 97024490fbe6
[Not reviewed]
0 1 0
Denver Gingerich - 12 years ago 2012-04-29 22:27:22
denver@ossguy.com
remove 32767px margin/padding values in main CSS

Several element id's were set to use "padding-bottom: 32767px;" and
"margin-bottom: -32767px;". This caused element targets (such as
http://sfconservancy.org/about/staff/#denver ) to be rendered poorly
in most browsers, by preventing the user from scrolling up. Removing
these lines appears to fix the rendering issue with no side effects
(in limited testing of the Staff page).

This change effectively reverts parts of 450ea2c and ed954b7 as the
32767px values were added in those commits.
1 file changed with 1 insertions and 9 deletions:
0 comments (0 inline, 0 general)
www/conservancy/static/conservancy.css
Show inline comments
...
 
@@ -83,20 +83,16 @@ h3 { margin-top: .6em; margin-bottom: .4em; }
 
    overflow: hidden;
 
}
 
#container #mainContent {
 
    background: #fffff;
 
    margin-left: 210px;
 
    margin-right: 50px;
 
    padding-bottom: 32767px;
 
    margin-bottom: -32767px;
 
}
 
#container #sidebar {
 
    width: 200px;
 
    float: left;
 
    padding-bottom: 32767px;
 
    margin-bottom: -32767px;
 
    background-color: #ccd4a3; 
 
}
 

	
 
#container #sidebar li {
 
    text-align: center;
 
    list-style: none;
...
 
@@ -144,20 +140,16 @@ h3 { margin-top: .6em; margin-bottom: .4em; }
 
    width: 100%;
 
    overflow: hidden;
 
}
 

	
 
.column-small {
 
    width: 31%;
 
    padding-bottom: 32767px;
 
    margin-bottom: -32767px;
 
 }
 
.column-large {
 
    margin-left: 35%;
 
    margin-right: 50px;
 
    padding-bottom: 32767px;
 
    margin-bottom: -32767px;
 
}
 

	
 
.column-left { float: left; }
 
.column-right { float: right; }
 

	
 
.column h2 { font-size: 1.25em; }
...
 
@@ -234,7 +226,7 @@ body.conservancy-blog #navbar ul li.blog a,
 
body.conservancy-About #navbar ul li.About a,
 
body.conservancy-donate #navbar ul li.donate a /* NO COMMA HERE! */
 
{ 
 
    color: #000033;
 
    font-weight: bold;
 
    background: #fff url(/img/nav-bg-up.png) top repeat-x;
 
}
...
 
\ No newline at end of file
 
}
0 comments (0 inline, 0 general)