Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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/. */
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 }
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 }
21 .topContainer {
22 padding: 20px;
23 }
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 }
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 }
47 button[default=true] {
48 background-color: hsl(0,0%,79%);
49 }
51 button:hover {
52 background-color: hsl(0,0%,96%);
53 }
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 }
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 }