aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/public/themes/baggy/css/print.css
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-01-22 20:54:17 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-01-22 20:54:17 +0100
commit96fcb60c335a8985d0ebb8acec3af7c310edb70c (patch)
treecf1e1ccb801842cf4acc51c353bb481ede37d364 /src/Wallabag/CoreBundle/Resources/public/themes/baggy/css/print.css
parent124f8091cbb1e5cccd7972fa368f8e7c434e0e5b (diff)
parent30d81a47c689e1d7d963fcd3fd42af9958805e31 (diff)
downloadwallabag-96fcb60c335a8985d0ebb8acec3af7c310edb70c.tar.gz
wallabag-96fcb60c335a8985d0ebb8acec3af7c310edb70c.tar.zst
wallabag-96fcb60c335a8985d0ebb8acec3af7c310edb70c.zip
Merge pull request #1619 from wallabag/v2-themes-folder
Move public assets for themes
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/public/themes/baggy/css/print.css')
-rwxr-xr-xsrc/Wallabag/CoreBundle/Resources/public/themes/baggy/css/print.css62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/public/themes/baggy/css/print.css b/src/Wallabag/CoreBundle/Resources/public/themes/baggy/css/print.css
new file mode 100755
index 00000000..9dd6d295
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Resources/public/themes/baggy/css/print.css
@@ -0,0 +1,62 @@
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#article_toolbar,
21#links,
22#sort,
23body > footer,
24.top_link,
25div.tools,
26header div,
27.messages,
28.entrie + .results {
29 display: none !important;
30}
31
32article {
33 border: none !important;
34}
35
36/* Add URL after links */
37.vieworiginal a:after {
38 content: " (" attr(href) ")";
39}
40
41/* Add explanation after abbr */
42abbr[title]:after {
43 content: " (" attr(title) ")";
44}
45
46/* Change border on current pager item */
47.pagination span.current {
48 border-style: dashed;
49}
50
51#main {
52 width: 100%;
53 padding: 0;
54 margin: 0;
55 margin-left: 0;
56 padding-right: 0;
57 padding-bottom: 0;
58}
59
60#article {
61 width: 100%;
62}