OpenLiberty / iguides-common

Other
0 stars 0 forks source link

.alertFrame in Editor no longer expands to show full message #286

Closed dmorgant closed 5 years ago

dmorgant commented 5 years ago

Regression: When moving to multipane design, the .alertFrame CSS definition in editor.css for the editor was changed.

It is now:

.alertFrame {
    border-bottom: 1px solid #ccc;
    position: relative;
    height: 34px;
    padding: 5px;
    overflow: hidden;
}

It was:

.alertFrame {
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-top: 1px solid black;
    border-bottom: 1px solid #ccc;
    position: relative;
    min-height: 30px;
    padding: 5px;
    overflow: hidden;

The editor in the playground for the Bulkhead guide puts up some fairly long messages. These are now getting cut off when in mobile view:

image

These messages use to display before the CSS change:

image

To recreate, go to the bulkhead playground. Set the value parameter for the @Bulkhead annotation to a value over '10' or to an invalid value like the letter 'a'.