123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- /* 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 */
- }
|