Skip to content

Commit

Permalink
Beautify search usage icon on hover
Browse files Browse the repository at this point in the history
  • Loading branch information
ElaadF committed May 14, 2024
1 parent 7f02c02 commit d379812
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -245,11 +245,11 @@ displayNodePropertyRow model =
case editedProperty of
Nothing ->
tr []
[ td [class "default-actions"]
[ td []
[ div[]
[ text p.name
, providerBadge
, span [class "action-icon", title "Find usage of this property", onClick (CallApi (findPropertyUsage p.name ))]
, span [class "find-action action-icon", title "Find usage of this property", onClick (CallApi (findPropertyUsage p.name ))]
[ i [class "fas fa-search"][]
]
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,13 @@ td.listclose:after {
opacity: 1;
}

#nodePropertiesTab > tbody > tr > td > div > span.find-action {
opacity:0;
}
#nodePropertiesTab > tbody > tr:hover > td > div > span.find-action {
opacity: 1;
}

#nodePropertiesTab th:first-child{
width: 20% !important;
}
Expand Down

0 comments on commit d379812

Please sign in to comment.