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

Side by Side Diff: chrome/browser/resources/chromeos/provided_file_systems.css

Issue 301873002: [fsp] Show request logs in chrome://provided-file-systems. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 6 years, 6 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
1 /* Copyright 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 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 5
6 body { 6 body {
7 background-color: rgba(0, 0, 0, 0.05);
7 font-family: 'Verdana', 'Arial'; 8 font-family: 'Verdana', 'Arial';
8 font-size: 14px; 9 font-size: 14px;
9 margin: 20px; 10 margin: 20px;
10 } 11 }
11 12
12 h1 { 13 #fileSystems,
13 font-size: 20px; 14 #requestEvents {
14 font-weight: normal; 15 background-color: white;
16 box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
17 margin-bottom: 20px;
15 } 18 }
16 19
17 table { 20 #fileSystems table,
21 #requestEvents table {
18 border-collapse: collapse; 22 border-collapse: collapse;
19 width: 100%; 23 width: 100%;
20 } 24 }
21 25
22 table th { 26 #fileSystems th,
23 background-color: rgb(92, 107, 192); 27 #requestEvents th {
24 color: white; 28 height: 30px;
25 font-weight: normal;
26 height: 50px;
27 } 29 }
28 30
29 table td { 31 #fileSystems .message {
30 border-bottom: 1px solid #eee; 32 border-top: 1px solid #eee;
33 }
34
35 #fileSystems td {
36 border-top: 1px solid #eee;
31 height: 40px; 37 height: 40px;
32 line-height: 24px; 38 line-height: 24px;
33 text-align: center; 39 text-align: center;
34 } 40 }
35 41
36 table td .icon { 42 #fileSystems td .icon {
37 display: inline-block; 43 display: inline-block;
38 height: 24px; 44 height: 24px;
39 vertical-align: middle; 45 vertical-align: middle;
40 width: 24px; 46 width: 24px;
41 } 47 }
48
49 #fileSystems tbody tr {
50 cursor: pointer;
51 }
52
53 #fileSystems tbody tr:active td {
54 background-color: #eee;
55 }
56
57 #requestEvents {
58 font-size: 12px;
59 }
60
61 #requestEvents td {
62 padding: 8px;
63 text-align: center;
64 vertical-align: top;
65 }
66
67 #requestEvents td {
68 border-top: 1px solid #eee;
69 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698