michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: /* Tab Modal Prompt boxes */ michael@0: tabmodalprompt { michael@0: background-image: url(chrome://global/skin/icons/tabprompts-bgtexture.png); michael@0: background-color: hsla(0,0%,10%,.5); michael@0: font-family: sans-serif; /* use content font not system UI font */ michael@0: font-size: 110%; michael@0: } michael@0: michael@0: .mainContainer { michael@0: color: black; michael@0: background-color: hsla(0,0%,100%,.95); michael@0: background-clip: padding-box; michael@0: border-radius: 2px; michael@0: border: 1px solid hsla(0,0%,0%,.5); michael@0: } michael@0: michael@0: .topContainer { michael@0: padding: 20px; michael@0: } michael@0: michael@0: .buttonContainer { michael@0: padding: 12px 20px 15px; michael@0: background-color: hsla(0,0%,0%,.05); michael@0: border-top: 1px solid hsla(0,0%,0%,.05); michael@0: } michael@0: michael@0: button { michael@0: -moz-appearance: none; michael@0: padding: 2px 0; michael@0: margin: 0; michael@0: -moz-margin-start: 8px; michael@0: border-radius: 2px; michael@0: background-color: hsl(0,0%,90%); michael@0: background-image: linear-gradient(hsla(0,0%,100%,.7), hsla(0,0%,100%,0)); michael@0: background-clip: padding-box; michael@0: border: 1px solid; michael@0: border-color: hsl(0,0%,65%) hsl(0,0%,60%) hsl(0,0%,50%); michael@0: box-shadow: 0 1px 0 hsla(0,0%,100%,.9) inset, michael@0: 0 1px 2px hsla(0,0%,0%,.1); michael@0: } michael@0: michael@0: michael@0: button[default=true] { michael@0: background-color: hsl(0,0%,79%); michael@0: } michael@0: michael@0: button:hover { michael@0: background-color: hsl(0,0%,96%); michael@0: } michael@0: michael@0: button:hover:active { michael@0: background-image: linear-gradient(hsla(0,0%,100%,.2), hsla(0,0%,100%,0)); michael@0: background-color: hsl(0,0%,70%); michael@0: box-shadow: 0 1px 0 hsla(0,0%,100%,.2) inset, michael@0: 0 1px 3px hsla(0,0%,0%,.2); michael@0: } michael@0: michael@0: button:focus { michael@0: box-shadow: 0 0 1px -moz-mac-focusring inset, michael@0: 0 0 4px 1px -moz-mac-focusring, michael@0: 0 0 1.5px 1px -moz-mac-focusring; michael@0: }