diff options
author | Sebastian Méric de Bellefon <arnaudpourseb@gmail.com> | 2016-05-16 12:30:40 -0400 |
---|---|---|
committer | Sebastian Méric de Bellefon <arnaudpourseb@gmail.com> | 2016-05-16 12:30:40 -0400 |
commit | 34f0794b3ac94a11ccdf97a1435f2b34284e2250 (patch) | |
tree | 01133442975c061a021e03d685e42beff7ff6632 | |
parent | cec21957001143794e71bcd9420283df18e7de40 (diff) | |
parent | 915a34be3c3a3872700763eb97ac811ef1109ef4 (diff) |
Merge pull request #502 from Helkafen/master
Fix #303. Hide footer when printing
-rw-r--r-- | haddock-api/resources/html/Classic.theme/xhaddock.css | 4 | ||||
-rw-r--r-- | haddock-api/resources/html/Ocean.std-theme/ocean.css | 3 | ||||
-rw-r--r-- | html-test/ref/ocean.css | 3 |
3 files changed, 10 insertions, 0 deletions
diff --git a/haddock-api/resources/html/Classic.theme/xhaddock.css b/haddock-api/resources/html/Classic.theme/xhaddock.css index ed231b5a..19dc28ec 100644 --- a/haddock-api/resources/html/Classic.theme/xhaddock.css +++ b/haddock-api/resources/html/Classic.theme/xhaddock.css @@ -116,6 +116,10 @@ ul.links li { cursor: pointer; } +@media print { + #footer { display: none; } +} + #package-header { color: #ffffff; padding: 5px 5px 5px 31px; diff --git a/haddock-api/resources/html/Ocean.std-theme/ocean.css b/haddock-api/resources/html/Ocean.std-theme/ocean.css index fcf23810..3ebb14de 100644 --- a/haddock-api/resources/html/Ocean.std-theme/ocean.css +++ b/haddock-api/resources/html/Ocean.std-theme/ocean.css @@ -183,6 +183,9 @@ pre { .keyword { font-weight: normal; } .def { font-weight: bold; } +@media print { + #footer { display: none; } +} /* @end */ diff --git a/html-test/ref/ocean.css b/html-test/ref/ocean.css index fcf23810..3ebb14de 100644 --- a/html-test/ref/ocean.css +++ b/html-test/ref/ocean.css @@ -183,6 +183,9 @@ pre { .keyword { font-weight: normal; } .def { font-weight: bold; } +@media print { + #footer { display: none; } +} /* @end */ |