aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Resources/static/themes/baggy/css/print.scss
blob: a63f62e9e50b9ef8eed80596902f9724976cc559 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
@media print {
  /* ### Layout ### */

  body {
    font-family: Serif;
    background-color: #fff;
  }

  @page {
    margin: 1cm;
  }

  img {
    max-width: 100% !important;
  }

  /* ### Content ### */

  /* Hide useless blocks */
  body > .logo,
  #article_toolbar,
  #links,
  #sort,
  body > footer,
  .top_link,
  div.tools,
  header div,
  .messages,
  .entrie + .results,
  #article .mbm a,
  #article-informations {
    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;
  }

  #main {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  #article {
    width: 100%;
  }
}