diff --git a/openstack_dashboard/static/app/core/images/_images.scss b/openstack_dashboard/static/app/core/images/_images.scss index 0ae624ad61..d971632f1a 100644 --- a/openstack_dashboard/static/app/core/images/_images.scss +++ b/openstack_dashboard/static/app/core/images/_images.scss @@ -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; +} diff --git a/releasenotes/notes/fix-image-sharing-visibility.yaml b/releasenotes/notes/fix-image-sharing-visibility.yaml new file mode 100644 index 0000000000..1b2f13e9ed --- /dev/null +++ b/releasenotes/notes/fix-image-sharing-visibility.yaml @@ -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.