elbaitemoon

Elbaite theme for Pale Moon
Log | Files | Refs

dialog.css (1586B)


      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 /* ===== dialog.css =====================================================
      6   == Styles used by the XUL dialog element.
      7   ======================================================================= */
      8 
      9 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
     10 
     11 /* ::::: dialog ::::: */
     12 
     13 dialog { 
     14   padding-top: 8px;
     15   padding-bottom: 10px;
     16   padding-inline-start: 8px;
     17   padding-inline-end: 10px;
     18 }
     19 
     20 /* ::::: dialog buttons ::::: */
     21 
     22 .dialog-button {
     23   font: menu;
     24   margin-top: 6px;
     25 }
     26 
     27 /* ::::: dialog header ::::: */
     28 
     29 dialogheader {
     30   margin: 0px 5px 5px 5px;
     31   border: 1px solid rgb(50,50,50);
     32   padding: 5px 8px;
     33   background-color: rgb(1,1,1);
     34   color: #bfbbb6;
     35 }
     36 
     37 .dialogheader-title {
     38   margin: 0px !important;
     39   font-size: larger;
     40   font-weight: bold;
     41 }
     42 
     43 /* ::::: large dialog header ::::: */
     44 
     45 .header-large {
     46   -moz-box-orient: vertical;
     47   margin-top: -8px;
     48   margin-bottom: 0;
     49   margin-inline-start: -8px;
     50   margin-inline-end: -10px;
     51   border-left: none;
     52   border-right: none;
     53   border-top: none;
     54   border-bottom-color: rgb(50,50,50);
     55   padding-top: 12px;
     56   padding-bottom: 12px;
     57   padding-inline-start: 25px;
     58   padding-inline-end: 5px;
     59   background-color: #181411;
     60   color: #bfbbb6;
     61 }
     62 
     63 .header-large > .dialogheader-title {
     64   font: inherit;
     65   font-weight: bold;
     66 }
     67 
     68 .header-large > .dialogheader-description {
     69   margin-inline-start: 12px !important;
     70 }