Bug 1943650 - Command-line --help output misformatted after --dbus-service. r=emilio
[gecko.git] / toolkit / components / alerts / alert.css
blob273646f399a6d897bd263a7d9328b101340429e5
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/. */
5 #alertBox[animate] {
6 animation-duration: 20s;
7 animation-fill-mode: both;
8 animation-name: alert-animation;
11 #alertBox[animate]:not([clicked], [closing]):hover {
12 animation-play-state: paused;
15 #alertBox:not([hasOrigin]) > box > #alertTextBox > #alertFooter,
16 #alertBox:not([hasIcon]) > box > #alertIcon,
17 #alertImage:not([src]) {
18 display: none;
21 #alertTitleBox {
22 justify-content: center;
23 align-items: center;
26 .alertText {
27 white-space: pre-wrap;
30 @keyframes alert-animation {
31 from {
32 visibility: visible;
34 to {
35 visibility: hidden;