Chromium Code Reviews| Index: chrome/browser/resources/chromeos/login/oobe.css |
| diff --git a/chrome/browser/resources/chromeos/login/oobe.css b/chrome/browser/resources/chromeos/login/oobe.css |
| index a8219a292696eb2f3cc2514e4a9d5604d3b19334..15fd80ad2093c8e7818b65b67aa4ca53948dc5cd 100644 |
| --- a/chrome/browser/resources/chromeos/login/oobe.css |
| +++ b/chrome/browser/resources/chromeos/login/oobe.css |
| @@ -126,7 +126,8 @@ html[oobe=new] #oobe.update #inner-container, |
| html[oobe=new] #oobe.user-image #inner-container, |
| html[oobe=new] #oobe.managed-user-creation #inner-container, |
| html[oobe=new] #oobe.tpm-error-message #inner-container, |
| -html[oobe=new] #oobe.password-changed #inner-container { |
| +html[oobe=new] #oobe.password-changed #inner-container, |
| +html[oobe=new] #oobe.wrong-hwid #inner-container { |
| background: -webkit-linear-gradient(rgba(255,255,255,0.99), |
| rgba(255,255,255,0.95)); |
| box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), |
| @@ -503,6 +504,7 @@ html[oobe=new] #reset #reset-warning-details { |
| padding: 35px 40px 80px; |
| } |
| + |
|
Nikita (slow)
2013/02/11 17:09:03
nit: drop empty line
dzhioev (left Google)
2013/02/11 23:32:56
Done.
|
| html[oobe=new] #reset #reset-controls { |
| -webkit-box-pack: center; |
| bottom: 80px; |
| @@ -874,7 +876,8 @@ html[oobe=old] .step-controls { |
| #error-message-dot, |
| #tpm-error-message-dot, |
| #password-changed-dot, |
| -#managed-user-creation-dot { |
| +#managed-user-creation-dot, |
| +#wrong-hwid-dot { |
| display: none; |
| } |
| @@ -1451,3 +1454,34 @@ span.bold { |
| .background-final { |
| opacity: 1; |
| } |
| + |
| +#wrong-hwid { |
|
Nikita (slow)
2013/02/11 17:09:03
nit: Please move these rules to a separate file.
dzhioev (left Google)
2013/02/11 23:32:56
Done.
|
| + padding: 40px 17px 30px; |
| + text-align: center; |
| + width: 722px; |
| +} |
| + |
| +#wrong-hwid #wrong-hwid-message-header { |
| + color: #606060; |
| + font-size: 22px; |
| + padding: 5px 40px 30px; |
| +} |
| + |
| +#wrong-hwid #wrong-hwid-message-content { |
| + color: #606060; |
| + font-size: 16px; |
| + padding: 20px 40px 40px; |
| +} |
| + |
| +#skip-hwid-warning { |
| + bottom: 20px; |
| + position: absolute; |
| + width: 100%; |
| +} |
| + |
| +#skip-hwid-warning-link { |
| + color: #606060; |
| + font-size: 18px; |
| + text-decoration: none; |
| +} |
| + |