diff --git a/contentcuration/contentcuration/frontend/settings/pages/Storage/RequestForm.vue b/contentcuration/contentcuration/frontend/settings/pages/Storage/RequestForm.vue index aaed431916..b2d907076b 100644 --- a/contentcuration/contentcuration/frontend/settings/pages/Storage/RequestForm.vue +++ b/contentcuration/contentcuration/frontend/settings/pages/Storage/RequestForm.vue @@ -96,6 +96,9 @@
+

{{ $tr('howAreYouUsingYourContentLabel') }}

@@ -475,4 +481,35 @@ margin-top: 32px; margin-bottom: 8px; } - + +.breadcrumb-container { + display: flex; + align-items: center; + gap: 1rem; + margin-bottom: 1rem; +} + +.breadcrumb-content { + flex: 1; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + max-width: calc(100% - 120px); /* Allow space for the select all box */ +} + +.select-all-box { + flex-shrink: 0; + margin-right: 1rem; + min-width: 100px; /* Ensure minimum width for the checkbox */ +} + +.multiselect-wrapper { + max-width: 100%; + position: relative; +} + +.multiselect-wrapper :deep(.multiselect) { + text-align: left; +} + +