From cc0c8a19476058b4fecc9b08dcb46ca534fe2996 Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Wed, 21 Jun 2017 17:43:25 +0200 Subject: [PATCH] doc: introduce memtitle class Our doc builder at doc.riot-os.org was updated and now the documentation looks weird (see http://doc.riot-os.org/group__core__msg.html#gad1353dec9af776d4caf5f4e00cec112e e.g.). This fixes that. --- doc/doxygen/src/css/riot.css | 3 +++ doc/doxygen/src/css/riot.less | 3 +++ 2 files changed, 6 insertions(+) diff --git a/doc/doxygen/src/css/riot.css b/doc/doxygen/src/css/riot.css index b3ae159841..be7ce3891d 100644 --- a/doc/doxygen/src/css/riot.css +++ b/doc/doxygen/src/css/riot.css @@ -279,6 +279,9 @@ table.directory { .navpath li.navelem a { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } +.memtitle { + display: none; +} .memitem { margin-bottom: 20px; background-color: #ffffff; diff --git a/doc/doxygen/src/css/riot.less b/doc/doxygen/src/css/riot.less index 8a07b5fca6..a42d6fce43 100644 --- a/doc/doxygen/src/css/riot.less +++ b/doc/doxygen/src/css/riot.less @@ -266,6 +266,9 @@ table.directory { .navpath li.navelem a { font-family: @font-family-base; } +.memtitle { + display: none; +} .memitem { margin-bottom: 20px; background-color: @panel-bg;