Fix issue #3, focus issue on navbar
This commit is contained in:
parent
2d9747482b
commit
27e3dc9b14
3
TODO
3
TODO
@ -5,9 +5,6 @@
|
|||||||
8. Search
|
8. Search
|
||||||
9. Discover
|
9. Discover
|
||||||
|
|
||||||
# CSS
|
|
||||||
* Focus stays on navbar
|
|
||||||
|
|
||||||
# API middleware
|
# API middleware
|
||||||
* https://github.com/reactjs/redux/issues/1824#issuecomment-228609501
|
* https://github.com/reactjs/redux/issues/1824#issuecomment-228609501
|
||||||
* https://medium.com/@adamrackis/querying-a-redux-store-37db8c7f3b0f#.eezt3dano
|
* https://medium.com/@adamrackis/querying-a-redux-store-37db8c7f3b0f#.eezt3dano
|
||||||
|
597
app/dist/fix.ie9.js
vendored
597
app/dist/fix.ie9.js
vendored
File diff suppressed because one or more lines are too long
5818
app/dist/index.js
vendored
5818
app/dist/index.js
vendored
File diff suppressed because one or more lines are too long
8534
app/dist/style.css
vendored
8534
app/dist/style.css
vendored
File diff suppressed because one or more lines are too long
@ -25,15 +25,22 @@ $lightgrey: #eee;
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.link:hover,
|
.link:hover {
|
||||||
|
color: $foreground;
|
||||||
|
background-color: $hoverBackground !important;
|
||||||
|
}
|
||||||
|
|
||||||
.link:focus {
|
.link:focus {
|
||||||
color: $foreground;
|
color: $foreground;
|
||||||
background-color: $hoverBackground !important; /* TODO: important */
|
background-color: transparent !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.active {
|
.active {
|
||||||
composes: link;
|
composes: link;
|
||||||
background-color: $activeBackground;
|
background-color: $activeBackground !important;
|
||||||
|
}
|
||||||
|
.active:focus {
|
||||||
|
background-color: $activeBackground !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
|
Loading…
Reference in New Issue
Block a user