Differences From Artifact [fe845e5862]:
- File styles/default/style.css — part of check-in [af6b407936] at 2014-08-01 11:05:34 on branch develop — styles/default/style.css: Fix padding in @media print. (user: tux size: 1500) [more...]
To Artifact [666f04d80f]:
- File styles/default/style.css — part of check-in [6260690426] at 2014-08-08 13:00:52 on branch develop — styles/default/style.css: Fix printing issue with "#content" padding. (user: tux size: 1551) [more...]
| ︙ | |||
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | + + + + - + |
text-align: center;
}
@media print {
body {
background: #fff;
}
#content {
padding: 0;
padding-top: 1em;
}
#sidebar, #dashboard, #footer {
display: none;
}
#wrapper {
border: 0;
}
table {
border-collapse: collapse;
}
td {
|