Skip to content

Commit

Permalink
make Keywords color as People
Browse files Browse the repository at this point in the history
  • Loading branch information
Ebuson committed Feb 2, 2022
1 parent 414b6a6 commit 5993e99
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions kahuna/public/js/edits/list-editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -95,30 +95,40 @@ element--partial is part of gr-panel.

.image-info__people .element--partial .element__value,
.image-info__people .element--partial .element__remove,
.image-info__people .element--partial .element__add{
.image-info__people .element--partial .element__add,
.image-info__keywords .element--partial .element__value,
.image-info__keywords .element--partial .element__remove,
.image-info__keywords .element--partial .element__add{
background-color: white;
color: #222;
border-bottom: 0px;
}

.image-info__people .element__value,
.image-info__people .element__remove,
.image-info__people .element__add {
.image-info__people .element__add,
.image-info__keywords .element__value,
.image-info__keywords .element__remove,
.image-info__keywords .element__add {
background-color: #222;
color: #999;
border-bottom: 0px;
}

.image-info__people .element__link:hover,
.image-info__people .element__remove:hover {
.image-info__people .element__remove:hover,
.image-info__keywords .element__link:hover,
.image-info__keywords .element__remove:hover {
color: #00adee;
background-color: white;
}

.image-info__people .element--partial .element__add:hover gr-icon {
.image-info__people .element--partial .element__add:hover gr-icon,
.image-info__keywords .element--partial .element__add:hover gr-icon {
color: #717171;
}

.image-info__people .element--partial .element__remove:hover gr-icon {
.image-info__people .element--partial .element__remove:hover gr-icon,
.image-info__keywords .element--partial .element__remove:hover gr-icon {
color: #717171;
}

0 comments on commit 5993e99

Please sign in to comment.