Skip to content

Commit

Permalink
Merge pull request #16 from sam-tj/master
Browse files Browse the repository at this point in the history
close modal 'X' button
  • Loading branch information
SebCanet authored Sep 13, 2020
2 parents 51a00bd + 6bf2214 commit b5d9e6e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion css/UI.css
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,10 @@ td.tabMiddle {
/* The Close Button */
.closeModal {
color: #FFFFFF;
background-color: rgba(201, 76, 76, 0);
border: none;
float: right;
font-size: 28px;
font-size: 20px;
font-weight: bold;
}
.closeModal:hover,
Expand Down
6 changes: 4 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@
</div>
<div id="helpModal">
<div id="helpModal_header">
<button class="closeModal" type="button" onclick="toggleDisplayHelpModal()">X</button>
<span id="helpModalSpan_title"></span>
</div>
<div id="helpModal_text">
Expand All @@ -137,6 +138,7 @@
</div>
<div id="keyboard_nav">
<div id="keyboard_nav_header">
<button class="closeModal" type="button" onclick="toggleDisplayKeyMappings(false)">X</button>
<span id="keyMappingModalSpan"></span>
</div>
<form id="keyboard_mappings"></form>
Expand Down Expand Up @@ -466,8 +468,8 @@
});
editor.findNext();
editor.findPrevious();
<!-- require('../CLI_functions.js'); -->
<!-- require('../IDE_functions.js'); -->
// <!-- require('../CLI_functions.js'); -->
// <!-- require('../IDE_functions.js'); -->
require('../resources/app.asar/CLI_functions.js');
require('../resources/app.asar/IDE_functions.js');
</script>
Expand Down

0 comments on commit b5d9e6e

Please sign in to comment.