diff --git a/dev/_odoc-theme/manual.css b/dev/_odoc-theme/manual.css index 93adc548..92a1b438 100644 --- a/dev/_odoc-theme/manual.css +++ b/dev/_odoc-theme/manual.css @@ -4,7 +4,7 @@ /* Copyright (c) 2019 The odig programmers. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - odig v0.0.8 */ + odig v0.0.9 */ :root { --font-headings: "PT-Sans-Caption"; --font-body: "PT-Sans"; diff --git a/dev/_odoc-theme/odoc.css b/dev/_odoc-theme/odoc.css index cf97a3d4..1dbc9da2 100644 --- a/dev/_odoc-theme/odoc.css +++ b/dev/_odoc-theme/odoc.css @@ -175,6 +175,8 @@ code, pre color: var(--color-code-fg); overflow-wrap: anywhere; } +code span span { white-space: nowrap } /* Do not break these units */ + pre code { font-size: inherit } /* don't apply transform twice... */ a code { color: inherit } h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { text-transform: none; } @@ -259,13 +261,16 @@ a.anchor .spec.type { padding-left: 0; text-indent: 0 } .spec.type > a.anchor { padding-left: 1ch; padding-right: 1ch; /* values from a.anchor */ } - -.spec td > a.anchor, .spec > a.anchor +.spec li > a.anchor, .spec > a.anchor { padding-right: 0.5ch; padding-left: 2ch; } -.odoc-spec table { margin-top: 0 } -.odoc-spec .def-doc { padding-left: 1ch; } -.odoc-spec .def-doc *:first-child { margin-top: 0 } +.spec ol { margin:0; list-style-type: none; } +.spec li { margin-left: 0; padding-left: 4ch; text-indent: -4ch } +.spec li.record.field { margin-left: 2ch } + +.spec .def-doc { display: inline-block } +.spec .def-doc { padding-left: /* 4 + 3 */ 7ch; } +.spec .def-doc p { margin-left: -4ch; text-indent: 0 } .odoc-include summary { cursor: pointer } diff --git a/dev/containers-data/CCBitField/Make/argument-1-_/index.html b/dev/containers-data/CCBitField/Make/argument-1-_/index.html deleted file mode 100644 index 20f0f33a..00000000 --- a/dev/containers-data/CCBitField/Make/argument-1-_/index.html +++ /dev/null @@ -1,2 +0,0 @@ - -
Make._CCBitField.MakeCreate a new bitfield type
module _ : sig ... endGenerative type of bitfields. Each instantiation of the functor should create a new, incompatible type
val empty : tEmpty bitfields (all bits 0).
val mk_field : unit -> fieldMake a new field.
Prevent new fields from being added. From now on, creating a field will raise Frozen.
CCBitField.MakeCreate a new bitfield type
Generative type of bitfields. Each instantiation of the functor should create a new, incompatible type
val empty : tEmpty bitfields (all bits 0).
val mk_field : unit -> fieldMake a new field.
Prevent new fields from being added. From now on, creating a field will raise Frozen.
module type S = sig ... end