Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(813)

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe.css

Issue 10837263: chromeos: Improve version label on login screen. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: wrap long line; merge Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 * 4 *
5 * This is the stylesheet used by the Out of the box experience (OOBE) flow, 5 * This is the stylesheet used by the Out of the box experience (OOBE) flow,
6 * sign in and lock screens. 6 * sign in and lock screens.
7 */ 7 */
8 8
9 html, 9 html,
10 body { 10 body {
(...skipping 1265 matching lines...) Expand 10 before | Expand all | Expand 10 after
1276 .error-message-padding { 1276 .error-message-padding {
1277 margin-bottom: 10px; 1277 margin-bottom: 10px;
1278 } 1278 }
1279 1279
1280 html[dir=rtl] .error-message { 1280 html[dir=rtl] .error-message {
1281 background-position: right top; 1281 background-position: right top;
1282 } 1282 }
1283 1283
1284 #version-labels { 1284 #version-labels {
1285 -webkit-transition: all 500ms linear; 1285 -webkit-transition: all 500ms linear;
1286 color: #999; 1286 color: #fff;
1287 font-size: 11px; 1287 font-size: 11px;
1288 margin: 10px; 1288 margin: 10px;
1289 opacity: 1.0;
1290 text-align: end; 1289 text-align: end;
1291 text-shadow: 0 1px 1px #fff; 1290 text-shadow:
1291 0 0 4px rgba(0,0,0,.6),
1292 0 1px 2px rgba(0,0,0,.8),
1293 0 -1px 2px rgba(0,0,0,1);
1292 } 1294 }
1293 1295
1294 #offline-network-control { 1296 #offline-network-control {
1295 margin-left: 60px; 1297 margin-left: 60px;
1296 } 1298 }
1297 1299
1298 #notification-area { 1300 #notification-area {
1299 color: #666; 1301 color: #666;
1300 position: absolute; 1302 position: absolute;
1301 text-align: center; 1303 text-align: center;
(...skipping 20 matching lines...) Expand all
1322 width: 100%; 1324 width: 100%;
1323 } 1325 }
1324 1326
1325 .background-initial { 1327 .background-initial {
1326 opacity: 0; 1328 opacity: 0;
1327 } 1329 }
1328 1330
1329 .background-final { 1331 .background-final {
1330 opacity: 1; 1332 opacity: 1;
1331 } 1333 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698