This commit is contained in:
2018-12-21 14:07:17 +00:00
parent fffed47b75
commit 485c2fa3ee
6 changed files with 10 additions and 11 deletions

View File

@ -74,6 +74,6 @@
@Html.AntiForgeryToken()
</form>
}
} }
}
</div>

View File

@ -6,14 +6,14 @@
<link rel="icon" href="@SiteSettings.Value.FavIcon" asp-append-version="true" />
<title>@ViewData["Title"] - @SiteSettings.Value.Title</title>
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css" />
<environment names="Development">
<script src="~/js/jquery-2.2.4.js" ></script>
<script src="~/lib/bootstrap/dist/js/bootstrap.js"></script>
<script src="~/js/showdown.js"></script>
<script src="~/js/md-helpers.js"></script>
<link rel="stylesheet" href="~/css/main/bootstrap.css" />
<script src="~/js/bootstrap.js"></script>
<link rel="stylesheet" href="~/css/main/site.css" asp-append-version="true"/>
<link rel="stylesheet" href="~/css/main/jquery-ui.css" asp-append-version="true"/>
<link rel="alternate stylesheet" title="Dark" href="~/css/dark/site.css" asp-append-version="true" />
@ -26,8 +26,9 @@
<environment names="yavsc,yavscpre,zicmoove,lua,coiffure,freefield">
<link rel="stylesheet" href="~/css/main/bootstrap.min.css" />
<script src="~/js/jquery-2.2.4.min.js" ></script>
<script src="~/lib/bootstrap/dist/js/bootstrap.js"></script>
<script src="~/js/bootstrap.min.js"></script>
<script src="~/js/showdown.min.js"></script>
<script src="~/js/md-helpers.min.js"></script>
<link rel="stylesheet" href="~/css/main/site.min.css" asp-append-version="true"/>

View File

@ -50,4 +50,3 @@ else
<li><a class="navbar-link" asp-controller="Account" asp-action="SignIn" asp-route-returnurl="@Url.Action()" >@SR["Login"]</a></li>
</ul>
}

View File

@ -3242,8 +3242,7 @@ input[type="search"] {
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
position: absolute;
margin-top: 4px \9;
margin-left: -20px;
margin-top: 4px;
}
.radio+.radio,
@ -4291,7 +4290,7 @@ tbody.collapse.in {
margin-left: 2px;
vertical-align: middle;
border-top: 4px dashed;
border-top: 4px solid \9;
border-top: 4px solid;
border-right: 4px solid transparent;
border-left: 4px solid transparent;
}
@ -8082,4 +8081,4 @@ button.close {
.hidden-print {
display: none !important;
}
}
}

File diff suppressed because one or more lines are too long

View File

@ -29,7 +29,7 @@ test: $(BINTARGET)
ASPNET_ENV=Development dnx test -maxthreads 1 -trait regres=no
clean:
rm -rf bin obj
rm -rf bin obj testingrepo
.PHONY: test