summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
8a17c68)
In Chrome contenteditable=true seems to imply word-wrap: break-word
and forcing element to fill its parent vertically. In FF we need
to enforce this explicitly.
This change fixes:
- metadata editor layout for long metadata,
- not being able to start editing a blank field.
[contenteditable] {
cursor: pointer;
[contenteditable] {
cursor: pointer;
+ word-wrap: break-word;
+ min-height: 13px;