Page MenuHomePhabricator

Add printable support to CSS
ClosedPublic

Authored by epriestley on Oct 19 2013, 8:54 PM.
Tags
None
Referenced Files
F17791388: D7363.id16578.diff
Thu, Jul 24, 10:00 PM
F17761063: D7363.diff
Tue, Jul 22, 8:23 PM
Unknown Object (File)
Jun 2 2025, 2:36 AM
Unknown Object (File)
Jun 2 2025, 2:36 AM
Unknown Object (File)
Jun 2 2025, 2:36 AM
Unknown Object (File)
Jun 2 2025, 2:36 AM
Unknown Object (File)
May 25 2025, 4:44 PM
Unknown Object (File)
May 10 2025, 10:12 AM
Subscribers

Details

Reviewers
btrahan
chad
Maniphest Tasks
Restricted Maniphest Task
Commits
Restricted Diffusion Commit
rP87ccca32b66f: Add printable support to CSS
Summary

Fixes T2146. This is a really simple approach, you just do:

!print .rule {
  whatever: blah;
}

And it transforms it into:

.printable .rule {
  whatever: blah;
}

@media print {
  .rule {
    whatever: blah;
  }
}

So we end up with these rules twice, but they should compress well and we shouldn't need that many of them, and this fix is way way simpler than all the nonsense I discussed in T2146.

Test Plan
  • Added a unit test.
  • Added a simple rule to throw away the menubar when printing.
  • Checked the latter with /?__print__=1.

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped