Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

In theory this will fix #1585... font awesome in IE7 - now how to test it? #1697

Merged
merged 1 commit into from
Nov 20, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/NuGetGallery/Views/Packages/Edit.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
}

@Styles.Render("~/Content/font-awesome.css")
<!--[if IE 7]>
@Styles.Render("~/Content/font-awesome-ie7.min.css")
<![endif]-->

@section BottomScripts {
@Scripts.Render("~/Scripts/jquery-ui-1.10.3.js")
Expand Down
9 changes: 6 additions & 3 deletions src/NuGetGallery/Views/Packages/VerifyPackage.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
}

@Styles.Render("~/Content/font-awesome.css")
<!--[if IE 7]>
@Styles.Render("~/Content/font-awesome-ie7.min.css")
<![endif]-->
<h1 class="page-heading">Verify Details &amp; Submit</h1>

@ViewHelpers.UploadSequence(2)
Expand Down Expand Up @@ -67,7 +70,7 @@
<p>@value</p>
}
</div>
<div id="@(formid +"Field")" style="display: none">
<div id="@(formid + "Field")" style="display: none">
@Html.EditorFor(func)
@Html.ValidationMessageFor(func)
</div>
Expand Down Expand Up @@ -109,7 +112,7 @@
</div>
<div id="Edit_RequiresLicenseAcceptanceField" style="display: none; width: 100%">
<div class="form-field" style="display: inline">
@Html.DropDownList("Edit.RequiresLicenseAcceptance",
@Html.DropDownList("Edit.RequiresLicenseAcceptance",
new List<SelectListItem>
{
new SelectListItem { Text = "Yes", Value = "true" },
Expand All @@ -125,7 +128,7 @@
<li>
<h4>Listed in Search Results</h4>
<div class="form-field">
@Html.DropDownList("Listed",
@Html.DropDownList("Listed",
new List<SelectListItem>
{
new SelectListItem { Text = "Yes", Value = "true", Selected = true },
Expand Down