diff options
author | Siri Hansen <[email protected]> | 2019-01-21 14:46:33 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2019-01-21 14:46:33 +0100 |
commit | 9c8075413728e3be373d7dff2a7168b3983e0be3 (patch) | |
tree | 35a3ed275f2ea6f333f5be903e39ddbe6c5a9700 /lib/tools | |
parent | 88cc8d25abe9e6fb7708a6ea673aa0637a28860a (diff) | |
parent | a8364425a7190b65cd33e58ac3c155a77c462b74 (diff) | |
download | otp-9c8075413728e3be373d7dff2a7168b3983e0be3.tar.gz otp-9c8075413728e3be373d7dff2a7168b3983e0be3.tar.bz2 otp-9c8075413728e3be373d7dff2a7168b3983e0be3.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/tools')
-rw-r--r-- | lib/tools/priv/styles.css | 4 | ||||
-rw-r--r-- | lib/tools/src/cover.erl | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lib/tools/priv/styles.css b/lib/tools/priv/styles.css index e10e94e3ad..d4e3d79596 100644 --- a/lib/tools/priv/styles.css +++ b/lib/tools/priv/styles.css @@ -53,10 +53,12 @@ table thead { display: none; } table td.line, +table td.line a, table td.hits { width: 20px; background: #eaeaea; text-align: center; + text-decoration: none; font-size: 11px; padding: 0 10px; color: #949494; @@ -68,6 +70,7 @@ table td.hits { background-color: #f0f0f0; } tr.miss td.line, +tr.miss td.line a, tr.miss td.hits { background-color: #ffdce0; border-color: #fdaeb7; @@ -76,6 +79,7 @@ tr.miss td { background-color: #ffeef0; } tr.hit td.line, +tr.hit td.line a, tr.hit td.hits { background-color: #cdffd8; border-color: #bef5cb; diff --git a/lib/tools/src/cover.erl b/lib/tools/src/cover.erl index d7269e3f27..4f3707d2ed 100644 --- a/lib/tools/src/cover.erl +++ b/lib/tools/src/cover.erl @@ -2563,8 +2563,9 @@ table_row(Line, L) -> table_data(Line, L, N) -> LineNoNL = Line -- "\n", ["<td class=\"line\" id=\"L",integer_to_list(L),"\">", + "<a href=\"#L",integer_to_list(L),"\">", integer_to_list(L), - "</td>\n", + "</a></td>\n", "<td class=\"hits\">",maybe_integer_to_list(N),"</td>\n", "<td class=\"source\"><code>",LineNoNL,"</code></td>\n</tr>\n"]. |