Merge pull request #802 from ExocTBlid/master

Printing CSS
This commit is contained in:
Sunny Ripert
2014-02-04 14:05:15 -08:00
2 changed files with 15 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
/*
print.css
Removes the action buttons at the top and
the delete link at the bottom for better printing.
*/
ul.actions {
display: none;
}
#delete-link {
display: none;
}
+1
View File
@@ -6,6 +6,7 @@
<link rel="stylesheet" type="text/css" href="{{base_url}}/css/editor.css" media="all">
<link rel="stylesheet" type="text/css" href="{{base_url}}/css/dialog.css" media="all">
<link rel="stylesheet" type="text/css" href="{{base_url}}/css/template.css" media="all">
<link rel="stylesheet" type="text/css" href="{{base_url}}/css/print.css" media="print">
{{#css}}<link rel="stylesheet" type="text/css" href="{{base_url}}/custom.css" media="all">{{/css}}
{{#noindex}}<meta name="robots" content="noindex, nofollow" />{{/noindex}}