[MEF]
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
@model IEnumerable<PerformerProfile>
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Les profiles - " + (ViewBag.Activity?.Name ?? SR["Any"]);
|
||||
ViewData["Title"] = (ViewBag.Activity?.Name ?? SR["Any"]) ;
|
||||
}
|
||||
<h1>@ViewData["Title"]</h1>
|
||||
<em>@ViewBag.Activity.Description</em>
|
||||
|
@ -1,7 +1,7 @@
|
||||
@model IEnumerable<PerformerProfile>
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Les profiles - " + (ViewBag.Activity?.Name ?? SR["Any"]);
|
||||
ViewData["Title"] = (ViewBag.Activity?.Name ?? SR["Any"]) ;
|
||||
}
|
||||
<h1>@ViewData["Title"]</h1>
|
||||
<em>@ViewBag.Activity.Description</em>
|
||||
@ -12,7 +12,7 @@
|
||||
<form action="~/Command/Create" >
|
||||
<input type="hidden" name="id" value="@profile.PerformerId" />
|
||||
<input type="hidden" name="activityCode" value="@ViewBag.Activity.Code" />
|
||||
<input type="submit" value="@SR["Proposer un rendez-vous à"] @profile.Performer.UserName"/>
|
||||
<input type="submit" class="btn btn-success" value="@SR["Proposer un rendez-vous à"] @profile.Performer.UserName"/>
|
||||
</form>
|
||||
}
|
||||
|
||||
|
11
Yavsc/wwwroot/css/main/bootstrap.css
vendored
11
Yavsc/wwwroot/css/main/bootstrap.css
vendored
@ -3185,18 +3185,19 @@ fieldset[disabled] .btn-primary.active {
|
||||
}
|
||||
.btn-success {
|
||||
color: #fff;
|
||||
background-color: #976116;
|
||||
background-color: #1f6000;
|
||||
border-color: #b1aa14;
|
||||
transition: color 1s, background-color 1s;
|
||||
}
|
||||
.btn-success:focus,
|
||||
.btn-success.focus {
|
||||
color: #fff;
|
||||
background-color: #b1aa14;
|
||||
color: #000;
|
||||
background-color: #51ff00;
|
||||
border-color: #b1aa14;
|
||||
}
|
||||
.btn-success:hover {
|
||||
color: #fff;
|
||||
background-color: #b1aa14;
|
||||
color: #000;
|
||||
background-color: #51ff00;
|
||||
border-color: #6a6713;
|
||||
}
|
||||
.btn-success:active,
|
||||
|
@ -5,7 +5,9 @@
|
||||
.performer {
|
||||
padding-left: 1em;
|
||||
background-repeat: no-repeat;
|
||||
background-image: url('/images/greenstar.svg');
|
||||
background-image: url('/images/lis.svg');
|
||||
background-attachment: local;
|
||||
background-size: contain;
|
||||
}
|
||||
.performer ul {
|
||||
margin-left: 2.5em;
|
||||
|
72
Yavsc/wwwroot/images/lis.svg
Normal file
72
Yavsc/wwwroot/images/lis.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 14 KiB |
Reference in New Issue
Block a user