mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
:style: style for feedback options, fixed floating button
This commit is contained in:
parent
442530983b
commit
9057e890a4
@ -3,6 +3,7 @@
|
|||||||
|
|
||||||
<main>
|
<main>
|
||||||
<router-outlet></router-outlet>
|
<router-outlet></router-outlet>
|
||||||
|
<app-feedback></app-feedback>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<app-footer></app-footer>
|
<app-footer></app-footer>
|
||||||
|
@ -22,6 +22,7 @@ import { AppComponent } from './app.component';
|
|||||||
import { CoreModule } from './core/core.module';
|
import { CoreModule } from './core/core.module';
|
||||||
import { OldStuffModule } from './features/old-stuff/old-stuff.module';
|
import { OldStuffModule } from './features/old-stuff/old-stuff.module';
|
||||||
import { SharedModule } from './shared/shared.module';
|
import { SharedModule } from './shared/shared.module';
|
||||||
|
import { ParticipationModule } from './features/participation/participation.module';
|
||||||
|
|
||||||
export class MyMissingTranslationHandler implements MissingTranslationHandler {
|
export class MyMissingTranslationHandler implements MissingTranslationHandler {
|
||||||
public handle(params: MissingTranslationHandlerParams): string {
|
public handle(params: MissingTranslationHandlerParams): string {
|
||||||
@ -60,6 +61,7 @@ export function HttpLoaderFactory(http: HttpClient): TranslateHttpLoader {
|
|||||||
useDefaultLang: false,
|
useDefaultLang: false,
|
||||||
}),
|
}),
|
||||||
OldStuffModule,
|
OldStuffModule,
|
||||||
|
ParticipationModule,
|
||||||
],
|
],
|
||||||
providers: [Title, TranslateService],
|
providers: [Title, TranslateService],
|
||||||
bootstrap: [AppComponent],
|
bootstrap: [AppComponent],
|
||||||
|
@ -1,19 +1,23 @@
|
|||||||
<div class="feedback-container">
|
<div class="feedback-container">
|
||||||
<div class="feedback-choices" *ngIf="isOpen">
|
<div class="feedback-choices" *ngIf="isOpen" [ngClass]="{ active: isOpen }">
|
||||||
<a href="mailto:contact@cipherbliss.com">
|
<a class="link" href="mailto:contact@cipherbliss.com">
|
||||||
Par email
|
Par email
|
||||||
<i class="fa fa-mail"></i>
|
<i class="fa fa-mail"></i>
|
||||||
</a>
|
</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
|
Discuter sur Framateam
|
||||||
<i class="fa fa-comments"></i>
|
<i class="fa fa-comments"></i>
|
||||||
</a>
|
</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
|
Créer une Issue sur Framagit
|
||||||
<i class="fa fa-gitlab"></i>
|
<i class="fa fa-gitlab"></i>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="button" (click)="isOpen = !isOpen" [ngClass]="{ active: isOpen }">
|
<div class="button" (click)="isOpen = !isOpen" [ngClass]="{ active: isOpen }">
|
||||||
<i class="fa fa-comment"></i>
|
<i class="fa fa-comment"></i> feedback
|
||||||
</div>
|
</div>
|
||||||
</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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -6,7 +6,7 @@ import { Component, OnInit } from '@angular/core';
|
|||||||
styleUrls: ['./feedback.component.scss'],
|
styleUrls: ['./feedback.component.scss'],
|
||||||
})
|
})
|
||||||
export class FeedbackComponent implements OnInit {
|
export class FeedbackComponent implements OnInit {
|
||||||
private isOpen = false;
|
private isOpen = true;
|
||||||
|
|
||||||
constructor() {}
|
constructor() {}
|
||||||
ngOnInit(): void {}
|
ngOnInit(): void {}
|
||||||
|
@ -11,5 +11,6 @@ import { FeedbackComponent } from './feedback/feedback.component';
|
|||||||
@NgModule({
|
@NgModule({
|
||||||
declarations: [ParticipationComponent, PollComponent, FeedbackComponent],
|
declarations: [ParticipationComponent, PollComponent, FeedbackComponent],
|
||||||
imports: [CommonModule, ParticipationRoutingModule, SharedModule, TranslateModule.forChild({ extend: true })],
|
imports: [CommonModule, ParticipationRoutingModule, SharedModule, TranslateModule.forChild({ extend: true })],
|
||||||
|
exports: [FeedbackComponent],
|
||||||
})
|
})
|
||||||
export class ParticipationModule {}
|
export class ParticipationModule {}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user