1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/themes/osx/global/tabprompts.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,66 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +/* Tab Modal Prompt boxes */ 1.9 +tabmodalprompt { 1.10 + background-image: url(chrome://global/skin/icons/tabprompts-bgtexture.png); 1.11 + background-color: hsla(0,0%,10%,.5); 1.12 + font-family: sans-serif; /* use content font not system UI font */ 1.13 + font-size: 110%; 1.14 +} 1.15 + 1.16 +.mainContainer { 1.17 + color: black; 1.18 + background-color: hsla(0,0%,100%,.95); 1.19 + background-clip: padding-box; 1.20 + border-radius: 2px; 1.21 + border: 1px solid hsla(0,0%,0%,.5); 1.22 +} 1.23 + 1.24 +.topContainer { 1.25 + padding: 20px; 1.26 +} 1.27 + 1.28 +.buttonContainer { 1.29 + padding: 12px 20px 15px; 1.30 + background-color: hsla(0,0%,0%,.05); 1.31 + border-top: 1px solid hsla(0,0%,0%,.05); 1.32 +} 1.33 + 1.34 +button { 1.35 + -moz-appearance: none; 1.36 + padding: 2px 0; 1.37 + margin: 0; 1.38 + -moz-margin-start: 8px; 1.39 + border-radius: 2px; 1.40 + background-color: hsl(0,0%,90%); 1.41 + background-image: linear-gradient(hsla(0,0%,100%,.7), hsla(0,0%,100%,0)); 1.42 + background-clip: padding-box; 1.43 + border: 1px solid; 1.44 + border-color: hsl(0,0%,65%) hsl(0,0%,60%) hsl(0,0%,50%); 1.45 + box-shadow: 0 1px 0 hsla(0,0%,100%,.9) inset, 1.46 + 0 1px 2px hsla(0,0%,0%,.1); 1.47 +} 1.48 + 1.49 + 1.50 +button[default=true] { 1.51 + background-color: hsl(0,0%,79%); 1.52 +} 1.53 + 1.54 +button:hover { 1.55 + background-color: hsl(0,0%,96%); 1.56 +} 1.57 + 1.58 +button:hover:active { 1.59 + background-image: linear-gradient(hsla(0,0%,100%,.2), hsla(0,0%,100%,0)); 1.60 + background-color: hsl(0,0%,70%); 1.61 + box-shadow: 0 1px 0 hsla(0,0%,100%,.2) inset, 1.62 + 0 1px 3px hsla(0,0%,0%,.2); 1.63 +} 1.64 + 1.65 +button:focus { 1.66 + box-shadow: 0 0 1px -moz-mac-focusring inset, 1.67 + 0 0 4px 1px -moz-mac-focusring, 1.68 + 0 0 1.5px 1px -moz-mac-focusring; 1.69 +}