Skip to content

Commit

Permalink
Merge pull request #244 from olinlibrary/osteele/dev
Browse files Browse the repository at this point in the history
Protected events
  • Loading branch information
osteele committed May 19, 2018
2 parents a65d446 + 550a3fa commit e3b8af9
Show file tree
Hide file tree
Showing 18 changed files with 1,172 additions and 176 deletions.
2 changes: 0 additions & 2 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ globals:
rules:
# Intentional exceptions to Airbnb rules:
no-alert: off # currently used in the UI
no-plusplus: [error, allowForLoopAfterthoughts: true]
no-underscore-dangle: [error, allow: [__REDUX_DEVTOOLS_EXTENSION_COMPOSE__]]
no-unused-vars: [error, argsIgnorePattern: "^_" ]
react/jsx-no-target-blank: off
Expand All @@ -24,7 +23,6 @@ rules:
no-restricted-globals: warn
react/no-find-dom-node: warn
react/prop-types: off # TODO: #123
react/require-default-props: warn

# TODO: #118 accessibility
jsx-a11y/anchor-is-valid: off
Expand Down
6 changes: 3 additions & 3 deletions public/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ span.label {
margin: 0.3rem 0.2em;
}

.button.label:hover:not(.no-hover) {
.button.label:hover:not(.disabled):not(.no-hover) {
background-color: #14679e;
color: #fefefe;
cursor: pointer;
Expand All @@ -354,13 +354,13 @@ span.label {
}

.add-edit-filters .button.label,
.add-edit-filters .button.label:not(.selected):not(.no-hover):hover {
.add-edit-filters .button.label:not(.selected):not(.disabled):not(.no-hover):hover {
background-color: #14679e !important;
color: #fefefe !important;
}

.add-edit-filters .button.label:not(.selected),
.add-edit-filters .button.label.selected:not(.no-hover):hover {
.add-edit-filters .button.label.selected:not(.disabled):not(.no-hover):hover {
background-color: white !important;
border-color: #14679e !important;
color: #14679e !important;
Expand Down

0 comments on commit e3b8af9

Please sign in to comment.