-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathheader-editor.php
More file actions
30 lines (27 loc) · 1018 Bytes
/
Copy pathheader-editor.php
File metadata and controls
30 lines (27 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!-- Editor scripts -->
<!-- jQuery UI for Drag & Drop -->
<script src="<?= ROOTPATH ?>/js/jquery-ui.min.js"></script>
<!-- Multiselect plugin for jQuery for improved usability -->
<script src="<?= ROOTPATH ?>/js/jquery.multi-select.min.js"></script>
<!-- Moment.js for date manipulation -->
<script src="<?= ROOTPATH ?>/js/moment.min.js"></script>
<!-- Quill for rich text editing -->
<script src="<?= ROOTPATH ?>/js/quill.min.js?v=<?=OSIRIS_BUILD?>"></script>
<!-- Selectize for enhanced select inputs -->
<script src="<?= ROOTPATH ?>/js/selectize.min.js?v=<?=OSIRIS_BUILD?>"></script>
<!-- Custom styles for the header editor -->
<link rel="stylesheet" href="<?= ROOTPATH ?>/css/selectize.css?v=<?=OSIRIS_BUILD?>">
<style>
/* Style for the drag handle */
.handle {
cursor: move;
}
tr.ui-sortable-helper {
display: table;
background: #f9f9f9;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
tr.ui-sortable-helper td {
background: #f9f9f9;
}
</style>