doNotClear: true,
errorClass: 'sortableInvalidTarget',
forcePlaceholderSize: true,
+ handle: '',
helper: 'clone',
items: 'li:not(.sortableNoSorting)',
opacity: .6,
.sortableNodeLabel {
align-items: center;
cursor: move;
+ overflow: hidden;
padding: 10px;
/* `display:flex` acts weird inside lists with a visible list-style */
> .icon,
> a {
- flex: 0 0 auto;
margin-right: 5px;
}
+ > .icon {
+ flex: 0 0 auto;
+ }
+
+ > a {
+ flex: 0 1 auto;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ }
+
> .statusDisplay {
align-items: center;
display: flex;
- flex: 1 1 auto;
+ flex: 1 0 auto;
justify-content: flex-end;
> a,
color: $wcfStatusErrorText;
}
}
+
+@include screen-xs {
+ .sortableNodeHandle {
+ display: none;
+ }
+}
+@include screen-lg {
+ .sortableNodeHandle {
+ display: none;
+ }
+}