-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated assets initializer so that it copies over the bootstrap glyph…
…icons and tinymce skins into the public folder
- Loading branch information
Showing
5 changed files
with
24 additions
and
18 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 |
---|---|---|
|
@@ -9,33 +9,33 @@ | |
</button> | ||
</div> | ||
<div class="modal-body mx-3"> | ||
<div class="md-form mb-5"> | ||
<i class="fas fa-user prefix grey-text"></i> | ||
<div class="md-form mb-5 prefix grey-text"> | ||
<i class="fa-solid fa-user"></i> | ||
<%= label_tag name_start + "[webhook-name]", _('Name'), {'data-error': 'wrong', 'data-success': 'right'} %> | ||
<%= text_field_tag name_start + "[webhook-name]", nil, class: 'form-control validate' %> | ||
</div> | ||
|
||
<div class="md-form mb-5"> | ||
<i class="fas fa-envelope prefix grey-text"></i> <!-- mdbootstrap should have treatment for bad input for this --> | ||
<div class="md-form mb-5 prefix grey-text"> | ||
<i class="fa-solid fa-envelope"></i> <!-- mdbootstrap should have treatment for bad input for this --> | ||
<%= label_tag name_start + "[webhook-email]", _('Email'), {'data-error': 'wrong', 'data-success': 'right'} %> | ||
<%= email_field_tag name_start + "[webhook-email]", nil, placeholder: _('[email protected]'), class: 'form-control validate' %> | ||
</div> | ||
|
||
<div class="md-form mb-5"> | ||
<i class="fas fa-tag prefix grey-text"></i> | ||
<div class="md-form mb-5 prefix grey-text"> | ||
<i class="fa-solid fa-tag"></i> | ||
<%= label_tag name_start + "[webhook-subject]", _('Subject'), {'data-error': 'wrong', 'data-success': 'right'} %> | ||
<%= text_field_tag name_start + "[webhook-subject]", nil, class: 'form-control validate' %> | ||
</div> | ||
|
||
<div class="md-form"> | ||
<i class="fas fa-pencil prefix grey-text"></i> | ||
<div class="md-form prefix grey-text"> | ||
<i class="fa-solid fa-pencil"></i> | ||
<%= label_tag name_start + "[webhook-message]", _('Message'), {'data-error': 'wrong', 'data-success': 'right'} %> | ||
<%= text_area_tag name_start + "[webhook-message]", nil, placeholder: _('Email content'), class: 'form-control md-textarea', rows: 4 %> | ||
</div> | ||
</div> | ||
<div class="modal-footer d-flex justify-content-center"> | ||
<button class="btn btn-default discard" data-dismiss="modal"><%= _('Discard ') %><i class="fas fa-trash-o ml-1"></i></button> | ||
<button class="btn btn-default" ><%= _('Save ') %><i class="fas fa-paper-plane-o ml-1"></i></button> | ||
<button class="btn btn-default discard" data-dismiss="modal"><%= _('Discard ') %><i class="fa-solid fa-trash-can"></i></button> | ||
<button class="btn btn-default" ><%= _('Save ') %><i class="fa-solid fa-paper-plane"></i></button> | ||
</div> | ||
</div> | ||
</div> | ||
|
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
Empty file.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
a { | ||
color: #000; | ||
} | ||
} | ||
} |