Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions index.htm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Summer html image map creator</title>
<link href="main.css" type="text/css" rel="stylesheet" />
<link href="main.min.css" type="text/css" rel="stylesheet" />
<meta charset="UTF-8" />
<!--
Summer html image map creator
Expand Down Expand Up @@ -41,6 +41,7 @@ <h1 id="logo">
<li id="preview"><a href="#">preview</a></li>
<li id="clear"><a href="#">clear</a></li>
<li id="new_image"><a href="#">new image</a></li>
<li id="show_settings"><a href="#">settings</a></li>
<li id="show_help"><a href="#">?</a></li>
</ul>
</nav>
Expand All @@ -63,7 +64,7 @@ <h1 id="logo">

<!-- Edit details block -->
<form id="edit_details">
<h5>Attrubutes</h5>
<h5>Attributes</h5>
<span class="close_button" title="close"></span>
<p>
<label for="href_attr">href</label>
Expand All @@ -78,6 +79,19 @@ <h5>Attrubutes</h5>
<input type="text" id="title_attr" />
</p>
<button id="save_details">Save</button>
<button id="details_clear">Clear</button>
</form>

<!-- Settings block -->
<form id="summer_settings">
<h4>Settings</h4>
<span class="close_button" title="close"></span>
<p>
<label for="auto_close_edit" title="Controls whether or not to automatically close the attribute edit window on save.">Autoclose Edit Pop-up</label>
<input type="checkbox" id="settings_auto_close_edit" data-default="true"/>
</p>
<button id="settings_save">Save</button>
<button id="settings_reset">Reset to Default</button>
</form>

<!-- From html block -->
Expand Down Expand Up @@ -154,6 +168,6 @@ <h2>Editing mode</h2>
</footer>
</div>

<script type="text/javascript" src="scripts.js"></script>
<script type="text/javascript" src="scripts.min.js"></script>
</body>
</html>
12 changes: 12 additions & 0 deletions main.css
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,18 @@ a:link, a:visited {
.error#url {
border: 2px solid #F00;
}
#summer_settings {
position: absolute;
top: 100px;
left: 100px;
background: rgba(0,0,0,0.9);
border-radius: 5px;
padding: 10px;
box-shadow: rgba(0,0,0,0.2) 0 0 2px 1px;
display: none;
z-index: 1000;
color: #FFF;
}
#edit_details {
position: absolute;
top: 100px;
Expand Down
1 change: 1 addition & 0 deletions main.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading