Skip to content

Commit b86de8d

Browse files
committed
fix(section): handle long label in design mode
Signed-off-by: Thierry Bugier <tbugier@teclib.com>
1 parent 7705e58 commit b86de8d

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

css/styles.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,11 +168,16 @@ input.submit_button:focus {
168168
padding-bottom: 1px;
169169
display: flex;
170170
flex-wrap: wrap;
171+
align-items: center;
171172
}
172173

173174
#plugin_formcreator_form.plugin_formcreator_form_design > ol > .plugin_formcreator_section > a {
174175
font-size: larger;
175-
flex-grow: 1;
176+
overflow: hidden;
177+
white-space: nowrap;
178+
text-overflow: ellipsis;
179+
flex: 1;
180+
margin: 5px 0 0 5px;
176181
}
177182

178183
#plugin_formcreator_form.plugin_formcreator_form_design > ol > .plugin_formcreator_section:not(:first-of-type) {

0 commit comments

Comments
 (0)