@@ -280,6 +280,7 @@ def controls_layout(
280
280
min = lat_min ,
281
281
max = lat_max ,
282
282
type = "number" ,
283
+ style = {"height" : "auto" , "padding-bottom" : "0px" },
283
284
),
284
285
dbc .Label ("Latitude" , style = {"font-size" : "80%" }),
285
286
dbc .Tooltip (
@@ -296,6 +297,7 @@ def controls_layout(
296
297
min = lon_min ,
297
298
max = lon_max ,
298
299
type = "number" ,
300
+ style = {"height" : "auto" , "padding-bottom" : "0px" },
299
301
),
300
302
dbc .Label ("Longitude" , style = {"font-size" : "80%" }),
301
303
dbc .Tooltip (
@@ -305,7 +307,7 @@ def controls_layout(
305
307
)
306
308
]),
307
309
),
308
- dbc .Button (id = "submit_lat_lng" , children = 'Submit' ),
310
+ dbc .Button (id = "submit_lat_lng" , children = 'Submit' , color = "secondary" ),
309
311
],
310
312
),
311
313
),
@@ -317,6 +319,7 @@ def controls_layout(
317
319
{"label" : val ["menu_label" ], "value" : key }
318
320
for key , val in CONFIG ["map_text" ].items ()
319
321
],
322
+ style = {"padding-top" : "0px" , "padding-bottom" : "0px" },
320
323
),
321
324
),
322
325
Block (
@@ -355,7 +358,8 @@ def controls_layout(
355
358
Sentence (
356
359
Number ("kc_end" , CONFIG ["kc_v" ][4 ], min = 0 , max = 2 , html_size = 4 ),
357
360
),
358
- dbc .Button (id = "submit_kc" , children = 'Submit' ),
361
+ dbc .Button (id = "submit_kc" , children = 'Submit' , color = "success" ),
362
+ border_color = "green" ,
359
363
),
360
364
Block (
361
365
"Compare to..." ,
@@ -403,7 +407,8 @@ def controls_layout(
403
407
Sentence (
404
408
Number ("kc2_end" , CONFIG ["kc_v" ][4 ], min = 0 , max = 2 , html_size = 4 ),
405
409
),
406
- dbc .Button (id = "submit_kc2" , children = 'Submit' ),
410
+ dbc .Button (id = "submit_kc2" , children = 'Submit' , color = "primary" ),
411
+ border_color = "blue" ,
407
412
),
408
413
],
409
414
style = {"position" :"relative" ,"height" :"60%" , "overflow" :"scroll" },
0 commit comments