Skip to content

Commit

Permalink
INT-1838: Fixing isert document added styles
Browse files Browse the repository at this point in the history
  • Loading branch information
durran committed Oct 3, 2016
1 parent 27d9b25 commit c497e4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class InsertDocument extends React.Component {
renderElements() {
const components = [];
for (const element of this.doc.elements) {
components.push(<EditableElement key={element.uuid} element={element} />);
components.push(<EditableElement key={element.uuid} element={element} indent={0} />);
}
components.push(<Hotspot key="hotspot" element={this.doc} />);
return components;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
color: @gray3;
}

.editable-element-is-added {
.editable-element-is-added, .editable-expandable-element-header-is-added {
background-color: @pw;

input {
Expand Down

0 comments on commit c497e4a

Please sign in to comment.