Bug 1700051: part 35) Reduce accessibility of `mSoftText.mDOMMapping` to `private...
[gecko.git] / layout / style / ImageDocument.css
blobc0ab8488f8e5825920421b9575a661ac6df71097
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 /*
7 * This CSS stylesheet defines the rules to be applied to any ImageDocuments,
8 * including those in frames.
9 */
11 body {
12 /* To give the image access to our document's full viewport, we need to
13 override the margin that the html.css UA stylesheet would otherwise apply
14 to our body. */
15 margin: 0;
18 @media not print {
19 .shrinkToFit {
20 cursor: zoom-in;
23 .overflowingVertical, .overflowingHorizontalOnly {
24 cursor: zoom-out;
28 @media print {
29 /* We must declare the image as a block element. If we stay as
30 an inline element, our parent LineBox will be inline too and
31 ignore the available height during reflow.
32 This is bad during printing, it means tall image frames won't know
33 the size of the paper and cannot break into continuations along
34 multiple pages. */
35 img {
36 display: block;