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

Extend stars component #36

Merged
merged 30 commits into from
Jan 3, 2017
Merged
Changes from 2 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
13a4f7e
Add basic star select component
kaytcat Dec 22, 2016
4d29df1
Add some animations/colors
kaytcat Dec 31, 2016
88fb1e4
Remove color darkening on click and make default grey
kaytcat Jan 2, 2017
c04c0c2
Fix column widths
kaytcat Jan 2, 2017
614b5e7
Merge stars and ratingsStars into one whahaha
kaytcat Jan 2, 2017
fe5b325
Add multicolours and remove on hover effects
kaytcat Jan 2, 2017
c2462e5
Clean up and fix default styling of static stars
kaytcat Jan 2, 2017
d190803
Add a bit more pop
kaytcat Jan 2, 2017
0e234b7
Fix listing error
kaytcat Jan 2, 2017
f3f372f
Add fall back styles for i.e.
kaytcat Jan 2, 2017
1ea9aba
Fix extra space
kaytcat Jan 2, 2017
5bdf306
Update docs and fix multicolours bug
kaytcat Jan 2, 2017
aa08230
Fix indentation
feychou Jan 3, 2017
a56b852
Adjust text and indentation for docs
feychou Jan 3, 2017
e8f7e7f
Add 0 value
kaytcat Jan 3, 2017
5041369
Merge branch 'KUNPRO-67-implement-star-selector' of github.com:kununu…
kaytcat Jan 3, 2017
72d4146
Refactor color handling
feychou Jan 3, 2017
23fcca4
Merge update for accessibility
feychou Jan 3, 2017
9fe7ca4
Don’t add starsGroup padding to 0 input
kaytcat Jan 3, 2017
b4b8839
Add arrayOf validation
feychou Jan 3, 2017
956aaf5
Merge branch 'KUNPRO-67-implement-star-selector' of github.com:kununu…
feychou Jan 3, 2017
9c3df19
Convert keys to bools
feychou Jan 3, 2017
740edb3
Fix incorrect rounding on full stars
kaytcat Jan 3, 2017
9e6b802
Fix rounding and refactor
kaytcat Jan 3, 2017
2282c45
Merge branch 'KUNPRO-67-implement-star-selector' of github.com:kununu…
kaytcat Jan 3, 2017
c75794f
Add new tests
feychou Jan 3, 2017
a1c0a4f
Change API in docs
feychou Jan 3, 2017
d8fa47c
Change docs colors
feychou Jan 3, 2017
770b67d
Stricter validation
feychou Jan 3, 2017
25cf687
Latest docs build
feychou Jan 3, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/Stars/index.jsx
Original file line number Diff line number Diff line change
@@ -112,7 +112,7 @@ export default class Stars extends Component {
{[...Array(totalStars + 1)].map((star, key) =>
<div
key={key}
className={styles.starsGroup}>
className={key > 0 && styles.starsGroup}>

{selectable &&
<input