Skip to content
This repository has been archived by the owner on Mar 23, 2023. It is now read-only.

misc: invert identicon hover behaviour #1025

Merged
merged 3 commits into from Jan 28, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/renderer/components/Wallet/WalletTable.vue
Expand Up @@ -242,10 +242,10 @@ export default {
@apply .bg-theme-table-row-hover .cursor-pointer;
}
.WalletTable tbody tr:hover .identicon {
transition: 0.5s;
opacity: 0.5;
opacity: 1;
}
.WalletTable .identicon {
transition: 0.5s;
opacity: 0.5;
}
</style>
10 changes: 7 additions & 3 deletions src/renderer/pages/Contact/ContactAll.vue
Expand Up @@ -291,14 +291,18 @@ export default {
@apply .m-6;
}
.ContactAll__grid__contact:hover .identicon {
transition: 0.5s;
opacity: 0.5;
opacity: 1;
}
.ContactAll__grid__contact:hover .identicon-placeholder {
opacity: 0.25;
opacity: 0.5;
}
.ContactAll__grid__contact .identicon {
transition: 0.5s;
opacity: 0.5;
}
.ContactAll__grid__contact .identicon-placeholder {
transition: 0.5s;
opacity: 0.25;
}
.ContactAll__grid__contact__name {
color: #037cff;
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/pages/Wallet/WalletAll.vue
Expand Up @@ -401,13 +401,13 @@ export default {
@apply .m-6
}
.WalletAll__grid__wallet:hover .identicon {
transition: 0.5s;
opacity: 0.5;
opacity: 1;
}
.WalletAll__grid__wallet__name {
color: #037cff;
}
.WalletAll__grid__wallet .identicon {
opacity: 0.5;
transition: 0.5s;
}
@screen lg {
Expand Down