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

Unified Diff: tools/bug_chomper/res/style.css

Issue 274693002: BugChomper utility - rewrite in Go (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Line breaks and "go fmt" one more time Created 6 years, 7 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bug_chomper/res/style.css
diff --git a/tools/bug_chomper/res/style.css b/tools/bug_chomper/res/style.css
new file mode 100644
index 0000000000000000000000000000000000000000..726e5aecd562e0cd30f4dc474300a4098f59ee76
--- /dev/null
+++ b/tools/bug_chomper/res/style.css
@@ -0,0 +1,72 @@
+table#buglist {
+ border-collapse: collapse;
+ border-style: solid;
+ border-color: rgba(0, 0, 0, 1.0);
+ border-width: 3px;
+ width: 80%;
+ margin-left: 10%;
+ margin-right: 10%;
+}
+
+tr {
+ border-color: rgba(0, 0, 0, 1.0);
+ border-style: dashed;
+ border-width: 1px 3px;
+}
+
+tr.priority_Critical {
+ background-color: rgba(255, 0, 0, 0.3);
+}
+
+tr.priority_High {
+ background-color: rgba(255, 165, 0, 0.3);
+}
+
+tr.priority_Medium {
+ background-color: rgba(255, 255, 0, 0.3);
+}
+
+tr.priority_Low {
+ background-color: rgba(0, 255, 0, 0.3);
+}
+
+tr.priority_Never {
+ background-color: rgba(190, 190, 190, 0.3);
+}
+
+tbody {
+ background-color: rgba(190, 190, 190, 0.1);
+}
+
+tr.priority_row {
+ background-color: rgba(190, 190, 190, 0.1);
+ border-style: solid;
+}
+
+tr.tr_head {
+ background-color: rgba(190, 190, 190, 0.5);
+}
+
+#table_header {
+ text-align: center;
+}
+
+td {
+ padding: 5px;
+}
+
+td.priority_td {
+ text-align: center;
+}
+
+a {
+ color: black;
+}
+
+a:visited {
+ color: black;
+}
+
+a:hover {
+ text-decoration: none;
+}
« 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