mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
🎨 visual help on clickable elements
This commit is contained in:
parent
37904596fb
commit
5eba5d684b
@ -43,14 +43,11 @@
|
|||||||
</select>
|
</select>
|
||||||
<span (click)="toggleMenu()" class="menu_label">Menu</span>
|
<span (click)="toggleMenu()" class="menu_label">Menu</span>
|
||||||
</div>
|
</div>
|
||||||
<h1 i18n>{{"Title"|translate}}</h1>
|
|
||||||
<div>
|
|
||||||
{{"Intro"|translate:user}}
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</header>
|
</header>
|
||||||
<framadate-navigation [step]="step"></framadate-navigation>
|
<framadate-navigation *ngIf="menuVisible" [step]="step"></framadate-navigation>
|
||||||
<main>
|
<main>
|
||||||
<router-outlet></router-outlet>
|
<router-outlet></router-outlet>
|
||||||
</main>
|
</main>
|
||||||
|
@ -8,7 +8,9 @@
|
|||||||
</p>
|
</p>
|
||||||
<div class="btn-next">
|
<div class="btn-next">
|
||||||
|
|
||||||
<button class="btn btn--full btn--primary">{{"config.letsgo"|translate}}</button>
|
<button [routerLink]="'step/date'" class="btn btn--full btn--primary">
|
||||||
|
{{"config.letsgo"|translate}}
|
||||||
|
</button>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
@ -17,8 +19,6 @@
|
|||||||
<h1 class="margin-top-x8">
|
<h1 class="margin-top-x8">
|
||||||
{{"config.find_my_polls"|translate}}
|
{{"config.find_my_polls"|translate}}
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
|
|
||||||
<form
|
<form
|
||||||
(ngSubmit)="findMyPollsByEmail(config.myEmail)"
|
(ngSubmit)="findMyPollsByEmail(config.myEmail)"
|
||||||
>
|
>
|
||||||
@ -30,19 +30,19 @@
|
|||||||
{{"config.find_helper"|translate}} :
|
{{"config.find_helper"|translate}} :
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
type="email"
|
|
||||||
name="mail"
|
|
||||||
id="email"
|
|
||||||
autofocus="autofocus"
|
|
||||||
[(ngModel)]="config.myEmail"
|
[(ngModel)]="config.myEmail"
|
||||||
|
autofocus="autofocus"
|
||||||
|
id="email"
|
||||||
|
name="mail"
|
||||||
required="required"
|
required="required"
|
||||||
|
type="email"
|
||||||
/>
|
/>
|
||||||
<input
|
<input
|
||||||
type="submit"
|
|
||||||
class="btn btn-block"
|
|
||||||
[ngClass]="{'btn-primary': config.myEmail}"
|
|
||||||
i18n-value="'config.find_button'|translate"
|
|
||||||
[disabled]="!config.myEmail"
|
[disabled]="!config.myEmail"
|
||||||
|
[ngClass]="{'btn-primary': config.myEmail}"
|
||||||
|
class="btn btn-block"
|
||||||
|
i18n-value="'config.find_button'|translate"
|
||||||
|
type="submit"
|
||||||
/>
|
/>
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
@ -60,6 +60,4 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -16,7 +16,10 @@ export class CreateOrRetrieveComponent extends BaseComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
this.findMyPollsByEmail('tktest@tktest.com')
|
// if (!environment.production) {
|
||||||
|
// this.findMyPollsByEmail('tktest@tktest.com')
|
||||||
|
// }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
findMyPollsByEmail(email: string) {
|
findMyPollsByEmail(email: string) {
|
||||||
|
@ -18,6 +18,9 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.clickable {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
margin: .5rem 0;
|
margin: .5rem 0;
|
||||||
|
@ -86,6 +86,14 @@ input {
|
|||||||
color: $violet;
|
color: $violet;
|
||||||
display: block;
|
display: block;
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
|
background: yellow;
|
||||||
|
position: relative;
|
||||||
|
top: -1em;
|
||||||
|
z-index: 2;
|
||||||
|
margin-right: 0.5em;
|
||||||
|
right: 0;
|
||||||
|
border: solid red 2px;
|
||||||
|
box-shadow: 0 0 10px orange;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -143,10 +151,16 @@ textarea {
|
|||||||
margin-top: 50px;
|
margin-top: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
label {
|
|
||||||
align-items: flex-start;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nobold {
|
.nobold {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
select, input, textarea {
|
||||||
|
@extend .clickable;
|
||||||
|
|
||||||
|
&:active,
|
||||||
|
&:focus,
|
||||||
|
&:hover {
|
||||||
|
color: $primary_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user