toolkit/themes/windows/mozapps/extensions/selectAddons.css

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/toolkit/themes/windows/mozapps/extensions/selectAddons.css	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,183 @@
     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 +#view-deck {
     1.9 +  background: Window;
    1.10 +}
    1.11 +
    1.12 +.heading {
    1.13 +  font-size: 270%;
    1.14 +  text-align: center;
    1.15 +  margin: 0 120px;
    1.16 +}
    1.17 +
    1.18 +.progress {
    1.19 +  margin: 10px 128px;
    1.20 +}
    1.21 +
    1.22 +.progress-label,
    1.23 +#errors-description {
    1.24 +  text-align: center;
    1.25 +  margin: 0 10px;
    1.26 +}
    1.27 +
    1.28 +#checking-heading,
    1.29 +#update-heading,
    1.30 +#errors-heading {
    1.31 +  margin-top: 90px;
    1.32 +}
    1.33 +
    1.34 +#select-heading,
    1.35 +#confirm-heading {
    1.36 +  margin-top: 10px;
    1.37 +  margin-bottom: 10px;
    1.38 +  text-align: center;
    1.39 +}
    1.40 +
    1.41 +#select-description,
    1.42 +#confirm-description {
    1.43 +  margin: 10px;
    1.44 +}
    1.45 +
    1.46 +#select-list {
    1.47 +  border-top: 1px solid #D6E5F5;
    1.48 +  background-color: Window;
    1.49 +}
    1.50 +
    1.51 +#select-grid column {
    1.52 +  -moz-box-align: center;
    1.53 +}
    1.54 +
    1.55 +#select-grid row {
    1.56 +  -moz-box-align: stretch;
    1.57 +}
    1.58 +
    1.59 +#select-grid label {
    1.60 +  margin-top: 0;
    1.61 +  margin-bottom: 0;
    1.62 +}
    1.63 +
    1.64 +.select-cell {
    1.65 +  -moz-box-align: center;
    1.66 +  -moz-box-pack: start;
    1.67 +}
    1.68 +
    1.69 +#select-header .select-cell {
    1.70 +  box-sizing: border-box;
    1.71 +}
    1.72 +
    1.73 +#select-header .select-keep,
    1.74 +#select-header .select-icon,
    1.75 +#select-header .select-name,
    1.76 +#select-header .select-action {
    1.77 +  background-image: linear-gradient(#D6E5F5 0%, Window 100%);
    1.78 +  background-size: 1px 100%;
    1.79 +  background-position: right;
    1.80 +  background-repeat: no-repeat;
    1.81 +}
    1.82 +
    1.83 +.select-keep {
    1.84 +  -moz-box-pack: center;
    1.85 +}
    1.86 +
    1.87 +.select-icon {
    1.88 +  width: 20px;
    1.89 +}
    1.90 +
    1.91 +.select-keep .addon-keep-checkbox {
    1.92 +  margin: 0;
    1.93 +  padding: 0;
    1.94 +  width: 13px;
    1.95 +}
    1.96 +
    1.97 +.select-keep .addon-keep-checkbox:-moz-focusring {
    1.98 +  outline: 1px dotted ThreeDDarkShadow;
    1.99 +}
   1.100 +
   1.101 +.select-keep .checkbox-label-box {
   1.102 +  display: none;
   1.103 +}
   1.104 +
   1.105 +.addon-name,
   1.106 +.addon-action-message,
   1.107 +.addon-action-update {
   1.108 +  box-sizing: border-box;
   1.109 +  margin: 0;
   1.110 +  padding-top: 1px;
   1.111 +  padding-bottom: 2px;
   1.112 +  -moz-padding-start: 6px;
   1.113 +  -moz-padding-end: 5px;
   1.114 +}
   1.115 +
   1.116 +#select-grid separator {
   1.117 +  border-top: 1px solid #D6E5F5;
   1.118 +  height: 0;
   1.119 +  margin-top: 0.4em;
   1.120 +  margin-bottom: 0.4em;
   1.121 +}
   1.122 +
   1.123 +.addon:not([active]) .addon-name,
   1.124 +.addon:not([active]) .addon-action-message,
   1.125 +.addon:not([active]) .addon-action-update {
   1.126 +  color: GrayText;
   1.127 +}
   1.128 +
   1.129 +.addon-icon {
   1.130 +  height: 16px;
   1.131 +  width: 16px;
   1.132 +  list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric-16.png");
   1.133 +}
   1.134 +
   1.135 +.addon-icon[type="theme"] {
   1.136 +  list-style-image: url("chrome://mozapps/skin/extensions/themeGeneric-16.png");
   1.137 +}
   1.138 +
   1.139 +.addon-icon[type="plugin"] {
   1.140 +  list-style-image: url("chrome://mozapps/skin/plugins/pluginGeneric-16.png");
   1.141 +}
   1.142 +
   1.143 +.addon-icon[type="dictionary"] {
   1.144 +  list-style-image: url("chrome://mozapps/skin/extensions/dictionaryGeneric-16.png");
   1.145 +}
   1.146 +
   1.147 +.action-list {
   1.148 +  margin-top: 10px;
   1.149 +  -moz-margin-start: 5em;
   1.150 +}
   1.151 +
   1.152 +.action-header {
   1.153 +  margin-bottom: 10px;
   1.154 +}
   1.155 +
   1.156 +#confirm .addon {
   1.157 +  -moz-margin-start: 3em;
   1.158 +  -moz-box-align: center;
   1.159 +}
   1.160 +
   1.161 +.addon:not([active]) .addon-icon,
   1.162 +#disable-list .addon-icon,
   1.163 +#incompatible-list .addon-icon {
   1.164 +  filter: url("chrome://mozapps/skin/extensions/extensions.svg#greyscale");
   1.165 +}
   1.166 +
   1.167 +#footer {
   1.168 +  padding: 15px 12px;
   1.169 +}
   1.170 +
   1.171 +.progress-label,
   1.172 +#footer-label {
   1.173 +%ifdef WINDOWS_AERO
   1.174 +  font-style: italic;
   1.175 +%endif
   1.176 +  color: GrayText;
   1.177 +}
   1.178 +
   1.179 +%ifdef WINDOWS_AERO
   1.180 +@media (-moz-windows-default-theme) {
   1.181 +  #footer {
   1.182 +    background-color: #f1f5fb;
   1.183 +    box-shadow: 0px 1px 2px rgb(204,214,234) inset;
   1.184 +  }
   1.185 +}
   1.186 +%endif

mercurial