1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/themes/windows/mozapps/update/updates.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,178 @@ 1.4 +/* General */ 1.5 +/* Specify the size for the wizardpage so the billboard has a fixed size. 3rd 1.6 + party themes should typically specify the same values. */ 1.7 +wizardpage { 1.8 + height: 360px; 1.9 + width: 700px; 1.10 +} 1.11 + 1.12 +/* Remove margin and padding so the billboard will extend to the edge of the 1.13 + window. 3rd party themes should typically specify the same values. */ 1.14 +#updates, .wizard-page-box { 1.15 + margin: 0; 1.16 + padding: 0; 1.17 +} 1.18 + 1.19 +.update-header { 1.20 + padding: 0px 10px; 1.21 +} 1.22 + 1.23 +.update-content { 1.24 + padding: 10px; 1.25 +} 1.26 + 1.27 +.loadingBox { 1.28 + padding: 3px 5px 3px 5px; 1.29 +} 1.30 + 1.31 +.remoteLoadingThrobber { 1.32 + margin-top: 3px; 1.33 +} 1.34 + 1.35 +.remoteLoadingThrobber[state="loading"] { 1.36 + list-style-image: url("chrome://global/skin/icons/loading_16.png"); 1.37 +} 1.38 + 1.39 +.remoteLoadingThrobber[state="error"] { 1.40 + list-style-image: url("chrome://global/skin/icons/information-16.png"); 1.41 +} 1.42 + 1.43 +.wizard-buttons-separator { 1.44 + margin-top: 0 !important; 1.45 +} 1.46 + 1.47 +#licenseContent, #incompatibleListbox { 1.48 + -moz-margin-start: 6px; 1.49 + -moz-margin-end: 6px; 1.50 +} 1.51 + 1.52 +.inline-link { 1.53 + color: -moz-nativehyperlinktext; 1.54 + text-decoration: none; 1.55 +} 1.56 + 1.57 +.inline-link:hover { 1.58 + text-decoration: underline; 1.59 +} 1.60 + 1.61 +/* Unsupported Page */ 1.62 +#unsupportedLabel, #unsupportedLinkLabel { 1.63 + -moz-margin-start: 0; 1.64 + -moz-padding-start: 0; 1.65 +} 1.66 + 1.67 +/* Update Found Basic Page */ 1.68 +#updateName, #updateFinishedName { 1.69 + font-weight: bold; 1.70 + font-size: larger; 1.71 +} 1.72 + 1.73 +/* License Page */ 1.74 +#licenseContent { 1.75 + -moz-appearance: listbox; 1.76 +} 1.77 + 1.78 +/* Incompatible List Page */ 1.79 +#incompatibleListbox { 1.80 + margin-bottom: 6px; 1.81 +} 1.82 + 1.83 +/* Downloading Page */ 1.84 +#downloadStatusLine { 1.85 + -moz-box-align: center; 1.86 +} 1.87 + 1.88 +#downloadStatus { 1.89 + height: 3em !important; 1.90 +} 1.91 + 1.92 +#downloadStatusProgress { 1.93 + padding-right: 5px; 1.94 +} 1.95 + 1.96 +#pauseButton { 1.97 + list-style-image: url(chrome://mozapps/skin/update/downloadButtons.png); 1.98 + -moz-image-region: rect(0px, 48px, 16px, 32px); 1.99 + -moz-appearance: none; 1.100 + background-color: transparent; 1.101 + border: none; 1.102 + min-width: 0; 1.103 + min-height: 0; 1.104 + margin: 0; 1.105 + padding: 0; 1.106 +} 1.107 + 1.108 +/* !Important must be used otherwise this won't immediately take affect */ 1.109 +#pauseButton > .button-box { 1.110 + padding: 0 !important; 1.111 +} 1.112 + 1.113 +#pauseButton:hover { 1.114 + -moz-image-region: rect(16px, 48px, 32px, 32px); 1.115 +} 1.116 + 1.117 +#pauseButton:active { 1.118 + -moz-image-region: rect(32px, 48px, 48px, 32px); 1.119 +} 1.120 + 1.121 +#pauseButton[disabled="true"] { 1.122 + -moz-image-region: rect(48px, 48px, 64px, 32px); 1.123 +} 1.124 + 1.125 +#pauseButton[paused="true"] { 1.126 + -moz-image-region: rect(0px, 16px, 16px, 0px); 1.127 +} 1.128 + 1.129 +#pauseButton[paused="true"]:hover { 1.130 + -moz-image-region: rect(16px, 16px, 32px, 0px); 1.131 +} 1.132 + 1.133 +#pauseButton[paused="true"]:active { 1.134 + -moz-image-region: rect(32px, 16px, 48px, 0px); 1.135 +} 1.136 + 1.137 +#pauseButton[paused="true"][disabled="true"] { 1.138 + -moz-image-region: rect(48px, 16px, 64px, 0px); 1.139 +} 1.140 + 1.141 +#verificationFailedIcon { 1.142 + margin-left: 5px; 1.143 + list-style-image: url("chrome://global/skin/icons/notfound.png"); 1.144 +} 1.145 + 1.146 +/* Error Page */ 1.147 +#errorReason { 1.148 + margin-top: 1px; 1.149 + margin-bottom: 2px; 1.150 + -moz-margin-start: 6px !important; 1.151 + -moz-margin-end: 5px; 1.152 + font-weight: bold; 1.153 +} 1.154 + 1.155 +/* Update History Window */ 1.156 +update { 1.157 + border-bottom: 1px dotted #C0C0C0; 1.158 +} 1.159 + 1.160 +.update-name { 1.161 + font-weight: bold; 1.162 +} 1.163 + 1.164 +.update-label-column { 1.165 + -moz-box-align: end; 1.166 +} 1.167 + 1.168 +.update-type { 1.169 + font-weight: bold; 1.170 + color: #990000; 1.171 +} 1.172 + 1.173 +#historyItems { 1.174 + -moz-appearance: listbox; 1.175 + height: 200px; 1.176 + margin: 1px 5px 4px 5px; 1.177 +} 1.178 + 1.179 +#historyItems > scrollbox { 1.180 + margin-bottom: 1px; 1.181 +}