elbaitemoon

Elbaite theme for Pale Moon
Log | Files | Refs

alert.css (1351B)


      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 /* ===== alert.css =====================================================
      6   == Styles specific to the alerts dialog.
      7   ======================================================================= */
      8 
      9 @import url("chrome://global/skin/alerts/alert-common.css");
     10 
     11 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
     12 
     13 #alertNotification {
     14   -moz-appearance: none;
     15   background: transparent;
     16   padding: 10px;
     17 }
     18 
     19 #alertBox {
     20   border: 1px solid rgb(64,64,64);
     21   border-radius: 0;
     22   background-color: #181411;
     23   color: #bfbbb6;
     24   box-shadow: 0 0 4px rgba(255,255,255,.3);
     25 }
     26 
     27 .alertCloseButton {
     28   -moz-appearance: none;
     29   padding: 4px 2px;
     30   border: none !important;
     31 }
     32 
     33 #alertTitleBox > .alertCloseBox {
     34   /* The close button is larger on Windows and has a large
     35      circle around it, so we add more space between the close
     36      button and the edge of the window. */
     37   margin-inline-end: 2px;
     38 }
     39 
     40 #alertSettings {
     41   /* The close button is larger on Windows, so the
     42      gear button is moved over to accomodate it and
     43      keep the two buttons horizontally aligned together. */
     44   margin-inline-end: 4px;
     45   margin-bottom: -1px;
     46 }