Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,17 @@
display: flex
align-items: center
padding-left: $spacer / 2
white-space: normal
width: 100%
line-height: 1.1
justify-content: space-between

&__item-label
display: -webkit-box
-webkit-line-clamp: 2
-webkit-box-orient: vertical
overflow: hidden
text-overflow: ellipsis

&__item-destroy
margin-left: $spacer / 2
Expand All @@ -42,7 +53,8 @@
display: none

.rst__rowLabel
padding-right: 0
width: 100%
padding-right: $spacer / 2

.rst__rowTitle
font-weight: inherit
Expand All @@ -51,6 +63,9 @@
padding: 0
border: 0
box-shadow: none
min-width: inherit
flex-shrink: 1
overflow: hidden

.rst__nodeContent
left: 0 !important
Expand All @@ -67,6 +82,7 @@
width: 24px
height: 100%
justify-content: flex-end
flex-shrink: 0

.folio-react-wrap--ordered-multiselect-not-sortable
.f-c-r-ordered-multiselect-app
Expand Down
5 changes: 3 additions & 2 deletions react/src/containers/OrderedMultiselectApp/Item/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ import FolioUiIcon from 'components/FolioUiIcon'
function Item ({ path, node, remove }) {
return (
<div className='f-c-r-ordered-multiselect-app__item'>
{node.label}

<div className='f-c-r-ordered-multiselect-app__item-label'>
{node.label}
</div>
<FolioUiIcon
class='text-danger f-c-r-ordered-multiselect-app__item-destroy'
name='delete'
Expand Down