aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/default/public/css/print.css
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-03-02 21:23:19 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-03-02 21:23:19 +0100
commitba7b9d48d407f87690a3fdc199b37714d2a52897 (patch)
treea15611f10d09749e82011e0d51532af3de8cfabd /src/Wallabag/CoreBundle/Resources/views/default/public/css/print.css
parentfca3c757233940cbe4c431e3e05fe74893225fe0 (diff)
parent3e30422cdae3cc45f44c3039c2d38b99121dd9e9 (diff)
downloadwallabag-ba7b9d48d407f87690a3fdc199b37714d2a52897.tar.gz
wallabag-ba7b9d48d407f87690a3fdc199b37714d2a52897.tar.zst
wallabag-ba7b9d48d407f87690a3fdc199b37714d2a52897.zip
Merge pull request #1132 from wallabag/v2-theme
V2 theme
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/default/public/css/print.css')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/default/public/css/print.css53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/default/public/css/print.css b/src/Wallabag/CoreBundle/Resources/views/default/public/css/print.css
deleted file mode 100644
index 625478e1..00000000
--- a/src/Wallabag/CoreBundle/Resources/views/default/public/css/print.css
+++ /dev/null
@@ -1,53 +0,0 @@
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#article_toolbar {
29 display: none !important;
30}
31
32article {
33 border: none !important;
34}
35
36pre code {
37 line-height: 1.6em;
38}
39
40/* Add URL after links */
41.vieworiginal a:after {
42 content: " (" attr(href) ")";
43}
44
45/* Add explanation after abbr */
46abbr[title]:after {
47 content: " (" attr(title) ")";
48}
49
50/* Change border on current pager item */
51.pagination span.current {
52 border-style: dashed;
53}