summaryrefslogtreecommitdiffstats
path: root/devtools/client/shared/components/notification-box.css
blob: 83c29b61627751b57da870926724ccc894efbd05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/* vim:set ts=2 sw=2 sts=2 et: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/* Layout */

.notificationbox .notificationInner {
  display: flex;
  flex-direction: row;
}

.notificationbox .details {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.notificationbox .notification-button {
  text-align: right;
}

.notificationbox .messageText {
  flex-grow: 1;
}

.notificationbox .details:-moz-dir(rtl)
.notificationbox .notificationInner:-moz-dir(rtl) {
  flex-direction: row-reverse;
}

/* Style */

.notificationbox .notification {
  background-color: InfoBackground;
  text-shadow: none;
  border-top: 1px solid ThreeDShadow;
  border-bottom: 1px solid ThreeDShadow;
}

.notificationbox .notification[data-type="info"] {
  color: -moz-DialogText;
  background-color: -moz-Dialog;
}

.notificationbox .notification[data-type="critical"] {
  color: white;
  background-image: linear-gradient(rgb(212,0,0), rgb(152,0,0));
}

.notificationbox .messageImage {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 6px;
}

/* Default icons for notifications */

.notificationbox .messageImage[data-type="info"] {
  background-image: url("chrome://global/skin/icons/information-16.png");
}

.notificationbox .messageImage[data-type="warning"] {
  background-image: url("chrome://global/skin/icons/warning-16.png");
}

.notificationbox .messageImage[data-type="critical"] {
  background-image: url("chrome://global/skin/icons/error-16.png");
}

/* Close button */

.notificationbox .messageCloseButton {
  width: 20px;
  height: 20px;
  margin: 4px;
  margin-inline-end: 8px;
  background-image: url("chrome://devtools/skin/images/close.svg");
  background-position: center;
  background-color: transparent;
  background-repeat: no-repeat;
  border-radius: 11px;
  filter: invert(0);
}

.notificationbox .messageCloseButton:hover {
  background-color: gray;
  filter: invert(1);
}

.notificationbox .messageCloseButton:active {
  background-color: rgba(170, 170, 170, .4); /* --toolbar-tab-hover-active */
}