Skip to content

Commit

Permalink
fix: edit / delete subscription menu not accessible (#689)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellite authored Jan 12, 2025
1 parent f903ff6 commit b668d37
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
4 changes: 3 additions & 1 deletion includes/list_subscriptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,9 @@ class="name"><?php include $imagePath . "images/siteicons/svg/subscription.php";
<?php
if ($showSubscriptionProgress === 'true') {
?>
<span class="subscription-progress" style="width: <?= $subscription['progress'] ?>%;"></span>
<div class="subscription-progress-container">
<span class="subscription-progress" style="width: <?= $subscription['progress'] ?>%;"></span>
</div>
<?php
}
?>
Expand Down
2 changes: 1 addition & 1 deletion includes/version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php
$version = "v2.43.0";
$version = "v2.43.1";
?>
15 changes: 10 additions & 5 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,6 @@ button:hover svg .main-color {
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
border-radius: 16px;
background-color: #FFFFFF;
overflow: hidden;
}

.subscription-container>.mobile-actions {
Expand Down Expand Up @@ -415,14 +414,20 @@ button.mobile-action-renew {
display: none;
}

.subscription-container>.subscription-progress {
width: 36%;
.subscription-container>.subscription-progress-container {
position: absolute;
bottom: 0px;
left: 8px;
right: 8px;
height: 3px;
z-index: 1;
}

.subscription-container>.subscription-progress-container>.subscription-progress {
height: 3px;
background-color: var(--accent-color);
display: block;
position: absolute;
bottom: 0px;
z-index: 1;
}

.subscription.inactive {
Expand Down

0 comments on commit b668d37

Please sign in to comment.