summaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/less/print.less
blob: 75b2675e8a139d91f0b22b5ac006e31eb2acab3b (plain)
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
@import (reference) "mixins";
@import (reference) "variables";
@import (reference) "init/links";

@media print {

  .noprint {
    display: none !important;
  }

  a {
    color: @baseFontColor;
    .link-no-underline;
  }

  .navbar-global {
    .noprint;
  }

  .page-wrapper-global {
    padding-top: 0;
  }

  .page-footer {
    .noprint;
  }

  .dashboard-page,
  .dashboard-page body {
    background-color: #fff;
  }

  // see https://github.com/ariya/phantomjs/issues/10927
  .widget thead,
  .widget tfoot {
    display: table-row-group;
  }

}