This repository has been archived by the owner on Dec 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1703 from locaweb/modal-size
Modal size - Closes #1700
- Loading branch information
Showing
5 changed files
with
59 additions
and
37 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
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<button data-ls-module="modal" data-target="#modalSmall" class="ls-btn-primary">Ative a modal pequena</button> | ||
<button data-ls-module="modal" data-target="#modalLarge" class="ls-btn-primary">Ative a modal grande</button> | ||
|
||
<div class="ls-modal" id="modalSmall"> | ||
<div class="ls-modal-small"> | ||
<div class="ls-modal-header"> | ||
<button data-dismiss="modal">×</button> | ||
<h4 class="ls-modal-title">Modal title</h4> | ||
</div> | ||
<div class="ls-modal-body"> | ||
<p><%= lorem.sentences 3 %></p> | ||
</div> | ||
<div class="ls-modal-footer"> | ||
<button class="ls-btn ls-float-right" data-dismiss="modal">Close</button> | ||
<button type="submit" class="ls-btn-primary">Save changes</button> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
<div class="ls-modal" id="modalLarge"> | ||
<div class="ls-modal-large"> | ||
<div class="ls-modal-header"> | ||
<button data-dismiss="modal">×</button> | ||
<h4 class="ls-modal-title">Modal title</h4> | ||
</div> | ||
<div class="ls-modal-body"> | ||
<p><%= lorem.sentences 3 %></p> | ||
</div> | ||
<div class="ls-modal-footer"> | ||
<button class="ls-btn ls-float-right" data-dismiss="modal">Close</button> | ||
<button type="submit" class="ls-btn-primary">Save changes</button> | ||
</div> | ||
</div> | ||
</div> |
This file was deleted.
Oops, something went wrong.