Skip to content

Commit

Permalink
Merge pull request #18941 from abpframework/8.0-no-table-striped
Browse files Browse the repository at this point in the history
Remove striped-rows from tables
  • Loading branch information
oykuermann authored Feb 6, 2024
2 parents 8c7351c + a19a13f commit c1a26b5
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
</abp-component-demo-section>

<abp-component-demo-section title="Example 3" view-path="@TablesDemoViewComponent.ViewPath">
<abp-table striped-rows="true" dark-theme="true">
<abp-table dark-theme="true">
<caption>List of users</caption>
<thead>
<tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@
<div class="demo-with-code">
<div class="demo-area">

<abp-table striped-rows="true" dark-theme="true">
<abp-table dark-theme="true">
<caption>List of users</caption>
<thead>
<tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
</abp-row>
</abp-card-header>
<abp-card-body>
<abp-table striped-rows="true" id="BlogsTable" class="nowrap">
<abp-table id="BlogsTable" class="nowrap">
<thead>
<tr>
<th>@L["Actions"]</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@

<abp-card>
<abp-card-body>
<abp-table striped-rows="true" id="BlogPostsTable" class="nowrap"></abp-table>
<abp-table id="BlogPostsTable" class="nowrap"></abp-table>
</abp-card-body>
</abp-card>
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<div id="CmsKitBlogsWrapper">
<abp-card>
<abp-card-body>
<abp-table striped-rows="true" id="BlogsTable" class="nowrap"></abp-table>
<abp-table id="BlogsTable" class="nowrap"></abp-table>
</abp-card-body>
</abp-card>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -109,5 +109,5 @@

<h3>@L["RepliesToThisComment"]</h3>

<abp-table striped-rows="true" id="CommentsTable" class="nowrap"></abp-table>
<abp-table id="CommentsTable" class="nowrap"></abp-table>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@

<abp-card>
<abp-card-body>
<abp-table striped-rows="true" id="CommentsTable" class="nowrap"></abp-table>
<abp-table id="CommentsTable" class="nowrap"></abp-table>
</abp-card-body>
</abp-card>
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@

<abp-card>
<abp-card-body>
<abp-table striped-rows="true" id="PagesTable" class="nowrap"></abp-table>
<abp-table id="PagesTable" class="nowrap"></abp-table>
</abp-card-body>
</abp-card>
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@

<abp-card>
<abp-card-body>
<abp-table striped-rows="true" id="TagsTable"></abp-table>
<abp-table id="TagsTable"></abp-table>
</abp-card-body>
</abp-card>
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
</form>
</abp-card-header>
<abp-card-body>
<abp-table striped-rows="true" id="DocumentsTable" class="nowrap">
<abp-table id="DocumentsTable" class="nowrap">
<thead>
<tr>
<th>@L["Actions"]</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
</abp-row>
</abp-card-header>
<abp-card-body>
<abp-table striped-rows="true" id="ProjectsTable" class="nowrap">
<abp-table id="ProjectsTable" class="nowrap">
<thead>
<tr>
<th>@L["Actions"]</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
}
<abp-card id="IdentityRolesWrapper">
<abp-card-body>
<abp-table striped-rows="true" class="nowrap"></abp-table>
<abp-table class="nowrap"></abp-table>
</abp-card-body>
</abp-card>
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@
}
<abp-card id="IdentityUsersWrapper">
<abp-card-body>
<abp-table striped-rows="true" class="nowrap"></abp-table>
<abp-table class="nowrap"></abp-table>
</abp-card-body>
</abp-card>
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
}
<abp-card id="TenantsWrapper">
<abp-card-body>
<abp-table striped-rows="true" class="nowrap"></abp-table>
<abp-table class="nowrap"></abp-table>
</abp-card-body>
</abp-card>
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

@Html.Raw(Model.PathNavigation)

<abp-table striped-rows="true" class="nowrap dataTable no-footer">
<abp-table class="nowrap dataTable no-footer">
<thead>
<tr>
<th>@UiLocalizer["Actions"]</th>
Expand Down

0 comments on commit c1a26b5

Please sign in to comment.