diff --git a/themes/alps/assets/print.css b/themes/alps/assets/print.css new file mode 100644 index 0000000..dd23d82 --- /dev/null +++ b/themes/alps/assets/print.css @@ -0,0 +1,10 @@ +header, +aside, +.actions, +.tabs { + display: none; +} + +.message { + padding: 0; +} diff --git a/themes/alps/assets/print.js b/themes/alps/assets/print.js new file mode 100644 index 0000000..c4379ad --- /dev/null +++ b/themes/alps/assets/print.js @@ -0,0 +1,6 @@ +const print = document.getElementById("print"); +print.style.display = "inherit"; +print.addEventListener("click", e => { + e.preventDefault(); + window.print(); +}); diff --git a/themes/alps/head.html b/themes/alps/head.html index c2d5130..c0b726d 100644 --- a/themes/alps/head.html +++ b/themes/alps/head.html @@ -9,5 +9,6 @@ {{end -}} {{.GlobalData.Title}} + diff --git a/themes/alps/message.html b/themes/alps/message.html index 28287ab..8d6c425 100644 --- a/themes/alps/message.html +++ b/themes/alps/message.html @@ -78,7 +78,7 @@ - + {{if .Message.HasFlag "\\Draft"}} Edit draft {{else}} @@ -86,6 +86,15 @@ Forward {{end}} + + + + @@ -204,5 +213,6 @@ + {{template "foot.html"}}