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

Side by Side Diff: client/tools/coverage.css

Issue 9837113: Move update.py to samples/swarm, remove a bunch of deprecated files for (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 8 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 | client/tools/coverage.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 .menu {
2 padding:0 20px 0 0;
3 }
4
5 .menu-table {
6 border-collapse: collapse;
7 width:100%;
8 }
9
10 .file {
11 border:1px solid #808080;
12 cursor:pointer;
13 }
14
15 .file:hover {
16 background-color: #f0f0b0;
17 }
18
19 .file-selected {
20 background-color: #cccccc;
21 }
22
23 .package {
24 font-family:monospace;
25 border: 0px;
26 position: relative;
27 }
28
29 .file-name {
30 font-family:monospace;
31 border: 0px;
32 }
33
34 .file-percent {
35 font-family:monospace;
36 display: inline;
37 text-align: right;
38 border: 0px;
39 width: 100px;
40 position: relative;
41 }
42
43 .linenum {
44 font-family:monospace;
45 white-space: pre;
46 display:block;
47 }
48
49 .yes {
50 background:#af8;
51 }
52
53 .no {
54 background:#f77;
55 }
56
57 .not-code {
58 background:#fff;
59 }
60
61 .coverage-bar {
62 background:#f77;
63 width:100px;
64 height:14px;
65 position:absolute;
66 top:1px;
67 left:0px;
68 }
69
70 .coverage-bar-inner {
71 background:#af8;
72 height:14px;
73 position:absolute;
74 top:0px;
75 left:0px;
76 }
77
78 .details {
79 position:fixed;
80 background:white;
81 z-index:10;
82 border:1px solid black;
83 border-radius:5px;
84 padding:3px;
85 font-family:monospace;
86 width:95%;
87 left:20px;
88 top:20px;
89 }
90
91 .details-body {
92 overflow-x:auto;
93 overflow-y:scroll;
94 height:800px;
95 }
96
97 .close {
98 text-align:right;
99 cursor:pointer;
100 padding-bottom:10px;
101 }
102
103 .hidden {
104 display: none;
105 }
OLDNEW
« no previous file with comments | « no previous file | client/tools/coverage.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698