Fixed inline SVG in S5.
More S5 Stylesheet tweaks.
This commit is contained in:
parent
41ff4724b8
commit
6a7645c45c
5 changed files with 18 additions and 6 deletions
|
@ -3,3 +3,17 @@ math[display=block] {overflow:auto;}
|
|||
math { white-space: nowrap }
|
||||
.maruku-eq-number {float:right}
|
||||
.blockquotesource {margin-left:1em;}
|
||||
table.plaintable {
|
||||
border-collapse:collapse;
|
||||
margin-left:30px;
|
||||
border:0;
|
||||
}
|
||||
.plaintable td {border:1px solid #000; padding: 3px;}
|
||||
.plaintable th {padding: 3px;}
|
||||
.plaintable caption {
|
||||
font-weight: bold;
|
||||
font-size:1.1em;
|
||||
text-align:center;
|
||||
margin-left:30px;
|
||||
}
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ html>body div#controls {position: fixed; padding: 0; top: auto;}
|
|||
cursor: pointer;}
|
||||
#controls #navList #jumplist {background: #DDD; color: #272;}
|
||||
|
||||
#currentSlide {text-align: center; font-size: 0.5em; color: #494;}
|
||||
#currentSlide {text-align: center; font-size: 0.5em; color: #4E4;}
|
||||
|
||||
#slide0 {padding-top: 3.5em; font-size: 90%;}
|
||||
#slide0 h1 {position: static; margin: 1em 0 0; padding: 0;
|
||||
|
@ -75,7 +75,6 @@ html>body .external {border-bottom: none;}
|
|||
img.incremental {visibility: hidden;}
|
||||
.slide .current {color: #B02;}
|
||||
|
||||
|
||||
/* diagnostics
|
||||
|
||||
li:after {content: " [" attr(class) "]"; color: #F88;}
|
||||
|
|
|
@ -33,8 +33,8 @@ var isOp = navigator.userAgent.indexOf('Opera') > -1 ? 1 : 0;
|
|||
var isGe = navigator.userAgent.indexOf('Gecko') > -1 && navigator.userAgent.indexOf('Safari') < 1 ? 1 : 0;
|
||||
|
||||
function hasClass(object, className) {
|
||||
if (!object.className) return false;
|
||||
return (object.className.search('(^|\\s)' + className + '(\\s|$)') != -1);
|
||||
if (!object.className ||!object.getAttribute('class')) return false;
|
||||
return (object.getAttribute('class').search('(^|\\s)' + className + '(\\s|$)') != -1);
|
||||
}
|
||||
|
||||
function hasValue(object, value) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue