8000 Update styling of SourceFilePage content by huangsam · Pull Request #1609 · jacoco/jacoco · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update styling of SourceFilePage content #1609

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8000
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
:root {
--grey-90:#fafafa;
--grey-80:#d6d3ce;
--grey-70:#cccccc;
--grey-60:#a0a0a0;
}

body, td {
font-family:sans-serif;
font-size:10pt;
Expand All @@ -9,8 +16,9 @@ h1 {
}

.breadcrumb {
border:#d6d3ce 1px solid;
padding:2px 4px 2px 4px;
border:var(--grey-80) 1px solid;
border-radius:5px;
padding:5px;
}

.breadcrumb .info {
Expand Down Expand Up @@ -78,8 +86,11 @@ h1 {
}

pre.source {
border:#d6d3ce 1px solid;
border:var(--grey-80) 1px solid;
border-radius:5px;
font-family:monospace;
background-color:var(--grey-90);
padding:5px 0px;
}

pre.source ol {
Expand All @@ -88,8 +99,8 @@ pre.source ol {
}

pre.source li {
border-left: 1px solid #D6D3CE;
color: #A0A0A0;
border-left: 0px;
color: var(--grey-60);
padding-left: 0px;
}

Expand Down Expand Up @@ -151,12 +162,12 @@ table.coverage thead td {
}

table.coverage thead td.bar {
border-left:#cccccc 1px solid;
border-left:var(--grey-70) 1px solid;
}

table.coverage thead td.ctr1 {
text-align:right;
border-left:#cccccc 1px solid;
border-left:var(--grey-70) 1px solid;
}

table.coverage thead td.ctr2 {
Expand All @@ -182,7 +193,7 @@ table.coverage thead td.down {
table.coverage tbody td {
white-space:nowrap;
padding:2px 6px 2px 6px;
border-bottom:#d6d3ce 1px solid;
border-bottom:var(--grey-80) 1px solid;
}

table.coverage tbody tr:hover {
Expand Down Expand Up @@ -228,14 +239,14 @@ table.coverage tfoot td.ctr2 {

.footer {
margin-top:20px;
border-top:#d6d3ce 1px solid;
border-top:var(--grey-80) 1px solid;
padding-top:2px;
font-size:8pt;
color:#a0a0a0;
color:var(--grey-60);
}

.footer a {
color:#a0a0a0;
color:var(--grey-60);
}

.right {
Expand Down
0