diff options
author | Raphael Kabo <raphaelkabo@hey.com> | 2024-02-28 22:40:33 +0000 |
---|---|---|
committer | Raphael Kabo <raphaelkabo@hey.com> | 2024-05-26 16:05:32 +0100 |
commit | 28be7ca850f41352a1e4e43f0c7035bdeeff6e83 (patch) | |
tree | 3d8bef1bec6dd3600c8ffb318c03b221ccb504b8 /views/partials/editeventgroupmodal.handlebars | |
parent | 53288fa3df3f828e99eaba679d436e65def2deb4 (diff) |
New frontend styles, instance description functionality
Diffstat (limited to 'views/partials/editeventgroupmodal.handlebars')
-rw-r--r-- | views/partials/editeventgroupmodal.handlebars | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/views/partials/editeventgroupmodal.handlebars b/views/partials/editeventgroupmodal.handlebars index 41e7f00..046d15e 100644 --- a/views/partials/editeventgroupmodal.handlebars +++ b/views/partials/editeventgroupmodal.handlebars @@ -16,20 +16,20 @@ <div class="card border-danger mb-3"> <div class="card-header text-danger">Delete this event group</div> <div class="card-body text-danger"> - <button type="button" id="deleteEvent" class="btn btn-danger" data-toggle="modal" data-target="#deleteModal"><i class="fas fa-trash"></i> Delete event group</button> + <button type="button" id="deleteEvent" class="button button--danger" data-toggle="modal" data-target="#deleteModal"><i class="fas fa-trash"></i> Delete event group</button> </div> </div> </div> </form> </div> <div class="modal-footer"> - <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> + <button type="button" class="button button--secondary" data-dismiss="modal">Close</button> <button type="submit" - class="btn btn-primary" + class="button button--primary" @click="submitForm" x-bind:disabled="submitting" - x-bind:class="submitting ? 'btn--loading' : ''" + x-bind:class="submitting ? 'button--loading' : ''" x-text="submitting ? 'Saving...' : 'Save'" ></button> </div> |