aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/default/css/print.css
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-10-03 10:14:54 -0700
committerJean-Christophe Saad-Dupuy <saad.dupuy@gmail.com>2013-10-06 20:31:11 +0200
commitbf7516112f90ea0392918605acdb9167cf21e516 (patch)
treed97628451386a2ec254f3c93b29741267140bd14 /themes/default/css/print.css
parent79026b73a804d1fe3715c3edf5bc2cfb1e56732c (diff)
parentd47d2533accb30a69fbbb964f63793b821300974 (diff)
downloadwallabag-bf7516112f90ea0392918605acdb9167cf21e516.tar.gz
wallabag-bf7516112f90ea0392918605acdb9167cf21e516.tar.zst
wallabag-bf7516112f90ea0392918605acdb9167cf21e516.zip
Embeded jquery 2.0.3 dependancie
Diffstat (limited to 'themes/default/css/print.css')
m---------themes0
-rw-r--r--themes/default/css/print.css48
2 files changed, 48 insertions, 0 deletions
diff --git a/themes b/themes
deleted file mode 160000
Subproject 689dcedf8d6c7cf5e8424654fef4fd9687288dc
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 @@
1/* ### Layout ### */
2
3body {
4 font-family: Serif;
5 background-color: #fff;
6}
7
8@page {
9 margin: 1cm;
10}
11
12img {
13 max-width: 100% !important;
14}
15
16/* ### Content ### */
17
18/* Hide useless blocks */
19body > header,
20#links,
21#sort,
22body > footer,
23.top_link,
24div.tools,
25header div,
26.messages,
27.entrie + .results {
28 display: none !important;
29}
30
31article {
32 border: none !important;
33}
34
35/* Add URL after links */
36.vieworiginal a:after {
37 content: " (" attr(href) ")";
38}
39
40/* Add explanation after abbr */
41abbr[title]:after {
42 content: " (" attr(title) ")";
43}
44
45/* Change border on current pager item */
46.pagination span.current {
47 border-style: dashed;
48}