Ver código fonte

docs RDT theme: fix bottom margin of lists items

List items with two ore more blocks are not well rendered. E.g. the gap
between last block (l1-b2) of the first list item and the following list
item (L2) is to small::

    * L1 xxxxxxxxxx
      xxxxxxxxxxxxx

      l1-b2 xxxxxxx
      xxxxxxxxxxxxx
    * L2 xxxxxxxxxx
      xxxxxxxxxxxxx

So that it can be read more liquidly, a distance was added to the last
block (l1-b2)::

    * L1 xxxxxxxxxx
      xxxxxxxxxxxxx

      l1-b2 xxxxxxx
      xxxxxxxxxxxxx

    * L2 xxxxxxxxxx
      xxxxxxxxxxxxx

Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Markus Heiser 8 anos atrás
pai
commit
916f677ada
1 arquivos alterados com 6 adições e 0 exclusões
  1. 6 0
      Documentation/sphinx-static/theme_overrides.css

+ 6 - 0
Documentation/sphinx-static/theme_overrides.css

@@ -56,6 +56,12 @@
 	font-family: "Courier New", Courier, monospace
 	font-family: "Courier New", Courier, monospace
     }
     }
 
 
+    /* fix bottom margin of lists items */
+
+    .rst-content .section ul li:last-child, .rst-content .section ul li p:last-child {
+          margin-bottom: 12px;
+    }
+
     /* inline literal: drop the borderbox, padding and red color */
     /* inline literal: drop the borderbox, padding and red color */
 
 
     code, .rst-content tt, .rst-content code {
     code, .rst-content tt, .rst-content code {