@@ -20,6 +20,7 @@ load_once_from_file(true)
20
20
releaseErrorMessage : "" ,
21
21
22
22
pane_environments_in_dev_mode : true ,
23
+ allow_row_resize : true ,
23
24
24
25
selectedTab : "changes" ,
25
26
@@ -364,7 +365,7 @@ load_once_from_file(true)
364
365
|
365
366
-------------------------------------------------------------------------- -->
366
367
367
- <div v-if='selectedTab=="environments"' style="padding:15px;">
368
+ <div v-if='selectedTab=="environments"' style="padding:15px;font-family:verdana,helvetica;font-size: 13px; ">
368
369
369
370
{{!pane_environments_in_dev_mode?"Read only mode: Environments can not be edited in releases":""}}
370
371
<div v-if='pane_environments_in_dev_mode' style="padding:15px;">
@@ -401,51 +402,81 @@ load_once_from_file(true)
401
402
<!-- ----------------------------------------------
402
403
Environment ID
403
404
---------------------------------------------- -->
404
- <div style="margin-top:5px;">
405
- <span style="width:40 %;display: inline-block;">
405
+ <div style="margin-top:5px;font-family:verdana,helvetica;font-size: 13px; ">
406
+ <span style="width:20 %;display: inline-block;">
406
407
Environment ID
407
408
</span>
408
409
<input
409
- style='flex:1;font-family:verdana,helvetica;font-size: 13px;margin-left:10px; width:50 %;display: inline-block;'
410
+ style='flex:1;font-family:verdana,helvetica;font-size: 13px;margin-left:10px; width:25 %;display: inline-block;'
410
411
v-on:click=''
411
412
v-on:keydown="pane_changes_clearMessages()"
412
- placeholder="Summary (Required)"
413
+ placeholder="environment_id_with_underscores (Required)"
413
414
v-model='changes_pane_header'
414
415
value=''>
415
416
</input>
416
417
</div>
418
+
419
+
417
420
<!-- ----------------------------------------------
418
421
Environment name
419
422
---------------------------------------------- -->
420
- <div style="margin-top:5px ;">
421
- <span style="width:40 %;display: inline-block;">
423
+ <div style="margin-top:15px ;">
424
+ <span style="width:20 %;display: inline-block;">
422
425
Environment name
423
426
</span>
424
427
<input
425
- style='flex:1;font-family:verdana,helvetica;font-size: 13px;margin-left:10px; width:50 %;display: inline-block;'
428
+ style='flex:1;font-family:verdana,helvetica;font-size: 13px;margin-left:10px; width:25 %;display: inline-block;'
426
429
v-on:click=''
427
430
v-on:keydown="pane_changes_clearMessages()"
428
- placeholder="Summary (Required)"
431
+ placeholder="Environment name (Required)"
429
432
v-model='changes_pane_header'
430
433
value=''>
431
434
</input>
432
435
</div>
433
436
434
- <!-- ----------------------------------------------
435
- description
436
- ---------------------------------------------- -->
437
- <div style="margin-top: 0px;">
438
- <textarea rows=7
439
- style="margin: 10px; font-family:verdana,helvetica;font-size: 13px;width:100%"
440
- placeholder="Description"
441
- v-on:keydown="pane_changes_clearMessages()"
442
- v-model='changes_pane_description'>
443
- </textarea>
444
- </div>
437
+ <!-- ----------------------------------------------
438
+ description
439
+ ---------------------------------------------- -->
440
+ <div style="margin-top: 10px;">
441
+ <span style="width:20%;display: inline-block;">
442
+ Environment description
443
+ </span>
444
+ <textarea rows=6
445
+ style="margin: 10px; font-family:verdana,helvetica;font-size: 13px;width:40%;display: inline-block;vertical-align:top"
446
+ placeholder="Description"
447
+ v-on:keydown="pane_changes_clearMessages()"
448
+ v-model='changes_pane_description'>
449
+ </textarea>
450
+
451
+
452
+
453
+
454
+ <!-- ----------------------------------------------
455
+ is live environment?
456
+ ---------------------------------------------- -->
457
+ <div class="form-check">
458
+ <input type="checkbox"
459
+ class="form-check-input"
460
+ id="allow_row_resize"
461
+ :checked='allow_row_resize'
462
+ v-model='allow_row_resize'>
463
+ <label class="form-check-label"
464
+ for="allow_row_resize">Allow row resize</label>
465
+ </div>
466
+
445
467
446
- <button type=button
447
- class=' btn btn-info btn-lg'
448
- v-on:click='pane_environmentPressed()' >Save changes</button>
468
+ <!-- ----------------------------------------------
469
+ save changes button
470
+ ---------------------------------------------- -->
471
+ <div style="width:60%">
472
+ <button type=button
473
+ class=' btn btn-info btn'
474
+ style="float:right;"
475
+ v-on:click='pane_environmentPressed()' >Save changes</button>
476
+ </div>
477
+
478
+
479
+ </div>
449
480
450
481
</div>
451
482
0 commit comments