Skip to content

Commit 9eec9a8

Browse files
authored
Merge pull request #531 from iyilm4z/mvc-remove-animate-css
Remove animate.css from mvc client
2 parents d6d8aa3 + fc4fcbb commit 9eec9a8

File tree

6 files changed

+4
-18
lines changed

6 files changed

+4
-18
lines changed

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/Views/Account/_Styles.cshtml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@
1313
<link href="~/libs-ext/famfamfam-flags/dist/sprite/famfamfam-flags.min.css" rel="stylesheet" asp-append-version="true" />
1414
@*abp styles end*@
1515

16-
@*other styles start*@
17-
<link href="~/libs/animate.css/animate.css" rel="stylesheet" asp-append-version="true" />
18-
@*other styles end*@
19-
2016
@*custom styles start*@
2117
<link href="~/view-resources/Views/Account/_Layout.css" rel="stylesheet" asp-append-version="true" />
2218
<link href="~/css/style.css" rel="stylesheet" asp-append-version="true" />

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/Views/Shared/Layout/_Styles.cshtml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@
1616
<link href="~/libs-ext/famfamfam-flags/dist/sprite/famfamfam-flags.min.css" rel="stylesheet" asp-append-version="true" />
1717
@*abp styles end*@
1818

19-
@*other styles start*@
20-
<link href="~/libs/animate.css/animate.css" rel="stylesheet" asp-append-version="true" />
21-
@*other styles end*@
22-
2319
@*custom styles start*@
2420
<link href="~/view-resources/Views/Shared/_Layout.css" rel="stylesheet" asp-append-version="true" />
2521
<link href="~/css/style.css" rel="stylesheet" asp-append-version="true" />

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/Views/Users/_CreateModal.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</li>
2121
</ul>
2222
<div class="tab-content mt-4">
23-
<div role="tabpanel" class="tab-pane container animated fadeIn active" id="create-user-details">
23+
<div role="tabpanel" class="tab-pane container active" id="create-user-details">
2424
<div class="form-group row required">
2525
<label class="col-md-3 col-form-label">@L("UserName")</label>
2626
<div class="col-md-9">
@@ -64,7 +64,7 @@
6464
</div>
6565
</div>
6666
</div>
67-
<div role="tabpanel" class="tab-pane container animated fadeIn" id="create-user-roles">
67+
<div role="tabpanel" class="tab-pane container" id="create-user-roles">
6868
<div class="row">
6969
@foreach (var role in Model.Roles)
7070
{

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/Views/Users/_EditModal.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</li>
1919
</ul>
2020
<div class="tab-content mt-4">
21-
<div role="tabpanel" class="tab-pane container animated fadeIn active" id="edit-user-details">
21+
<div role="tabpanel" class="tab-pane container active" id="edit-user-details">
2222
<div class="form-group row required">
2323
<label class="col-md-3 col-form-label" for="username">@L("UserName")</label>
2424
<div class="col-md-9">
@@ -50,7 +50,7 @@
5050
</div>
5151
</div>
5252
</div>
53-
<div role="tabpanel" class="tab-pane container animated fadeIn" id="edit-user-roles">
53+
<div role="tabpanel" class="tab-pane container" id="edit-user-roles">
5454
<div class="row">
5555
@foreach (var role in Model.Roles)
5656
{

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/bundleconfig.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"wwwroot/libs-ext/famfamfam-flags/dist/sprite/famfamfam-flags.css",
77
"wwwroot/libs/icheck-bootstrap/icheck-bootstrap.css",
88
"wwwroot/libs/toastr/toastr.css",
9-
"wwwroot/libs/animate.css/animate.css",
109
"wwwroot/libs/admin-lte/dist/css/adminlte.css",
1110
"wwwroot/css/style.css",
1211
"wwwroot/view-resources/Views/Account/_Layout.css"
@@ -40,7 +39,6 @@
4039
"inputFiles": [
4140
"wwwroot/libs/font-awesome/css/all.min.css",
4241
"wwwroot/libs-ext/famfamfam-flags/dist/sprite/famfamfam-flags.min.css",
43-
"wwwroot/libs/animate.css/animate.css",
4442
"wwwroot/libs/icheck-bootstrap/icheck-bootstrap.css",
4543
"wwwroot/libs/toastr/toastr.css",
4644
"wwwroot/libs/admin-lte/dist/css/adminlte.min.css",

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/libman.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -191,10 +191,6 @@
191191
"library": "[email protected]",
192192
"destination": "wwwroot/libs/jquery-validate"
193193
},
194-
{
195-
"library": "[email protected]",
196-
"destination": "wwwroot/libs/animate.css"
197-
},
198194
{
199195
"library": "[email protected]",
200196
"destination": "wwwroot/libs/push.js"

0 commit comments

Comments
 (0)