auxiliaries for making the synopsis with multilingual examples

This commit is contained in:
aarne
2010-12-11 20:47:53 +00:00
parent da670babaa
commit bbb79126b8
5 changed files with 196 additions and 25 deletions

26
lib/doc/revealpopup.css Normal file
View File

@@ -0,0 +1,26 @@
/* Popup boxes will have a light yellow background and a black border */
div.popup {
display: none;
background: #ffc;
border: 1px solid black;
}
div.expand { display: none }
div.reveal:hover div.popup {
display: block;
position: absolute;
margin-left: 3em;
}
.popup dl { margin: 5px; }
tr:hover div.expand {
display: block;
}
/* Just some optional color and border styles: */
body { background: #eee; }
table { border-collapse: collapse; }
td, th { padding: 5px; }
th { background: #9df; }
td { background: white }