mirror of
https://github.com/documize/community.git
synced 2025-07-24 23:59:47 +02:00
Update sortable.js
This commit is contained in:
parent
089457f16e
commit
ddcc61d5e0
3 changed files with 91 additions and 4 deletions
|
@ -59,7 +59,7 @@ let constants = EmberObject.extend({
|
|||
Group: 'role'
|
||||
},
|
||||
|
||||
EveryoneUserId: "0",
|
||||
EveryoneUserId: '0',
|
||||
EveryoneUserName: "Everyone",
|
||||
|
||||
// Document
|
||||
|
@ -71,6 +71,13 @@ let constants = EmberObject.extend({
|
|||
DraftLabel: 'Draft',
|
||||
LiveLabel: 'Live',
|
||||
ArchivedLabel: 'Archived',
|
||||
},
|
||||
|
||||
// Document Version -- document.groupId links different versions of documents together
|
||||
VersionCreateMode: { // eslint-disable-line ember/avoid-leaking-state-in-ember-objects
|
||||
Unversioned: 1, // turn unversioned into versioned document
|
||||
Cloned: 2, // create versioned document by cloning existing versioned document
|
||||
Linked: 3 // link existing unversion document into this version group
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -61,6 +61,27 @@
|
|||
box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
|
||||
}
|
||||
|
||||
.drag-handle {
|
||||
font-size: 1.5rem;
|
||||
color: $color-gray-light;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.drag-indicator-dropzone {
|
||||
opacity: 1 !important;
|
||||
border: 2px dotted $color-border;
|
||||
}
|
||||
|
||||
.drag-indicator-chosen {
|
||||
opacity: 1 !important;
|
||||
background: $color-off-white;
|
||||
}
|
||||
|
||||
.drag-indicator-dragged {
|
||||
opacity: 1 !important;
|
||||
@include card();
|
||||
}
|
||||
|
||||
@import "widget-avatar";
|
||||
@import "widget-button";
|
||||
@import "widget-checkbox";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue