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

Side by Side Diff: chrome/browser/sync/resources/about_sync.html

Issue 160598: Add files to browser/sync. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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
OLDNEW
(Empty)
1 <html>
2 </html>
3 <html id="t">
4 <head>
5 <title>About Sync</title>
6
7 <style type="text/css">
8 body {
9 font-size: 84%;
10 font-family: Arial, Helvetica, sans-serif;
11 padding: 0.75em;
12 margin: 0;
13 min-width: 45em;
14 }
15
16 h1 {
17 font-size: 110%;
18 font-weight: bold;
19 color: #4a8ee6;
20 letter-spacing: -1px;
21 padding: 0;
22 margin: 0;
23 }
24 h2 {
25 font-size: 110%;
26 letter-spacing: -1px;
27 font-weight: normal;
28 color: #4a8ee6;
29 padding: 0;
30 margin: 0;
31 padding: 0.5em 1em;
32 color: #3a75bd;
33 margin-left: -38px;
34 padding-left: 38px;
35
36 border-top: 1px solid #3a75bd;
37 padding-top: 0.5em;
38
39 }
40 h2:first-child {
41 border-top: 0;
42 padding-top: 0;
43 }
44
45 div#header {
46 padding: 0.75em 1em;
47 padding-top: 0.6em;
48 padding-left: 0;
49 margin-bottom: 0.75em;
50 position: relative;
51 overflow: hidden;
52 background: #5296de;
53 -webkit-background-size: 100%;
54 border: 1px solid #3a75bd;
55 -webkit-border-radius: 6px;
56 color: white;
57 text-shadow: 0 0 2px black;
58 }
59 div#header h1 {
60 padding-left: 37px;
61 margin: 0;
62 display: inline;
63 background: url('gear.png') 12px 60% no-repeat;
64 color: white;
65 }
66 div#header p {
67 font-size: 84%;
68 font-style: italic;
69 padding: 0;
70 margin: 0;
71 color: white;
72 padding-left: 0.4em;
73 display: inline;
74 }
75
76 table.list {
77 line-height: 200%;
78 border-collapse: collapse;
79 font-size: 84%;
80 table-layout: fixed;
81 }
82 table.list:not([class*='filtered']) tr:nth-child(odd) td {
83 background: #eff3ff;
84 }
85
86 table.list td {
87 padding: 0 0.5em;
88 vertical-align: top;
89 line-height: 1.4em;
90 padding-top: 0.35em;
91 }
92 table.list tr td:nth-last-child(1),
93 table.list tr th:nth-last-child(1) {
94 padding-right: 1em;
95 }
96 table.list:not([class*='filtered']) .tab .name {
97 padding-left: 1.5em;
98 }
99
100 table.list .name {
101 }
102
103 table.list .name div {
104 height: 1.6em;
105 overflow: hidden;
106 white-space: nowrap;
107 text-overflow: ellipsis;
108 }
109
110 table.list .number {
111 width: 7em;
112 text-align: right;
113 }
114
115 table.list#details tr:not([class*='firstRow']) > *:nth-child(1),
116 table.list#details tr:not([class*='firstRow']) > *:nth-child(4),
117 table.list#details tr.firstRow th:nth-child(1),
118 table.list#details tr.firstRow th:nth-child(2) {
119 border-right: 1px solid #b5c6de;
120 }
121 table.list#details .name {
122 padding-left: 25px;
123 background-position: 5px center;
124 background-repeat: no-repeat;
125 }
126 </style>
127 </head>
128 <body>
129 <div id='header'>
130 <h1>About Sync</h1>
131 <p> Sync engine diagnostic data</p>
132 </div>
133 <div id='content'>
134 <h2> Summary </h2>
135 <strong jscontent="summary"></strong>
136 <br /><br /><br />
137 <h2> Details </h2>
138 <table class='list' id='details'>
139 <tr>
140 <td class='name'> Authenticated </td>
141 <td class='number'>
142 <div jscontent="authenticated"> </div>
143 <div jsdisplay="!authenticated"
144 style="color:red"
145 jscontent="auth_problem"></div>
146 </td>
147 </tr>
148 </tr>
149 <tr>
150 <td class='name'>Last Synced</td>
151 <td class='number' jscontent="time_since_sync"> </td>
152 </tr>
153 <tr jsselect="details">
154 <td class='name'>
155 <div jscontent="stat_name"></div>
156 </td>
157 <td class='number'>
158 <div jscontent="stat_value"></div>
159 </td>
160 </tr>
161 </table>
162 </div>
163 </body>
164 </html>
165
OLDNEW
« no previous file with comments | « chrome/browser/sync/profile_sync_service_unittest.cc ('k') | chrome/browser/sync/resources/gaia_login.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698