Skip to content

Commit

Permalink
fix(gui): wrong dot colors
Browse files Browse the repository at this point in the history
  • Loading branch information
sipayRT committed Mar 5, 2018
1 parent 9cdd688 commit 0064762
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
22 changes: 18 additions & 4 deletions lib/static/gui.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,19 @@
color: #ccc;
}

.section_status_success > .section__title:before {
color: #038035;
}

.section_status_fail > .section__title:before,
.section_status_error > .section__title:before {
color: #c00;
}

.section_status_skipped > .section__title:before {
color: #ccc;
}

.section_status_queued > .section__title::before {
color: #e7d700;
}
Expand All @@ -23,14 +36,11 @@
color: #e7d700;
}

.section_status_updated > .section__title,
.section_status_updated > .section__title::before {
color: #038035;
}

.section_status_updated > .section__title {
color: #038035;
}

.report_show-only-errors .section_status_updated {
display: none
}
Expand All @@ -45,3 +55,7 @@
border: 1px solid #fff;
margin-top: 5px;
}

.section_collapsed .section__title:before {
transform: none;
}
6 changes: 5 additions & 1 deletion lib/static/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@
user-select: text;
}

.section__title:before {
height: 18px;
}

.section__title:before,
.toggle-open__switcher:before {
display: inline-block;
Expand Down Expand Up @@ -164,7 +168,7 @@
vertical-align: top;
padding: 0 3px;
border: none;
opacity: 0.5;
opacity: 0.15;
cursor: pointer;
}

Expand Down

0 comments on commit 0064762

Please sign in to comment.