parent
7ec56d446c
commit
aa20856ed9
@ -0,0 +1,27 @@ |
|||||||
|
label { |
||||||
|
color: #435960; |
||||||
|
font-weight: bold; |
||||||
|
} |
||||||
|
input { |
||||||
|
font-size: 1em; |
||||||
|
padding: .3rem; |
||||||
|
margin: .5rem; |
||||||
|
} |
||||||
|
|
||||||
|
button { |
||||||
|
padding: 5px; |
||||||
|
text-decoration: none; |
||||||
|
margin: 2px; |
||||||
|
display: inline-block; |
||||||
|
background-color: #E77620; |
||||||
|
color: white; |
||||||
|
border-radius: 4px; |
||||||
|
} |
||||||
|
button:hover { |
||||||
|
background-color: #42545C; |
||||||
|
} |
||||||
|
button:disabled { |
||||||
|
background-color: #eee; |
||||||
|
color: #ccc; |
||||||
|
cursor: auto; |
||||||
|
} |
@ -1 +1,14 @@ |
|||||||
<p>agence-edit works!</p> |
|
||||||
|
<div *ngIf="agence"> |
||||||
|
|
||||||
|
<h2>{{agence.name | uppercase}} </h2> |
||||||
|
<div><span>id : </span>{{agence.id}}</div> |
||||||
|
<div> |
||||||
|
<label class="col-2" for="agence-name">Agence name </label> |
||||||
|
<input id="agence-name" [(ngModel)]="agence.name" placeholder="name"> |
||||||
|
</div> |
||||||
|
|
||||||
|
<button (click)="goBack()">Retour</button> |
||||||
|
<button (click)="save()">Sauvegarder les changements</button> |
||||||
|
<button (click)="delete()">Supprimer l'agence</button> |
||||||
|
</div> |
||||||
|
@ -0,0 +1,61 @@ |
|||||||
|
label { |
||||||
|
color: #435960; |
||||||
|
font-weight: bold; |
||||||
|
} |
||||||
|
input { |
||||||
|
font-size: 1em; |
||||||
|
padding: .3rem; |
||||||
|
margin: .5rem; |
||||||
|
} |
||||||
|
|
||||||
|
.agences { |
||||||
|
margin: 0 0 2em 0; |
||||||
|
list-style-type: none; |
||||||
|
padding: 0; |
||||||
|
width: 15em; |
||||||
|
} |
||||||
|
.agences li { |
||||||
|
position: relative; |
||||||
|
cursor: pointer; |
||||||
|
} |
||||||
|
|
||||||
|
.agences li:hover { |
||||||
|
left: .1em; |
||||||
|
} |
||||||
|
|
||||||
|
.agences a, td a { |
||||||
|
padding: 5px; |
||||||
|
text-decoration: none; |
||||||
|
margin: 2px; |
||||||
|
display: inline-block; |
||||||
|
background-color: #E77620; |
||||||
|
color: white; |
||||||
|
border-radius: 4px; |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
.agences a:hover { |
||||||
|
background-color: #42545C; |
||||||
|
} |
||||||
|
|
||||||
|
.agences a:active { |
||||||
|
background-color: #525252; |
||||||
|
color: #fafafa; |
||||||
|
} |
||||||
|
|
||||||
|
.agences .badge{ |
||||||
|
display: inline-block; |
||||||
|
font-size: small; |
||||||
|
color: white; |
||||||
|
padding: 0.8em 0.7em 0 0.7em; |
||||||
|
background-color:#405061; |
||||||
|
line-height: 1em; |
||||||
|
position: relative; |
||||||
|
left: -1px; |
||||||
|
top: -4px; |
||||||
|
height: 1.8em; |
||||||
|
min-width: 16px; |
||||||
|
text-align: right; |
||||||
|
margin-right: .8em; |
||||||
|
border-radius: 4px 0 0 4px; |
||||||
|
} |
@ -1 +1 @@ |
|||||||
<p>home works!</p> |
<p>Home works!</p> |
||||||
|
Loading…
Reference in new issue