-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIXED: Component: Modal
- Loading branch information
Showing
3 changed files
with
113 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<!-- | ||
~ Copyright (c) 2022-2023 SGNetworks. All rights reserved. | ||
~ | ||
~ The software is an exclusive copyright of "SGNetworks" and is provided as is exclusively with only "USAGE" access. "Modification", "Alteration", "Re-distribution" is completely prohibited. | ||
~ VIOLATING THE ABOVE TERMS IS A PUNISHABLE OFFENSE WHICH MAY LEAD TO LEGAL CONSEQUENCES. | ||
--> | ||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Modals - SGNUIKit Demo</title> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script> | ||
<script src="/src/js/SGNUIKit.loader.js"></script> | ||
<script src="/src/addons/PrismJS/prism.js"></script> | ||
<!--<script src="/dist/js/SGNUIKit.loader.js"></script>--> | ||
</head> | ||
<body> | ||
<main> | ||
<div class="sgn-container"> | ||
<div class="wrapper col-3"> | ||
<!-- MODAL (BASIC) --> | ||
<a class="btn primary" data-sgn-modal="#sgn-modal1">Toggle Modal</a> | ||
|
||
<div class="sgn-modal" id="sgn-modal1" sgn-snippet-title="Basic Modal"> | ||
<div class="sgn-modal-header">Modal Heading</div> | ||
<div class="sgn-modal-body"> | ||
Some quick example text to build on the card title and make up the bulk of the card's content. | ||
</div> | ||
<div class="sgn-modal-footer"> | ||
<a class="btn btn-text primary sgn-modal-cancelBtn">Cancel</a> | ||
<a class="btn primary sgn-modal-continueBtn">Continue</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</main> | ||
</body> | ||
</html> |
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