Fix issue #3, focus issue on navbar

This commit is contained in:
Lucas Verney 2016-07-30 00:44:32 +02:00
parent 2d9747482b
commit 27e3dc9b14
5 changed files with 14929 additions and 36 deletions

3
TODO
View File

@ -5,9 +5,6 @@
8. Search
9. Discover
# CSS
* Focus stays on navbar
# API middleware
* https://github.com/reactjs/redux/issues/1824#issuecomment-228609501
* https://medium.com/@adamrackis/querying-a-redux-store-37db8c7f3b0f#.eezt3dano

597
app/dist/fix.ie9.js vendored

File diff suppressed because one or more lines are too long

5818
app/dist/index.js vendored

File diff suppressed because one or more lines are too long

8534
app/dist/style.css vendored

File diff suppressed because one or more lines are too long

View File

@ -25,15 +25,22 @@ $lightgrey: #eee;
text-decoration: none;
}
.link:hover,
.link:hover {
color: $foreground;
background-color: $hoverBackground !important;
}
.link:focus {
color: $foreground;
background-color: $hoverBackground !important; /* TODO: important */
background-color: transparent !important;
}
.active {
composes: link;
background-color: $activeBackground;
background-color: $activeBackground !important;
}
.active:focus {
background-color: $activeBackground !important;
}
.title {