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

Side by Side Diff: tools/bug_chomper/res/style.css

Issue 731123003: Remove bug_chomper (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « tools/bug_chomper/res/favicon.ico ('k') | tools/bug_chomper/res/third_party/jquery.tablednd.js » ('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 table#buglist {
2 border-collapse: collapse;
3 border-style: solid;
4 border-color: rgba(0, 0, 0, 1.0);
5 border-width: 3px;
6 width: 80%;
7 margin-left: 10%;
8 margin-right: 10%;
9 }
10
11 tr {
12 border-color: rgba(0, 0, 0, 1.0);
13 border-style: dashed;
14 border-width: 1px 3px;
15 }
16
17 tr.priority_Critical {
18 background-color: rgba(255, 0, 0, 0.3);
19 }
20
21 tr.priority_High {
22 background-color: rgba(255, 165, 0, 0.3);
23 }
24
25 tr.priority_Medium {
26 background-color: rgba(255, 255, 0, 0.3);
27 }
28
29 tr.priority_Low {
30 background-color: rgba(0, 255, 0, 0.3);
31 }
32
33 tr.priority_Never {
34 background-color: rgba(190, 190, 190, 0.3);
35 }
36
37 tbody {
38 background-color: rgba(190, 190, 190, 0.1);
39 }
40
41 tr.priority_row {
42 background-color: rgba(190, 190, 190, 0.1);
43 border-style: solid;
44 }
45
46 tr.tr_head {
47 background-color: rgba(190, 190, 190, 0.5);
48 }
49
50 #table_header {
51 text-align: center;
52 }
53
54 td {
55 padding: 5px;
56 }
57
58 td.priority_td {
59 text-align: center;
60 }
61
62 a {
63 color: black;
64 }
65
66 a:visited {
67 color: black;
68 }
69
70 a:hover {
71 text-decoration: none;
72 }
OLDNEW
« no previous file with comments | « tools/bug_chomper/res/favicon.ico ('k') | tools/bug_chomper/res/third_party/jquery.tablednd.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698