From 88e1108f117581de492106db371185d9f8064e5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Fri, 20 Sep 2013 14:30:07 +0200 Subject: upgrading themes --- themes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'themes/default/css/print.css') diff --git a/themes b/themes index 689dcedf..c6406013 160000 --- a/themes +++ b/themes @@ -1 +1 @@ -Subproject commit 689dcedf8d6c7cf5e8424654fef4fd9687288dc1 +Subproject commit c6406013d58dc3808b2544356b28a4816ae9747a -- cgit v1.2.3 From dfbbc14b335925072f71fdd7ec630e0244fc3ad7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Thu, 3 Oct 2013 14:05:50 +0200 Subject: remove themes --- themes | 1 - 1 file changed, 1 deletion(-) delete mode 160000 themes (limited to 'themes/default/css/print.css') diff --git a/themes b/themes deleted file mode 160000 index c6406013..00000000 --- a/themes +++ /dev/null @@ -1 +0,0 @@ -Subproject commit c6406013d58dc3808b2544356b28a4816ae9747a -- cgit v1.2.3 From eb44ca42139c6d68698a6c87eddaa818e5079853 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Thu, 3 Oct 2013 14:06:20 +0200 Subject: embed themes with poche --- themes | 1 + 1 file changed, 1 insertion(+) create mode 160000 themes (limited to 'themes/default/css/print.css') diff --git a/themes b/themes new file mode 160000 index 00000000..e8f5283a --- /dev/null +++ b/themes @@ -0,0 +1 @@ +Subproject commit e8f5283a723b09164f24aa494baa965566328cc0 -- cgit v1.2.3 From 66e074b43dd4efc9f63c8fee784b99bcce51ab93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Thu, 3 Oct 2013 14:09:58 +0200 Subject: remove themes --- themes | 1 - 1 file changed, 1 deletion(-) delete mode 160000 themes (limited to 'themes/default/css/print.css') diff --git a/themes b/themes deleted file mode 160000 index e8f5283a..00000000 --- a/themes +++ /dev/null @@ -1 +0,0 @@ -Subproject commit e8f5283a723b09164f24aa494baa965566328cc0 -- cgit v1.2.3 From 4cc3c2ac1735196e4e6a18d1a1124cd0d9a0ed5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Thu, 3 Oct 2013 14:10:44 +0200 Subject: embed themes --- themes/default/css/print.css | 48 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 themes/default/css/print.css (limited to 'themes/default/css/print.css') diff --git a/themes/default/css/print.css b/themes/default/css/print.css new file mode 100644 index 00000000..9aefa779 --- /dev/null +++ b/themes/default/css/print.css @@ -0,0 +1,48 @@ +/* ### Layout ### */ + +body { + font-family: Serif; + background-color: #fff; +} + +@page { + margin: 1cm; +} + +img { + max-width: 100% !important; +} + +/* ### Content ### */ + +/* Hide useless blocks */ +body > header, +#links, +#sort, +body > footer, +.top_link, +div.tools, +header div, +.messages, +.entrie + .results { + display: none !important; +} + +article { + border: none !important; +} + +/* Add URL after links */ +.vieworiginal a:after { + content: " (" attr(href) ")"; +} + +/* Add explanation after abbr */ +abbr[title]:after { + content: " (" attr(title) ")"; +} + +/* Change border on current pager item */ +.pagination span.current { + border-style: dashed; +} -- cgit v1.2.3