21
21
DefaultTooltip
22
22
{
23
23
visible: mouse_area .containsMouse && (tooltip_text .text_value != " " )
24
- width: 300
24
+ width: 340
25
25
26
26
contentItem: RowLayout
27
27
{
28
- width: 290
28
+ width: 330
29
29
30
30
Qaterial .ColorIcon
31
31
{
@@ -175,22 +175,22 @@ Item
175
175
// Dot on the left side of the row to indicate own order
176
176
Rectangle
177
177
{
178
- Layout .leftMargin : 6
178
+ Layout .leftMargin : 4
179
179
Layout .alignment : Qt .AlignVCenter
180
180
opacity: is_mine ? 1 : 0
181
- width: 6
182
- height: 6
183
- radius: 3
181
+ width: 4
182
+ height: 4
183
+ radius: 2
184
184
color: isAsk ? Dex .CurrentTheme .warningColor : Dex .CurrentTheme .okColor
185
185
}
186
186
187
187
// Price
188
188
Dex .ElidableText
189
189
{
190
190
Layout .fillHeight : true
191
- Layout .minimumWidth : 90
191
+ Layout .minimumWidth : 100
192
192
Layout .alignment : Qt .AlignVCenter
193
- text: { new BigNumber (price). toFixed ( 8 ) }
193
+ text: General . reducedBignum (price, 8 )
194
194
font .family : DexTypo .fontFamily
195
195
font .pixelSize : 12
196
196
color: isAsk ? Dex .CurrentTheme .warningColor : Dex .CurrentTheme .okColor
203
203
Dex .ElidableText
204
204
{
205
205
Layout .fillHeight : true
206
- Layout .minimumWidth : 90
206
+ Layout .minimumWidth : 100
207
207
Layout .alignment : Qt .AlignVCenter
208
- text: { new BigNumber (base_max_volume). toFixed ( 6 ) }
208
+ text: General . reducedBignum (base_max_volume, 6 )
209
209
font .family : DexTypo .fontFamily
210
210
font .pixelSize : 12
211
211
horizontalAlignment: Text .AlignRight
@@ -219,12 +219,12 @@ Item
219
219
{
220
220
id: total_text
221
221
Layout .fillHeight : true
222
- Layout .minimumWidth : 90
222
+ Layout .minimumWidth : 100
223
223
Layout .fillWidth : true
224
224
Layout .alignment : Qt .AlignVCenter
225
225
font .family : DexTypo .fontFamily
226
226
font .pixelSize : 12
227
- text: { new BigNumber (total). toFixed ( 6 ) }
227
+ text: General . reducedBignum (total, 6 )
228
228
horizontalAlignment: Text .AlignRight
229
229
verticalAlignment: Text .AlignVCenter
230
230
wrapMode: Text .NoWrap
236
236
{
237
237
id: cancel_flat_btn
238
238
Layout .fillHeight : true
239
- width: 30
239
+ width: 20
240
240
Layout .alignment : Qt .AlignVCenter
241
241
242
242
MouseArea
261
261
Qaterial .ColorIcon
262
262
{
263
263
anchors .centerIn : parent
264
- iconSize: 16
264
+ iconSize: 14
265
265
color: Dex .CurrentTheme .warningColor
266
266
source: Qaterial .Icons .close
267
267
visible: is_mine
0 commit comments