Merge "Image Sharing - Visibility - fix for long phrases"

This commit is contained in:
Zuul 2025-05-07 00:12:02 +00:00 committed by Gerrit Code Review
commit 4885dca04d
2 changed files with 14 additions and 0 deletions

View File

@ -12,3 +12,12 @@ table[ng-controller="horizon.app.core.images.table.ImagesController as table"] {
max-height: 30em;
}
/* https://review.opendev.org/c/openstack/horizon/+/948168 */
/* anfimovir: we need save it after update form to python or change style for */
/* visibility element to drop-down list, for prevent problems with long phrases */
[ng-controller="horizon.app.core.images.steps.CreateImageController as ctrl"] .btn-group,
[ng-controller="horizon.app.core.images.steps.EditImageController as ctrl"] .btn-group {
display: flex;
flex-wrap: nowrap;
}

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Image Sharing - Visibility, fixed issues with displaying buttons when using languages
with long phrases, buttons could wrap across multiple lines.