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

Side by Side Diff: chrome/browser/resources/signin_internals/signin_index.css

Issue 421583002: Show GAIA/cookie accounts on the signin-internals page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: include for CrOS Created 6 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 | chrome/browser/resources/signin_internals/signin_index.html » ('j') | 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 h2 { 5 h2 {
6 color: rgb(74, 142, 230); 6 color: rgb(74, 142, 230);
7 font-size: 100%; 7 font-size: 100%;
8 margin-bottom: 0; 8 margin-bottom: 0;
9 } 9 }
10 10
(...skipping 12 matching lines...) Expand all
23 div { 23 div {
24 -webkit-column-break-inside: avoid; 24 -webkit-column-break-inside: avoid;
25 display: inline-block; 25 display: inline-block;
26 width: 100%; 26 width: 100%;
27 } 27 }
28 28
29 div#signin-info { 29 div#signin-info {
30 -webkit-columns: 2; 30 -webkit-columns: 2;
31 } 31 }
32 32
33 div#token-info { 33 div#token-info,
34 div#cookie-info {
34 -webkit-columns: 1; 35 -webkit-columns: 1;
35 } 36 }
36 37
37 table.signin-details { 38 table.signin-details {
38 width: 100%; 39 width: 100%;
39 } 40 }
40 41
41 tr:nth-child(odd) { 42 tr:nth-child(odd) {
42 background: rgb(239, 243, 255); 43 background: rgb(239, 243, 255);
43 } 44 }
(...skipping 23 matching lines...) Expand all
67 tr[highlighted] { 68 tr[highlighted] {
68 -webkit-animation-duration: 3s; 69 -webkit-animation-duration: 3s;
69 -webkit-animation-name: highlight1; 70 -webkit-animation-name: highlight1;
70 -webkit-animation-timing-function: linear; 71 -webkit-animation-timing-function: linear;
71 } 72 }
72 73
73 tr[highlighted]:nth-child(odd) { 74 tr[highlighted]:nth-child(odd) {
74 -webkit-animation-duration: 3s; 75 -webkit-animation-duration: 3s;
75 -webkit-animation-name: highlight2; 76 -webkit-animation-name: highlight2;
76 -webkit-animation-timing-function: linear; 77 -webkit-animation-timing-function: linear;
77 } 78 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/signin_internals/signin_index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698