Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a word-break to list items to keep the layout intact #1321

Merged
merged 2 commits into from
May 19, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions skin/adminhtml/default/default/boxes.css
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ table.form-edit { width:100%; }
.entry-edit .entry-edit-head a { color:#fff; font-size:1em; line-height:18px; min-height:0; font-weight:bold}
.entry-edit .content { margin-left:0 !important; padding:10px 15px; }
.entry-edit fieldset li,
.entry-edit .fieldset li { margin:4px 0; }
.entry-edit .fieldset li { margin:4px 0; word-break: break-all; }
.entry-edit fieldset span.form_row,
.entry-edit .fieldset span.form_row,
.entry-edit fieldset .field-row .hint,
Expand Down Expand Up @@ -553,10 +553,18 @@ td.divider { font-size:1px; line-height:0; }


/**/
.note-list { width:100%; overflow:hidden; }
.note-list li { border-top:1px solid #e3e3e3; margin-top:9px !important; background:url(images/icon_note_list.gif) no-repeat 0 4px; padding-bottom:9px; padding-left:18px; }


.note-list {
width:100%;
overflow:hidden;
}
.note-list li {
border-top: 1px solid #e3e3e3;
margin-top: 9px !important;
background: url(images/icon_note_list.gif) no-repeat 0 4px;
padding-bottom: 9px;
padding-left: 18px;
word-break: break-all;
}

/******************************************************************************/
/********************************** STRUCTURE *********************************/
Expand Down