Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include daypicker, add cascading link color #119

Merged
merged 3 commits into from
May 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- `Fixed` for any bug fixes.
- `Security`

## [2.15.1] - 2019-05-21

- https://github.com/teamsnap/teamsnap-ui/pull/119

### Changed

- `Added` daypicker styles
- `Added` u-linkCascade class

## [2.15.0] - 2019-05-16

- https://github.com/teamsnap/teamsnap-ui/pull/116
Expand Down
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": "@teamsnap/teamsnap-ui",
"version": "2.15.0",
"version": "2.15.1",
"description": "a CSS component library for TeamSnap",
"main": "dist/js/index.js",
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions src/css/components/index.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@import "Button";
@import "ButtonGroup";
@import "Checkbox";
@import "Daypicker";
@import "Divider";
@import "Feedback";
@import "FieldGroup";
Expand Down
8 changes: 8 additions & 0 deletions src/css/utils/color.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,14 @@
}
}

// Applies link color and hover states to all child elements
.u-linkCascade * {
color: $color-links !important;
&:hover, &:active {
color: $color-links--hover !important;
}
}

// * BG colors

.u-bgPositive {
Expand Down