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
|
||||
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
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;
|
||||
}
|
||||
|
||||
.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 {
|
||||
|
Loading…
Reference in New Issue
Block a user