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: /* michael@0: * The default namespace for this file is XUL. Be sure to prefix rules that michael@0: * are applicable to both XUL and HTML with '*|'. michael@0: */ michael@0: @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); michael@0: @namespace html url("http://www.w3.org/1999/xhtml"); michael@0: michael@0: /* Page background */ michael@0: *|*:root { michael@0: -moz-appearance: none; michael@0: padding: 18px; michael@0: background-color: Window; michael@0: background-image: /* Texture */ michael@0: url("chrome://global/skin/inContentUI/background-texture.png"); michael@0: color: WindowText; michael@0: } michael@0: michael@0: html|html { michael@0: font: message-box; michael@0: } michael@0: michael@0: /* Content */ michael@0: *|*.main-content { michael@0: /* Needed to allow the radius to clip the inner content, see bug 595656 */ michael@0: overflow: hidden; michael@0: background-color: -moz-Field; michael@0: color: -moz-FieldText; michael@0: border: 1px solid ThreeDShadow; michael@0: border-radius: 5px; michael@0: }