Spaces:
Runtime error
Runtime error
Merge remote-tracking branch 'upstream/main' into docker-hf
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 |
}
|
@@ -342,3 +336,9 @@ table {
|
|
342 |
.smui-button--color-secondary.mdc-button--outlined:not(:disabled) {
|
343 |
border-color: var(--mdc-theme-secondary) !important;
|
344 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
border-radius: 2px;
|
55 |
}
|
56 |
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
input:disabled {
|
58 |
color: #ccc;
|
59 |
}
|
|
|
336 |
.smui-button--color-secondary.mdc-button--outlined:not(:disabled) {
|
337 |
border-color: var(--mdc-theme-secondary) !important;
|
338 |
}
|
339 |
+
.smui-button--color-secondary .mdc-button__ripple::before, .smui-button--color-secondary .mdc-button__ripple::after {
|
340 |
+
background-color: var(--mdc-theme-secondary) !important;
|
341 |
+
}
|
342 |
+
.smui-button--color-secondary:not(:disabled) .mdc-button__icon {
|
343 |
+
color: var(--mdc-theme-secondary) !important;
|
344 |
+
}
|
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,25 +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 |
-
|
529 |
-
<
|
530 |
-
|
531 |
-
|
532 |
-
variant="outlined"
|
533 |
-
color="secondary"
|
534 |
-
>
|
535 |
-
<Label>
|
536 |
-
<Icon class="material-icons">feedback_outline</Icon>
|
537 |
-
Feedback
|
538 |
-
</Label>
|
539 |
-
</Button>
|
540 |
-
|
541 |
</div>
|
542 |
</div>
|
543 |
{/if}
|
@@ -571,13 +557,23 @@
|
|
571 |
background: #f3f3f3;
|
572 |
z-index: 11;
|
573 |
bottom: 0;
|
574 |
-
padding:
|
575 |
}
|
576 |
.panel_footer_contents {
|
577 |
-
/* padding: 0px 20px; */
|
578 |
display: flex;
|
579 |
justify-content: space-around;
|
580 |
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
581 |
}
|
582 |
|
583 |
: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) {
|