|
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 /* Tab Modal Prompt boxes */ |
|
6 tabmodalprompt { |
|
7 background-image: url(chrome://global/skin/icons/tabprompts-bgtexture.png); |
|
8 background-color: hsla(0,0%,10%,.5); |
|
9 font-family: sans-serif; /* use content font not system UI font */ |
|
10 font-size: 110%; |
|
11 } |
|
12 |
|
13 .mainContainer { |
|
14 color: black; |
|
15 background-color: hsla(0,0%,100%,.95); |
|
16 background-clip: padding-box; |
|
17 border-radius: 2px; |
|
18 border: 1px solid hsla(0,0%,0%,.5); |
|
19 } |
|
20 |
|
21 .topContainer { |
|
22 padding: 20px; |
|
23 } |
|
24 |
|
25 .buttonContainer { |
|
26 padding: 12px 20px 15px; |
|
27 background-color: hsla(0,0%,0%,.05); |
|
28 border-top: 1px solid hsla(0,0%,0%,.05); |
|
29 } |
|
30 |
|
31 button { |
|
32 -moz-appearance: none; |
|
33 padding: 2px 0; |
|
34 margin: 0; |
|
35 -moz-margin-start: 8px; |
|
36 border-radius: 2px; |
|
37 background-color: hsl(0,0%,90%); |
|
38 background-image: linear-gradient(hsla(0,0%,100%,.7), hsla(0,0%,100%,0)); |
|
39 background-clip: padding-box; |
|
40 border: 1px solid; |
|
41 border-color: hsl(0,0%,65%) hsl(0,0%,60%) hsl(0,0%,50%); |
|
42 box-shadow: 0 1px 0 hsla(0,0%,100%,.9) inset, |
|
43 0 1px 2px hsla(0,0%,0%,.1); |
|
44 } |
|
45 |
|
46 |
|
47 button[default=true] { |
|
48 background-color: hsl(0,0%,79%); |
|
49 } |
|
50 |
|
51 button:hover { |
|
52 background-color: hsl(0,0%,96%); |
|
53 } |
|
54 |
|
55 button:hover:active { |
|
56 background-image: linear-gradient(hsla(0,0%,100%,.2), hsla(0,0%,100%,0)); |
|
57 background-color: hsl(0,0%,70%); |
|
58 box-shadow: 0 1px 0 hsla(0,0%,100%,.2) inset, |
|
59 0 1px 3px hsla(0,0%,0%,.2); |
|
60 } |
|
61 |
|
62 button:focus { |
|
63 box-shadow: 0 0 1px -moz-mac-focusring inset, |
|
64 0 0 4px 1px -moz-mac-focusring, |
|
65 0 0 1.5px 1px -moz-mac-focusring; |
|
66 } |