Skip to content

Commit

Permalink
Merge pull request #2424 from KomodoPlatform/add/order-options
Browse files Browse the repository at this point in the history
Add Maker mode, and order form options for `GoodTillCancelled` / `FillOrKill`
  • Loading branch information
smk762 committed Apr 8, 2024
2 parents d8ce050 + 98dde1b commit 3f25b37
Show file tree
Hide file tree
Showing 29 changed files with 664 additions and 412 deletions.
1 change: 0 additions & 1 deletion atomic_defi_design/Dex/Components/DexGradientAppButton.qml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ DexRectangle

property bool text_left_align: false

property int minWidth: 90

property real textScale: 1

Expand Down
6 changes: 3 additions & 3 deletions atomic_defi_design/Dex/Exchange/ProView/DexComboBoxLine.qml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ RowLayout
Layout.preferredWidth: parent.width - 15

text_value: !details ? "" :
`<font color="${root.color}"><b>${details.ticker}</b></font>&nbsp;&nbsp;&nbsp;<font color="${Dex.CurrentTheme.foregroundColor}">${details.name}</font>`
`<font color="${root.color}"><b>${details.ticker}</b></font><br /><font color="${Dex.CurrentTheme.foregroundColor2}">${details.name}</font>`
font.pixelSize: Style.textSizeSmall3
elide: Text.ElideRight
wrapMode: Text.NoWrap
Expand All @@ -96,7 +96,7 @@ RowLayout
font: DexTypo.body2
wrapMode: Label.NoWrap
ToolTip.text: coin_value
Component.onCompleted: font.pixelSize = 11.5
Component.onCompleted: font.pixelSize = 11
}

Dex.Text
Expand All @@ -112,7 +112,7 @@ RowLayout
font: DexTypo.body2
wrapMode: Label.NoWrap
ToolTip.text: fiat_value
Component.onCompleted: font.pixelSize = 11.5
Component.onCompleted: font.pixelSize = 11
}
}
}
Expand Down
Loading

0 comments on commit 3f25b37

Please sign in to comment.