1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-26 16:51:46 -07:00

Format the glossary index in two colummns.

Copied from Perforce
 Change: 186321
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Gareth Rees 2014-05-27 21:52:25 +01:00
parent 5687586582
commit 29d6c2b70e
3 changed files with 46 additions and 4 deletions

View file

@ -33,6 +33,9 @@ Memory Management Glossary
w
z
All
===
:term:`absolute address <physical address>`
:term:`activation frame <activation record>`
:term:`activation record`

View file

@ -2,6 +2,11 @@
@import url('scrolls.css');
sup {
vertical-align: top;
font-size: 80%;
}
dl.glossary dt {
font-family: {{ theme_headfont }};
}
@ -135,7 +140,22 @@ div#home h1 + p {
padding-top: 15px;
}
div#memory-management-glossary em.xref.std-term {
white-space: nowrap;
margin-right: 1em;
/* Format the glossary index in two columns. */
div#memory-management-glossary div#all {
-webkit-columns: 2;
-moz-columns: 2;
-o-columns: 2;
-ms-columns: 2;
columns: 2;
padding-top: 1em;
}
div#memory-management-glossary div#all h2 {
display: none;
}
div#memory-management-glossary div#all a.reference.internal:after {
content: "\A";
white-space: pre;
}

View file

@ -188,7 +188,7 @@ p.glossary-alphabet {
}
sup {
vertical-align: 20%;
vertical-align: top;
font-size: 80%;
}
@ -220,3 +220,22 @@ li.toctree-l1, li.toctree-l2, li.toctree-l3 {
padding-top: 0 !important;
}
/* Format the glossary index in two columns. */
div#memory-management-glossary div#all {
-webkit-columns: 2;
-moz-columns: 2;
-o-columns: 2;
-ms-columns: 2;
columns: 2;
padding-top: 1em;
}
div#memory-management-glossary div#all h2 {
display: none;
}
div#memory-management-glossary div#all a.reference.internal:after {
content: "\A";
white-space: pre;
}