Michelle Lam commited on
Commit
efceaac
·
1 Parent(s): 1b2c96a

Moves feedback link to less prominent location; changes style of Audit Report panel buttons

Browse files
indie_label_svelte/public/global.css CHANGED
@@ -54,12 +54,6 @@ input, button, select, textarea {
54
  border-radius: 2px;
55
  }
56
 
57
- a {
58
- -webkit-padding: 0.4em 0;
59
- padding: 0.4em;
60
- margin: 0 0 0.5em 0;
61
- }
62
-
63
  input:disabled {
64
  color: #ccc;
65
  }
 
54
  border-radius: 2px;
55
  }
56
 
 
 
 
 
 
 
57
  input:disabled {
58
  color: #ccc;
59
  }
indie_label_svelte/src/HypothesisPanel.svelte CHANGED
@@ -476,8 +476,6 @@
476
  <Button
477
  on:click={handleNewReport}
478
  variant="outlined"
479
- color="secondary"
480
- style=""
481
  >
482
  <Label>New</Label>
483
  </Button>
@@ -486,8 +484,6 @@
486
  <!-- <Button
487
  on:click={handleDeleteReport}
488
  variant="outlined"
489
- color="secondary"
490
- style=""
491
  >
492
  <Label>Delete</Label>
493
  </Button> -->
@@ -496,7 +492,6 @@
496
  <Button
497
  on:click={handleSaveReport}
498
  variant="outlined"
499
- color="secondary"
500
  >
501
  <Label>
502
  {#await promise_save}
@@ -519,24 +514,16 @@
519
  <Button
520
  on:click={handleSubmitReport}
521
  variant="outlined"
522
- color="secondary"
523
  >
524
  <Label>Send Reports to AVID</Label>
525
  </Button>
526
  {/key}
 
527
 
528
- <!-- Feedback button -->
529
- <Button
530
- href="https://forms.gle/vDXchpbBFjDeKjJA6"
531
- target="_blank"
532
- variant="outlined"
533
- color="secondary"
534
- >
535
- <Label>
536
- Feedback
537
- </Label>
538
- </Button>
539
-
540
  </div>
541
  </div>
542
  {/if}
@@ -570,13 +557,23 @@
570
  background: #f3f3f3;
571
  z-index: 11;
572
  bottom: 0;
573
- padding: 15px 0px;
574
  }
575
  .panel_footer_contents {
576
- /* padding: 0px 20px; */
577
  display: flex;
578
  justify-content: space-around;
579
  align-items: center;
 
 
 
 
 
 
 
 
 
 
 
580
  }
581
 
582
  :global(.mdc-button.user_button) {
 
476
  <Button
477
  on:click={handleNewReport}
478
  variant="outlined"
 
 
479
  >
480
  <Label>New</Label>
481
  </Button>
 
484
  <!-- <Button
485
  on:click={handleDeleteReport}
486
  variant="outlined"
 
 
487
  >
488
  <Label>Delete</Label>
489
  </Button> -->
 
492
  <Button
493
  on:click={handleSaveReport}
494
  variant="outlined"
 
495
  >
496
  <Label>
497
  {#await promise_save}
 
514
  <Button
515
  on:click={handleSubmitReport}
516
  variant="outlined"
 
517
  >
518
  <Label>Send Reports to AVID</Label>
519
  </Button>
520
  {/key}
521
+ </div>
522
 
523
+ <div class="feedback_section">
524
+ <a href="https://forms.gle/vDXchpbBFjDeKjJA6" target="_blank" class="feedback_link">
525
+ Share feedback
526
+ </a>
 
 
 
 
 
 
 
 
527
  </div>
528
  </div>
529
  {/if}
 
557
  background: #f3f3f3;
558
  z-index: 11;
559
  bottom: 0;
560
+ padding: 5px 0px;
561
  }
562
  .panel_footer_contents {
 
563
  display: flex;
564
  justify-content: space-around;
565
  align-items: center;
566
+ padding: 5px 0px 10px 0px;
567
+ }
568
+ .feedback_section {
569
+ display: flex;
570
+ justify-content: space-around;
571
+ align-items: center;
572
+ }
573
+ .feedback_link {
574
+ color: var(--mdc-theme-secondary);
575
+ font-size: 10px;
576
+ text-decoration: underline;
577
  }
578
 
579
  :global(.mdc-button.user_button) {