Looks like UA detection is necessary for CSS

This commit is contained in:
Eston Bond
2010-10-25 16:52:31 -07:00
parent 1227dd6841
commit d0b793366f
4 changed files with 92 additions and 4 deletions
+59
View File
@@ -179,8 +179,62 @@ a:hover, a:visited {
/* @section footer */
#wiki-footer {
clear: both;
margin: 2em 0 5em;
}
.has-rightbar #wiki-footer {
width: 70%;
}
#wiki-footer #footer-content {
background-color: #f7f7f7;
border: 1px solid #ddd;
font-size: 1.2em;
line-height: 1.5em;
margin-top: 1.5em;
padding: 1em;
border-radius: 0.5em;
-moz-border-radius: 0.5em;
-webkit-border-radius: 0.5em;
}
#wiki-footer #footer-content h3 {
font-size: 1.2em;
color: #333;
margin: 0;
padding: 0 0 0.2em;
text-shadow: 0 1px 0 #fff;
}
#wiki-footer #footer-content p {
margin: 0.5em 0 0;
padding: 0;
}
#wiki-footer #footer-content ul.links {
margin: 0.5em 0 0;
overflow: hidden;
padding: 0;
}
#wiki-footer #footer-content ul.links li {
color: #999;
float: left;
list-style-position: inside;
list-style-type: square;
padding: 0;
margin-left: 0.6em;
}
#wiki-footer #footer-content ul.links li:first-child {
list-style-type: none;
margin: 0;
}
.ff #wiki-footer #footer-content ul.links li:first-child {
margin: 0 -0.6em 0 0;
}
/* @section page-footer */
#footer {
@@ -192,4 +246,9 @@ a:hover, a:visited {
#footer p#last-edit {
color: #999;
margin: 0.9em 0;
}
#footer p#last-edit span.username {
font-weight: bold;
}
+4
View File
@@ -7,6 +7,10 @@
margin-bottom: 4em; /* Give it some breathing room */
}
.has-footer #template {
margin: 0;
}
#template p {
font-size: 1.4em;
line-height: 1.6em;
+15
View File
@@ -0,0 +1,15 @@
// ua
$(document).ready(function() {
if ($.browser.mozilla) {
$('body').addClass('ff');
} else if ($.browser.webkit) {
$('body').addClass('webkit');
} else if ($.browser.msie) {
$('body').addClass('ie');
if ($.browser.version == "7.0") {
$('body').addClass('ie7');
} else if ($.browser.version == "8.0") {
$('body').addClass('ie8');
}
}
});
+14 -4
View File
@@ -20,7 +20,7 @@
</ul>
</div>
<div id="wiki-content">
<div class="has-rightbar">
<div class="has-rightbar has-footer">
<div id="wiki-body">
<div id="inline-comment">
<ul>
@@ -100,17 +100,27 @@
</ul>
</div>
</div>
</div>
<div id="wiki-footer">
<p>I have no idea what goes here yet.</p>
<div id="footer-content">
<h3>Footer heading</h3>
<p>What goes in the footer?</p>
<ul class="links">
<li><a href="javascript:void(0);">Something 1</a></li>
<li><a href="javascript:void(0);">Something 2</a></li>
<li><a href="javascript:void(0);">Something 3</a></li>
</ul>
</div>
</div>
</div>
</div>
<div id="footer">
<p id="last-edit">Last edited by <span>username</span>, 13:20:21 GMT</p>
<p id="last-edit">Last edited by <span class="username">username</span>, 13:20:21 GMT</p>
</div>
</div>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/gollum.js"></script>
<script type="text/javascript" src="js/gollum.editor.js"></script>
</body>
</html>