Merge pull request #2747 from ulferts/fix/overlapping_in_place_controls

prevent inplace edit control from overlapping next field
pull/2754/head
Jan Sandbrink 10 years ago
commit c3fd947b22
  1. 6
      app/assets/stylesheets/content/_in_place_editing.sass

@ -56,7 +56,6 @@ $inplace-edit--color--very-dark: #cacaca
position: absolute
width: 100%
z-index: 100
min-height: 42px
font-size: 0.875rem
.inplace-edit--errors
@ -81,6 +80,11 @@ $inplace-edit--color--very-dark: #cacaca
padding: 5px
line-height: 1.6rem
margin-top: -1px
// Having to get the element out of the normal dom flow to
// prevent the element overlapping and thereby blocking the click on
// inplace-editable elements below the current one.
position: absolute
right: 0
.inplace-edit--read
@extend .form--field-container

Loading…
Cancel
Save