-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/DaniloNovakovic/chrome-dy…
- Loading branch information
Showing
5 changed files
with
99 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
#popup-form { | ||
min-width: 320px; | ||
min-height: 260px; | ||
padding-right: 2em; | ||
padding-bottom: 1em; | ||
.popup-wrapper { | ||
min-width: 400px; | ||
min-height: 200px; | ||
margin: 0; | ||
overflow: hidden; | ||
} | ||
|
||
.popup-form { | ||
padding-top: 1.5em; | ||
} | ||
|
||
.popup-form-btn-wrapper { | ||
padding: 1em 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,76 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<html lang="en" class="popup-wrapper"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | ||
<title>DynBookmark Popup Form</title> | ||
</head> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<title>DynBookmark Popup Form</title> | ||
</head> | ||
|
||
<body> | ||
<div class="container"> | ||
<form action="#" id="popup-form"> | ||
<div class="input-field"> | ||
<label for="bookmark-name-input">Bookmark name: </label> | ||
<input type="text" id="bookmark-name-input" name="bookmark_name" required> | ||
<body class="popup-wrapper"> | ||
<nav class="nav-extended"> | ||
<div class="nav-content"> | ||
<ul class="tabs tabs-transparent"> | ||
<li class="tab"><a class="active">Add Bookmark</a></li> | ||
<li class="tab"> | ||
<a id="open-manager" target="_blank" href="bookmarkManager.html" | ||
>Open Manager</a | ||
> | ||
</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
<div class="container"> | ||
<form action="#" id="popup-form" class="popup-form"> | ||
<div class="input-field"> | ||
<label for="bookmark-name-input">Bookmark name: </label> | ||
<input | ||
type="text" | ||
id="bookmark-name-input" | ||
name="bookmark_name" | ||
required | ||
/> | ||
</div> | ||
|
||
<div class="input-field"> | ||
<label for="url-input">Url: </label> | ||
<input type="url" class="validate" id="url-input" name="url" required> | ||
<span class="helper-text" data-error="url must be in form http[s]://..."></span> | ||
</div> | ||
<div class="input-field"> | ||
<label for="url-input">Url: </label> | ||
<input | ||
type="url" | ||
class="validate" | ||
id="url-input" | ||
name="url" | ||
required | ||
/> | ||
<span | ||
class="helper-text" | ||
data-error="url must be in form http[s]://..." | ||
></span> | ||
</div> | ||
|
||
<div class="input-field"> | ||
<label for="regexp-input">RegExp: </label> | ||
<input type="text" id="regexp-input" name="regexp" required> | ||
</div> | ||
<div class="input-field"> | ||
<label for="regexp-input">RegExp: </label> | ||
<input type="text" id="regexp-input" name="regexp" required /> | ||
</div> | ||
|
||
<button class="btn waves-effect waves-light green" type="submit"> | ||
Submit | ||
<i class="material-icons right">send</i> | ||
</button> | ||
</form> | ||
<div class="input-field popup-form-btn-wrapper"> | ||
<button class="btn waves-effect waves-light green" type="submit"> | ||
Submit | ||
<i class="material-icons right">send</i> | ||
</button> | ||
</div> | ||
</form> | ||
|
||
<!-- Modal Structure --> | ||
<div id="popup-modal" class="modal"> | ||
<div class="modal-content"> | ||
<p id="form-response"></p> | ||
</div> | ||
<div class="modal-footer"> | ||
<a href="#!" class="modal-close waves-effect waves-green btn-flat">Close</a> | ||
<!-- Modal Structure --> | ||
<div id="popup-modal" class="modal"> | ||
<div class="modal-content"> | ||
<p id="form-response"></p> | ||
</div> | ||
<div class="modal-footer"> | ||
<a href="#!" class="modal-close waves-effect waves-green btn-flat" | ||
>Close</a | ||
> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</body> | ||
|
||
</html> | ||
</body> | ||
</html> |