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

Unified Diff: tools/telemetry/third_party/coverage/tests/farm/html/gold_styled/style.css

Issue 1366913004: Add coverage Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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
Index: tools/telemetry/third_party/coverage/tests/farm/html/gold_styled/style.css
diff --git a/third_party/pycoverage/coverage/htmlfiles/style.css b/tools/telemetry/third_party/coverage/tests/farm/html/gold_styled/style.css
similarity index 87%
copy from third_party/pycoverage/coverage/htmlfiles/style.css
copy to tools/telemetry/third_party/coverage/tests/farm/html/gold_styled/style.css
index 811c64019c06283c686e184b4b3355c03f5ab545..2dfb8f65ff9bc3bb96a54da6f1afcf72ea1025d2 100644
--- a/third_party/pycoverage/coverage/htmlfiles/style.css
+++ b/tools/telemetry/third_party/coverage/tests/farm/html/gold_styled/style.css
@@ -1,6 +1,9 @@
-/* CSS styles for Coverage. */
+/* Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 */
+/* For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt */
+
+/* CSS styles for coverage.py. */
/* Page-wide styles */
-html, body, h1, h2, h3, p, td, th {
+html, body, h1, h2, h3, p, table, td, th {
margin: 0;
padding: 0;
border: 0;
@@ -31,6 +34,17 @@ p {
table {
border-collapse: collapse;
}
+td {
+ vertical-align: top;
+}
+table tr.hidden {
+ display: none !important;
+ }
+
+p#no_rows {
+ display: none;
+ font-size: 1.2em;
+ }
a.nav {
text-decoration: none;
@@ -53,11 +67,11 @@ a.nav:hover {
font-family: "courier new", monospace;
}
-#indexfile #footer {
+.indexfile #footer {
margin: 1em 3em;
}
-#pyfile #footer {
+.pyfile #footer {
margin: 1em 1em;
}
@@ -80,6 +94,16 @@ a.nav:hover {
h1 {
font-size: 1.25em;
+ display: inline-block;
+}
+
+#filter_container {
+ display: inline-block;
+ float: right;
+ margin: 0 2em 0 0;
+}
+#filter_container input {
+ width: 10em;
}
h2.stats {
@@ -130,6 +154,7 @@ h2.stats {
/* Help panel */
#keyboard_icon {
float: right;
+ margin: 5px;
cursor: pointer;
}
@@ -141,11 +166,11 @@ h2.stats {
display: none;
}
-#indexfile .help_panel {
+.indexfile .help_panel {
width: 20em; height: 4em;
}
-#pyfile .help_panel {
+.pyfile .help_panel {
width: 16em; height: 8em;
}
@@ -288,9 +313,11 @@ td.text {
text-decoration: underline;
color: #000;
}
-#index tr.total {
+#index tr.total,
+#index tr.total_dynamic {
}
-#index tr.total td {
+#index tr.total td,
+#index tr.total_dynamic td {
font-weight: bold;
border-top: 1px solid #ccc;
border-bottom: none;

Powered by Google App Engine
This is Rietveld 408576698