Skip to content
Merged
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 @@ -41,14 +41,16 @@ See COPYRIGHT and LICENSE files for more details.
) %>
<% end %>

<% content.with_main(overflow: :auto, classes: "type-form-configuration-page--main") do %>
<%= render(
WorkPackageTypes::FormConfiguration::MainContentComponent.new(
type: @type,
group_components: group_components,
ee_available: ee_available?
)
) %>
<% content.with_main(classes: "type-form-configuration-page--main") do %>
<div class="type-form-configuration-page--active-list" data-admin--type-form-configuration--rows-drag-and-drop-target="scrollContainer">
<%= render(
WorkPackageTypes::FormConfiguration::MainContentComponent.new(
type: @type,
group_components: group_components,
ee_available: ee_available?
)
) %>
</div>
<% end %>
<% end %>
<% end %>
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ body:has(.type-form-configuration-page)
@include styled-scroll-bar
min-height: 0

&--active-list
overflow: auto
height: 100%

Comment thread
bsatarnejad marked this conversation as resolved.
&--inactive-list
list-style: none
margin: 0
Expand Down
Loading