vnext
Paul Schneider 8 years ago
parent 4d3194d13a
commit a96a1310d6
5 changed files with 84 additions and 9 deletions

@ -1,7 +1,7 @@
@model IEnumerable<PerformerProfile> @model IEnumerable<PerformerProfile>
@{ @{
ViewData["Title"] = "Les profiles - " + (ViewBag.Activity?.Name ?? SR["Any"]); ViewData["Title"] = (ViewBag.Activity?.Name ?? SR["Any"]) ;
} }
<h1>@ViewData["Title"]</h1> <h1>@ViewData["Title"]</h1>
<em>@ViewBag.Activity.Description</em> <em>@ViewBag.Activity.Description</em>

@ -1,7 +1,7 @@
@model IEnumerable<PerformerProfile> @model IEnumerable<PerformerProfile>
@{ @{
ViewData["Title"] = "Les profiles - " + (ViewBag.Activity?.Name ?? SR["Any"]); ViewData["Title"] = (ViewBag.Activity?.Name ?? SR["Any"]) ;
} }
<h1>@ViewData["Title"]</h1> <h1>@ViewData["Title"]</h1>
<em>@ViewBag.Activity.Description</em> <em>@ViewBag.Activity.Description</em>
@ -12,7 +12,7 @@
<form action="~/Command/Create" > <form action="~/Command/Create" >
<input type="hidden" name="id" value="@profile.PerformerId" /> <input type="hidden" name="id" value="@profile.PerformerId" />
<input type="hidden" name="activityCode" value="@ViewBag.Activity.Code" /> <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> </form>
} }

@ -3185,18 +3185,19 @@ fieldset[disabled] .btn-primary.active {
} }
.btn-success { .btn-success {
color: #fff; color: #fff;
background-color: #976116; background-color: #1f6000;
border-color: #b1aa14; border-color: #b1aa14;
transition: color 1s, background-color 1s;
} }
.btn-success:focus, .btn-success:focus,
.btn-success.focus { .btn-success.focus {
color: #fff; color: #000;
background-color: #b1aa14; background-color: #51ff00;
border-color: #b1aa14; border-color: #b1aa14;
} }
.btn-success:hover { .btn-success:hover {
color: #fff; color: #000;
background-color: #b1aa14; background-color: #51ff00;
border-color: #6a6713; border-color: #6a6713;
} }
.btn-success:active, .btn-success:active,

@ -5,7 +5,9 @@
.performer { .performer {
padding-left: 1em; padding-left: 1em;
background-repeat: no-repeat; background-repeat: no-repeat;
background-image: url('/images/greenstar.svg'); background-image: url('/images/lis.svg');
background-attachment: local;
background-size: contain;
} }
.performer ul { .performer ul {
margin-left: 2.5em; margin-left: 2.5em;

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB

Loading…