parent
442530983b
commit
9057e890a4
@ -1,19 +1,23 @@
|
||||
<div class="feedback-container">
|
||||
<div class="feedback-choices" *ngIf="isOpen">
|
||||
<a href="mailto:contact@cipherbliss.com">
|
||||
<div class="feedback-choices" *ngIf="isOpen" [ngClass]="{ active: isOpen }">
|
||||
<a class="link" href="mailto:contact@cipherbliss.com">
|
||||
Par email
|
||||
<i class="fa fa-mail"></i>
|
||||
</a>
|
||||
<a href="https://framateam.org/ux-framatrucs/channels/framadate">
|
||||
<a class="link" href="https://riot.im/app/#/room/#framadate:matrix.org">
|
||||
Par Matrix
|
||||
<i class="fa fa-mail"></i>
|
||||
</a>
|
||||
<a class="link" href="https://framateam.org/ux-framatrucs/channels/framadate">
|
||||
Discuter sur Framateam
|
||||
<i class="fa fa-comments"></i>
|
||||
</a>
|
||||
<a href="https://framagit.org/framasoft/framadate/funky-framadate-front">
|
||||
<a class="link" href="https://framagit.org/framasoft/framadate/funky-framadate-front">
|
||||
Créer une Issue sur Framagit
|
||||
<i class="fa fa-gitlab"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="button" (click)="isOpen = !isOpen" [ngClass]="{ active: isOpen }">
|
||||
<i class="fa fa-comment"></i>
|
||||
<i class="fa fa-comment"></i> feedback
|
||||
</div>
|
||||
</div>
|
||||
|
@ -0,0 +1,40 @@
|
||||
:host {
|
||||
position: fixed;
|
||||
bottom: 1em;
|
||||
right: 1em;
|
||||
color: white;
|
||||
.feedback-choices {
|
||||
&.active {
|
||||
background: #8eb6ed;
|
||||
border-radius: 0.5em;
|
||||
padding: 1em;
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
}
|
||||
.link {
|
||||
margin: 1ch;
|
||||
display: block;
|
||||
max-width: 10em;
|
||||
a {
|
||||
color: white;
|
||||
&:hover {
|
||||
background: white;
|
||||
color: black;
|
||||
}
|
||||
}
|
||||
}
|
||||
i {
|
||||
color: white;
|
||||
margin: 1ch;
|
||||
}
|
||||
.button {
|
||||
float: right;
|
||||
color: white;
|
||||
background: #0c5593;
|
||||
padding: 1em;
|
||||
border-radius: 2em;
|
||||
&.active {
|
||||
background: #2e6da4;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue