Updated subscription action menu button

This commit is contained in:
Peter Zimon 2021-05-06 18:24:08 +02:00
parent f88fce5f3a
commit 9452c0cd2d
2 changed files with 10 additions and 1 deletions

View File

@ -144,7 +144,7 @@
<div class="gh-memberproduct-created">Created on {{sub.startDate}}</div>
<span class="action-menu">
<GhDropdownButton @dropdownName="subscription-menu-{{sub.id}}" @classNames="gh-btn gh-btn-outline gh-btn-icon only-has-icon" @title="User Actions">
<GhDropdownButton @dropdownName="subscription-menu-{{sub.id}}" @classNames="gh-btn gh-btn-outline gh-btn-icon gh-btn-subscription-action only-has-icon" @title="User Actions">
<span>
{{svg-jar "dotdotdot"}}
<span class="hidden">Subscription menu</span>

View File

@ -1675,6 +1675,15 @@ p.gh-members-import-errordetail:first-of-type {
right: 0;
}
.gh-memberproduct-subscription .action-menu .gh-btn-subscription-action {
opacity: 0;
}
.gh-memberproduct-subscription:hover .action-menu .gh-btn-subscription-action,
.gh-memberproduct-subscription .action-menu .gh-btn-subscription-action.open {
opacity: 1;
}
.gh-cp-memberproduct.multiple-subs .gh-memberproduct-subscription .action-menu {
top: 20px;
}