Skip to content
This repository has been archived by the owner on Dec 18, 2019. It is now read-only.

change font type to fix jenkins fe view #122

Open
wants to merge 5 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
72 changes: 36 additions & 36 deletions view/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
font-style: normal;
font-weight: 200;
src: local(Source Sans Pro ExtraLight),
local(SourceSansPro-ExtraLight),
url(https://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGIAPdqzPmKFFIYQ-46z3JxY.woff2) format('woff2');
local(SourceSansPro-ExtraLight),
url(https://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGIAPdqzPmKFFIYQ-46z3JxY.woff2) format('woff2');
}

* {
Expand All @@ -13,7 +13,7 @@
}

body {
font: .9em/1.2em Source Sans Pro;
JonasHillerDkd marked this conversation as resolved.
Show resolved Hide resolved
font: .9em/1.2em Source Sans Pro, Arial, Verdana, Helvetica, sans-serif;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please, keep only this line in your patch. The rest is not necessary.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But i cleaned up the code format. I think it should be necessary

color: rgb(43, 6, 1);
}

Expand Down Expand Up @@ -42,29 +42,29 @@ h2 {
background-color: rgba(244, 96, 37, .1);
}

[data-result-level="error"] h2 {
color: rgb(244, 96, 37);
}
[data-result-level="error"] h2 {
color: rgb(244, 96, 37);
}

[data-result-level="warning"] {
fill: rgb(254, 178, 54);
stroke: rgb(254, 178, 54);
background-color: rgba(254, 178, 54, .1);
}

[data-result-level="warning"] h2 {
color: rgb(254, 178, 54);
}
[data-result-level="warning"] h2 {
color: rgb(254, 178, 54);
}

[data-result-level="notice"] {
fill: rgb(10, 172, 207);
stroke: rgb(10, 172, 207);
background-color: rgba(10, 172, 207, .1);
}

[data-result-level="notice"] h2 {
color: rgb(10, 172, 207);
}
[data-result-level="notice"] h2 {
color: rgb(10, 172, 207);
}

text[data-result-level],
[data-result-level] text {
Expand Down Expand Up @@ -133,27 +133,27 @@ text[data-result-level],
transition: max-height .5s ease-in-out;
}

#controls > .all-notes:hover {
max-height: 1000px;
}

#controls > .all-notes > p {
cursor: pointer;
text-align: right;
text-decoration: underline;
margin-bottom: .7em;
}

#controls > .all-notes > ul {
list-style: none;
-moz-column-width: 3.5em;
-moz-column-gap: 2.5em;
-webkit-column-width: 3.5em;
-webkit-column-gap: 2.5em;
column-width: 3.5em;
column-gap: 2.5em;
}

#controls > .all-notes > ul > li > small {
float: right;
}
#controls > .all-notes:hover {
max-height: 1000px;
}

#controls > .all-notes > p {
cursor: pointer;
text-align: right;
text-decoration: underline;
margin-bottom: .7em;
}

#controls > .all-notes > ul {
list-style: none;
-moz-column-width: 3.5em;
-moz-column-gap: 2.5em;
-webkit-column-width: 3.5em;
-webkit-column-gap: 2.5em;
column-width: 3.5em;
column-gap: 2.5em;
}

#controls > .all-notes > ul > li > small {
float: right;
}