Commit 24966e89 authored by Gary Blackwood's avatar Gary Blackwood Committed by Jason Laster
Browse files

Bug 1520957 - [release 119] 7536/improve source pane padding (#7651). r=dwalsh

parent faa0ac18
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -1823,8 +1823,7 @@ menuseparator {
  z-index: 999;
}
.outline-filter {
  margin: 5px 0 0 0;
  padding: 0px 10px;
  padding: 4px 10px 0 10px;
}

.outline-filter-input {
@@ -2100,8 +2099,8 @@ menuseparator {
  display: flex;
}

.sources-list .managed-tree .tree-node:first-child {
  margin-top: 4px;
.sources-list .managed-tree .tree {
  padding: 4px 0;
}

.sources-list .managed-tree .tree .node {
+1 −4
Original line number Diff line number Diff line
@@ -5034,10 +5034,7 @@ class Tree extends Component {
      });
    });

    const style = Object.assign({}, this.props.style || {}, {
      padding: 0,
      margin: 0
    });
    const style = Object.assign({}, this.props.style || {});

    return _reactDomFactories2.default.div({
      className: `tree ${this.props.className ? this.props.className : ""}`,
+1 −2
Original line number Diff line number Diff line
.outline-filter {
  margin: 5px 0 0 0;
  padding: 0px 10px;
  padding: 4px 10px 0 10px;
}

.outline-filter-input {
+2 −2
Original line number Diff line number Diff line
@@ -71,8 +71,8 @@
  display: flex;
}

.sources-list .managed-tree .tree-node:first-child {
  margin-top: 4px;
.sources-list .managed-tree .tree {
  padding: 4px 0;
}

.sources-list .managed-tree .tree .node {
+2 −12
Original line number Diff line number Diff line
@@ -219,12 +219,7 @@ exports[`ManagedTree sets expanded items 1`] = `
        onKeyPress={[Function]}
        onKeyUp={[Function]}
        role="tree"
        style={
          Object {
            "margin": 0,
            "padding": 0,
          }
        }
        style={Object {}}
        tabIndex="0"
      >
        <TreeNode
@@ -443,12 +438,7 @@ exports[`ManagedTree sets expanded items 2`] = `
        onKeyPress={[Function]}
        onKeyUp={[Function]}
        role="tree"
        style={
          Object {
            "margin": 0,
            "padding": 0,
          }
        }
        style={Object {}}
        tabIndex="0"
      >
        <TreeNode
Loading