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

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: update to match spec 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 1264 matching lines...) Expand 10 before | Expand all | Expand 10 after
1275 .error-message-padding { 1275 .error-message-padding {
1276 margin-bottom: 10px; 1276 margin-bottom: 10px;
1277 } 1277 }
1278 1278
1279 html[dir=rtl] .error-message { 1279 html[dir=rtl] .error-message {
1280 background-position: right top; 1280 background-position: right top;
1281 } 1281 }
1282 1282
1283 #version-labels { 1283 #version-labels {
1284 -webkit-transition: all 500ms linear; 1284 -webkit-transition: all 500ms linear;
1285 color: #999; 1285 color: #fff;
1286 font-size: 11px; 1286 font-size: 11px;
1287 margin: 10px; 1287 margin: 10px;
1288 opacity: 1.0;
1289 text-align: end; 1288 text-align: end;
1290 text-shadow: 0 1px 1px #fff; 1289 text-shadow: 0 0 4px rgba(0,0,0,.6), 0 1px 2px rgba(0,0,0,.8), 0 -1px 2px rgba (0,0,0,1);
Daniel Erat 2012/08/15 22:18:17 couldn't find anything about line length for css f
1291 } 1290 }
1292 1291
1293 #offline-network-control { 1292 #offline-network-control {
1294 margin-left: 60px; 1293 margin-left: 60px;
1295 } 1294 }
1296 1295
1297 #notification-area { 1296 #notification-area {
1298 color: #666; 1297 color: #666;
1299 position: absolute; 1298 position: absolute;
1300 text-align: center; 1299 text-align: center;
(...skipping 20 matching lines...) Expand all
1321 width: 100%; 1320 width: 100%;
1322 } 1321 }
1323 1322
1324 .background-initial { 1323 .background-initial {
1325 opacity: 0; 1324 opacity: 0;
1326 } 1325 }
1327 1326
1328 .background-final { 1327 .background-final {
1329 opacity: 1; 1328 opacity: 1;
1330 } 1329 }
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