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

Commit

Permalink
Removed :not() selectors.
Browse files Browse the repository at this point in the history
  • Loading branch information
Martynas Žilinskas committed Mar 2, 2019
1 parent 7d2ed7c commit c3f37ed
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "istanbul-azure-reporter",
"version": "0.1.2",
"version": "0.1.3",
"description": "Code coverage HTML reporter with Azure DevOps limitations in mind",
"main": "dist/index.js",
"scripts": {
Expand Down
11 changes: 4 additions & 7 deletions styles/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
padding: 1rem;

.breadcrumbs {
> .item:not(:last-child) {
padding-right: 0.5rem;
.item {
padding-right: 0.25rem;
}
}

Expand All @@ -26,10 +26,7 @@

.item {
font-size: 0.8rem;

&:not(:last-child) {
margin-right: 1rem;
}
margin-right: 1rem;

.pct {
font-weight: bold;
Expand All @@ -40,7 +37,7 @@
color: #7f7f7f;
}

> span:not(:last-child) {
> span {
margin-right: 0.25rem;
}
}
Expand Down
6 changes: 4 additions & 2 deletions styles/summary.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@
border-bottom: 0;

td {
&:not(:last-child) {
border-right: 1px solid lightgrey;
border-right: 1px solid lightgrey;

&:last-child {
border-right: none;
}

&.low {
Expand Down

0 comments on commit c3f37ed

Please sign in to comment.