Skip to content
This repository has been archived by the owner on Oct 29, 2022. It is now read-only.

Commit

Permalink
Merge pull request #22 from RostiMelk/development
Browse files Browse the repository at this point in the history
Minor bug fix for popup window height
  • Loading branch information
RostiMelk authored May 24, 2020
2 parents fd2754b + 29be65d commit c7204bf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "ACF Tools",
"version": "3.0.0",
"version": "3.0.1",
"description": "__MSG_extDescription__",
"default_locale": "en",
"icons": {
Expand Down
2 changes: 0 additions & 2 deletions src/scripts/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,4 @@ ready(() => {
document.querySelector("#acfToolsStatus").classList.add('active');
}
});

document.querySelector('html, #acfToolsUserSettingsPopup').style.height = "0";
});
8 changes: 5 additions & 3 deletions src/styles/popup.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
#acfToolsUserSettingsPopup, html {
width: 260px;
height: fit-content;
max-height: 100%;
height: 100%;
width: 260px;
max-width: 100%;
}
#acfToolsUserSettingsPopup {
margin: 0;
font-size: 13px;
font-weight: 400;
font-family: "Segoe UI",Helvetica,"Helvetica Neue",Arial,sans-serif;

overflow: hidden;
}
#acfToolsUserSettingsPopup h1 {
padding: 14px;
Expand Down

0 comments on commit c7204bf

Please sign in to comment.