Browse Source

fix expanding grey area in transaction viewer when increasing hex area height

terminal
Craig Raw 3 years ago
parent
commit
a68eeb4669
  1. 1
      src/main/resources/com/sparrowwallet/sparrow/transaction/transaction.css
  2. 2
      src/main/resources/com/sparrowwallet/sparrow/transaction/transaction.fxml

1
src/main/resources/com/sparrowwallet/sparrow/transaction/transaction.css

@ -17,6 +17,7 @@
.tx-pane { .tx-pane {
-fx-background-color: -fx-background; -fx-background-color: -fx-background;
-fx-min-height: 0;
} }
.color-0 { -fx-fill: #ca1243 } .color-0 { -fx-fill: #ca1243 }

2
src/main/resources/com/sparrowwallet/sparrow/transaction/transaction.fxml

@ -15,7 +15,7 @@
<TreeView fx:id="txtree" minWidth="120"> <TreeView fx:id="txtree" minWidth="120">
<SplitPane.resizableWithParent>false</SplitPane.resizableWithParent> <SplitPane.resizableWithParent>false</SplitPane.resizableWithParent>
</TreeView> </TreeView>
<StackPane fx:id="txpane" styleClass="tx-pane"/> <StackPane fx:id="txpane" styleClass="tx-pane" minHeight="0"/>
</items> </items>
</SplitPane> </SplitPane>
</masterNode> </masterNode>

Loading…
Cancel
Save