Browse Source

Minor style fixes.

pull/625/head
Sebastian 5 years ago
parent
commit
2670a22d73
  1. 1
      backend/src/Squidex/Areas/IdentityServer/Views/Account/Consent.cshtml
  2. 1
      backend/src/Squidex/Areas/IdentityServer/Views/Account/Login.cshtml
  3. 4
      backend/src/Squidex/Areas/IdentityServer/Views/Profile/Profile.cshtml
  4. 2
      frontend/app/theme/_static.scss

1
backend/src/Squidex/Areas/IdentityServer/Views/Account/Consent.cshtml

@ -2,6 +2,7 @@
@{ @{
ViewBag.ThemeColor = "white"; ViewBag.ThemeColor = "white";
ViewBag.ThemeSize = "profile-lg";
ViewBag.Title = T.Get("users.consent.title"); ViewBag.Title = T.Get("users.consent.title");
} }

1
backend/src/Squidex/Areas/IdentityServer/Views/Account/Login.cshtml

@ -2,6 +2,7 @@
@{ @{
ViewBag.ThemeColor = "white"; ViewBag.ThemeColor = "white";
ViewBag.ThemeSize = "profile-lg";
var action = Model.IsLogin ? T.Get("common.login") : T.Get("common.signup"); var action = Model.IsLogin ? T.Get("common.login") : T.Get("common.signup");

4
backend/src/Squidex/Areas/IdentityServer/Views/Profile/Profile.cshtml

@ -35,7 +35,7 @@
</div> </div>
} }
<div class="row profile-section"> <div class="row profile-section-sm">
<div class="col profile-picture-col"> <div class="col profile-picture-col">
<img class="profile-picture" src="@Url.RootContentUrl($"~/api/users/{Model.Id}/picture/?q={Guid.NewGuid()}")" /> <img class="profile-picture" src="@Url.RootContentUrl($"~/api/users/{Model.Id}/picture/?q={Guid.NewGuid()}")" />
</div> </div>
@ -252,7 +252,7 @@
</div> </div>
<div class="form-group"> <div class="form-group">
<button type="button" class="btn btn-text-success" id="propertyAdd"> <button type="button" class="btn btn-outline-success" id="propertyAdd">
<i class="icon-plus"></i> @T.Get("users.profile.propertyAdd") <i class="icon-plus"></i> @T.Get("users.profile.propertyAdd")
</button> </button>
</div> </div>

2
frontend/app/theme/_static.scss

@ -42,7 +42,7 @@ noscript {
} }
&-section { &-section {
margin-top: 2rem; margin-top: 3rem;
} }
&-section-sm { &-section-sm {

Loading…
Cancel
Save