Craig Raw
5 years ago
8 changed files with 129 additions and 43 deletions
@ -1,9 +1,11 @@ |
|||
# Sparrow |
|||
Bitcoin Transaction Editor |
|||
Bitcoin Wallet & Transaction Editor |
|||
|
|||
To clone this project, use `git clone --recursive git@github.com:craigraw/sparrow.git` |
|||
|
|||
## Various ways to hex dump a file without spaces: |
|||
xxd -p file | tr -d '\n' |
|||
hexdump -ve '1/1 "%.2x"' |
|||
od -t x1 -An file | tr -d '\n ' |
|||
`xxd -p file | tr -d '\n'` |
|||
|
|||
`hexdump -ve '1/1 "%.2x"'` |
|||
|
|||
`od -t x1 -An file | tr -d '\n '` |
@ -0,0 +1,34 @@ |
|||
.script-nest { -fx-fill: #000000 } |
|||
.script-opcode { -fx-fill: #0184bc } |
|||
.script-hash { -fx-fill: #986801 } |
|||
.script-signature { -fx-fill: #50a14f } |
|||
.script-pubkey { -fx-fill: #a626a4 } |
|||
.script-redeem { -fx-fill: #ca1243 } |
|||
.script-other { -fx-fill: #a0a1a7 } |
|||
|
|||
.uneditable-codearea { |
|||
-fx-font: 14px Courier; |
|||
-fx-padding: 4; |
|||
} |
|||
|
|||
.virtualized-scroll-pane { |
|||
-fx-background-color: linear-gradient(to bottom, derive(-fx-text-box-border, -10%), -fx-text-box-border), linear-gradient(from 0px 0px to 0px 5px, derive(-fx-control-inner-background, -9%), -fx-control-inner-background); |
|||
-fx-background-insets: 0, 1; |
|||
-fx-background-radius: 3, 2; |
|||
} |
|||
|
|||
.virtualized-scroll-pane:disabled { |
|||
-fx-opacity: 0.5; |
|||
} |
|||
|
|||
.virtualized-scroll-pane .styled-text-area { |
|||
-fx-background-insets: 0px; |
|||
-fx-background-color: transparent; |
|||
} |
|||
|
|||
.virtualized-scroll-pane .scroll-bar:vertical { |
|||
-fx-background-radius: 0 2 2 0; |
|||
-fx-padding: 0.08333325em 0.08333325em 0.08333325em 0; |
|||
-fx-border-insets: 0.08333325em 0.08333325em 0.08333325em 0; |
|||
-fx-background-insets: 0.08333325em 0.08333325em 0.08333325em 0; |
|||
} |
Loading…
Reference in new issue