Skip to content

Commit

Permalink
Adjust popup page to compensate for Firefox overflow menu #49
Browse files Browse the repository at this point in the history
  • Loading branch information
iann0036 committed Jan 31, 2020
1 parent c807b2a commit bd6f16b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion firefoxManifest.json
@@ -1,6 +1,6 @@
{
"name": "Console Recorder for AWS",
"version": "0.3.31",
"version": "0.3.32",
"manifest_version": 2,
"description": "Records actions made in the AWS Management Console and outputs the equivalent CLI/SDK commands and CloudFormation template.",
"content_security_policy": "script-src 'self'; object-src 'self'",
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
@@ -1,6 +1,6 @@
{
"name": "Console Recorder for AWS",
"version": "0.3.31",
"version": "0.3.32",
"manifest_version": 2,
"description": "Records actions made in the AWS Management Console and outputs the equivalent CLI/SDK commands and CloudFormation template.",
"content_security_policy": "script-src 'self'; object-src 'self'",
Expand Down
16 changes: 9 additions & 7 deletions popup.html
Expand Up @@ -23,13 +23,15 @@
<link class="main-stylesheet" href="pages/css/pages.css" rel="stylesheet" type="text/css" />

</head>
<body style="height: 96px; min-height: 96px; width: 200px; background: #ffffff;">
<center>
<div style="padding-top: 14px;">
<button id="recordButton" type="button" class="btn btn-hover btn-success btn-block" style="width: 150px; font-weight: bold;">&nbsp;</button>
</div>
<p style="padding-top: 10px;"><a id="dashLink" href="#">Go To Dashboard</a></p>
</center>
<body style="background: #ffffff;">
<div style="height: 96px; min-height: 96px; min-width: 200px;">
<center>
<div style="padding-top: 14px;">
<button id="recordButton" type="button" class="btn btn-hover btn-success btn-block" style="width: 150px; font-weight: bold;">&nbsp;</button>
</div>
<p style="padding-top: 10px;"><a id="dashLink" href="#">Go To Dashboard</a></p>
</center>
</div>
<script src="assets/plugins/jquery/jquery-3.2.1.min.js" type="text/javascript"></script>
<script src="assets/plugins/jquery-ui/jquery-ui.min.js" type="text/javascript"></script>
<script src="assets/plugins/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
Expand Down

0 comments on commit bd6f16b

Please sign in to comment.