| 1 | @namespace html url(http://www.w3.org/1999/xhtml); |
| 2 | |
| 3 | /* These styles affect only the bound element, not other page content. */ |
| 4 | |
| 5 | .mainBox { |
| 6 | text-align: center; |
| 7 | background-color: #CCD0DD; |
| 8 | color: #000000; |
| 9 | border-radius: 12px; |
| 10 | /* recessed effect with 'disabled' shadow */ |
| 11 | box-shadow: inset 0 1px 5px #808080; |
| 12 | padding: 5px; |
| 13 | -moz-user-select: none; |
| 14 | } |
| 15 | |
| 16 | html|a { |
| 17 | color: #000000; |
| 18 | } |
| 19 | |
| 20 | .icon { |
| 21 | min-width: 48px; |
| 22 | min-height: 48px; |
| 23 | background-position: center; |
| 24 | background-repeat: no-repeat; |
| 25 | } |
| 26 | :-moz-type-unsupported .icon, |
| 27 | :-moz-type-unsupported-platform .icon { |
| 28 | background-image: url("chrome://mozapps/skin/plugins/contentPluginMissing.png"); |
| 29 | } |
| 30 | :-moz-type-unsupported .icon[status="ready"] { |
| 31 | background-image: url("chrome://mozapps/skin/plugins/contentPluginDownload.png"); |
| 32 | } |
| 33 | :-moz-handler-clicktoplay .icon, |
| 34 | :-moz-handler-vulnerable-updatable .icon, |
| 35 | :-moz-handler-vulnerable-no-update .icon { |
| 36 | background-image: url("chrome://mozapps/skin/plugins/contentPluginClickToPlay.png"); |
| 37 | } |
| 38 | :-moz-handler-disabled .icon { |
| 39 | background-image: url("chrome://mozapps/skin/plugins/contentPluginDisabled.png"); |
| 40 | } |
| 41 | :-moz-handler-blocked .icon { |
| 42 | background-image: url("chrome://mozapps/skin/plugins/contentPluginBlocked.png"); |
| 43 | } |
| 44 | :-moz-handler-crashed .icon { |
| 45 | background-image: url("chrome://mozapps/skin/plugins/contentPluginCrashed.png"); |
| 46 | } |
| 47 | |
| 48 | .throbber { |
| 49 | padding-left: 16px; /* width of the background image */ |
| 50 | background: url("chrome://global/skin/icons/loading.gif") no-repeat; |
| 51 | margin-left: 5px; |
| 52 | } |
| 53 | |
| 54 | .msg { |
| 55 | font-size: 12px; |
| 56 | cursor: default; |
| 57 | } |
| 58 | |
| 59 | :-moz-handler-clicktoplay .msgClickToPlay, |
| 60 | :-moz-handler-vulnerable-updatable .msgClickToPlay, |
| 61 | :-moz-handler-vulnerable-no-update .msgClickToPlay { |
| 62 | cursor: pointer; |
| 63 | } |
| 64 | |
| 65 | @media not all and (-moz-touch-enabled) { |
| 66 | :-moz-handler-clicktoplay .msgTapToPlay { |
| 67 | display: none; |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | @media (-moz-touch-enabled) { |
| 72 | :-moz-handler-clicktoplay .msgClickToPlay { |
| 73 | display: none; |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | .submitStatus div { |
| 78 | min-height: 19px; /* height of biggest line (with throbber) */ |
| 79 | } |
| 80 | |
| 81 | .msgBottomLinks { |
| 82 | padding-left: 2px; |
| 83 | padding-right: 2px; |
| 84 | } |
| 85 | |
| 86 | .helpIcon { |
| 87 | float: left; |
| 88 | display: inline-block; |
| 89 | min-width: 16px; |
| 90 | min-height: 16px; |
| 91 | background: url("chrome://mozapps/skin/plugins/pluginHelp-16.png") no-repeat; |
| 92 | } |