1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/components/prompts/content/tabprompts.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,34 @@ 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 + width: 100%; 1.11 + height: 100%; 1.12 + -moz-box-pack: center; 1.13 + -moz-box-orient: vertical; 1.14 +} 1.15 + 1.16 +.mainContainer { 1.17 + min-width: 20em; 1.18 + min-height: 12em; 1.19 +} 1.20 + 1.21 +.info\.title { 1.22 + margin-bottom: 1em !important; 1.23 + font-weight: bold; 1.24 +} 1.25 + 1.26 +.info\.body { 1.27 + margin: 0 !important; 1.28 + -moz-user-focus: normal; 1.29 + -moz-user-select: text; 1.30 + cursor: text !important; 1.31 + white-space: pre-wrap; 1.32 + unicode-bidi: -moz-plaintext; 1.33 +} 1.34 + 1.35 +label[value=""] { 1.36 + visibility: collapse; 1.37 +}