Skip to content

Commit

Permalink
chore(changelog): add note about selectors
Browse files Browse the repository at this point in the history
  • Loading branch information
jgw96 authored Sep 29, 2016
1 parent 3671f30 commit 87330b3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,15 @@ Note: For details on NgModules you can read the Angular docs on them [here](http

14. Move any variables from the mode specific sass files in your `beta.11` app into the `app.variables` file under the mode heading in the new RC0 app.

15. Add selectors to each of your components that are used as pages. These selectors will be used for scoped sass. With this change this is now the proper way to scope your sass for an individual page:
```
page-selector-you-added {
#title {
color: blue;
}
}
```


#### Modifying your Existing Project

Expand Down Expand Up @@ -440,6 +449,15 @@ Note: For details on NgModules you can read the Angular docs on them [here](http

34. Add appropriate icon attributes, if the icon is on the left of the text in a button it should get `icon-left`, if the icon is on the right add `icon-right`, and if the button only has an icon in it, add the `icon-only` attribute to the button. [See New Behavior of Icons in Buttons](#new-behavior-of-icons-in-buttons).

35. Add selectors to each of your components that are used as pages. These selectors will be used for scoped sass. With this change this is now the proper way to scope your sass for an individual page:
```
page-selector-you-added {
#title {
color: blue;
}
}
```

### Bug Fixes

* **action-sheet:** add icon-left to the button if an icon exists ([a731528](https://github.com/driftyco/ionic/commit/a731528))
Expand Down

0 comments on commit 87330b3

Please sign in to comment.