1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5:root {
6  max-width: 40em;
7}
8
9#warningSupplemental {
10  font-weight: bold;
11}
12
13.description {
14  font-weight: bold;
15}
16
17.longDescription {
18  /* 40em is the max-width of the dialog defined above.
19     18px is the horizontal padding of the dialog. */
20  width: calc(40em - 18px);
21  padding-bottom: 1em;
22}
23
24#warningText,
25#warningSupplemental,
26#headerDescription,
27.longDescription {
28  white-space: pre-wrap;
29}
30
31.description:empty,
32.longDescription:empty {
33  display: none;
34}
35
36#locationTextBox {
37  -moz-box-flex: 1;
38}
39