Skip to content

Commit

Permalink
Update encapsulation fixture
Browse files Browse the repository at this point in the history
This is the result of a bug being fixed in postcss-import@8.1.3

postcss/postcss-import#211
  • Loading branch information
simonsmith committed Nov 12, 2016
1 parent fc91c46 commit 93d33fb
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions test/fixtures/encapsulation.out.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
word-spacing: normal;
word-wrap: normal;
}

.Component,
.Component-item,
.Encapsulation,
Expand Down Expand Up @@ -97,42 +98,53 @@
width: auto;
z-index: auto;
}

/** @define Component */

.u-img {
border-radius: 50%;
}

.Component {
background: rgba(255, 0, 0, 0.9);
font-size: 26px;
width: 16.66667%;
}

.Component-item {
display: flex;

color: green;
}

@media (min-width: 200px) {

.Component-item {
color: red;
}
}
.u-img {
border-radius: 50%;
}

.Encapsulation {
color: red;
width: 50px;
}

.Encapsulation-descendant {
background-color: #eee;
}

.Encapsulation-descendant:hover {
background-color: #f00;
}

.Encapsulation-descendant[aria-hidden="true"] {
display: none;
}

.Encapsulation.is-inState {
background-color: red;
}

.Encapsulation-item,
.Encapsulation span {
-webkit-filter: blur(10px);
Expand Down

0 comments on commit 93d33fb

Please sign in to comment.