Skip to content

Commit

Permalink
[#18831] docdb : Make MemTracker's collapse button visible
Browse files Browse the repository at this point in the history
Summary:
**Issue:**
D25519 introduced collapse/expand buttons in the memory breakdown page. However, the collapse button is invisible on the portal due to the following:
1. There are issues loading the GIF image.
2. The button image's file path is not correct.

**Fix:**
Changed to PNG image and correct the file path.
Jira: DB-7708

Test Plan: Tested on portal

Reviewers: kpopali, rthallam

Reviewed By: kpopali, rthallam

Subscribers: ybase, bogdan

Differential Revision: https://phorge.dev.yugabyte.com/D28097
  • Loading branch information
yusong-yan committed Aug 28, 2023
1 parent 6bac0ed commit 5dc1c83
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
Binary file removed www/images/collapse.gif
Binary file not shown.
Binary file added www/images/collapse.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed www/images/expand.gif
Binary file not shown.
Binary file added www/images/expand.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions www/yb.css
Original file line number Diff line number Diff line change
Expand Up @@ -224,10 +224,10 @@ body {
}

.collapse .toggle {
background: url("/images/collapse.gif");
background: url("images/collapse.png");
}
.expand .toggle {
background: url("/images/expand.gif");
background: url("images/expand.png");
}
.toggle {
height: 9px;
Expand Down

0 comments on commit 5dc1c83

Please sign in to comment.