Skip to content

Commit 41f1d42

Browse files
dimodijivanova
authored andcommitted
Switch to a single table layout CSS rule per page
1 parent 790a50a commit 41f1d42

File tree

52 files changed

+1
-161
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+1
-161
lines changed

_contentTemplates/common/parameters-table-styles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#table-layout
22
<style>
3-
article style + table {
3+
article table {
44
table-layout: auto;
55
word-break: normal;
66
}

common-features/data-binding/onread.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,6 @@ The `ToDataSourceResult` extension method is able to extract the requested data
107107

108108
`ToDataSourceResult` returns a [`DataSourceResult` object](/blazor-ui/api/Telerik.DataSource.DataSourceResult). Its most important properties are:
109109

110-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
111-
112110
| Property | Type | Description |
113111
| --- | --- | --- |
114112
| `Data` | `IEnumerable` | The chunk (page) of data items to render. All data operations are already applied (sorting, filtering, etc.) |

components/autocomplete/events.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,6 @@ The `OnClose` event fires before the AutoComplete popup closes.
268268

269269
The event handler receives as an argument an `AutoCompleteCloseEventArgs` object that contains:
270270

271-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
272-
273271
| Property | Description |
274272
| --- | --- |
275273
| `IsCancelled` | Set the `IsCancelled` property to `true` to cancel the closing of the popup. |
@@ -305,8 +303,6 @@ The `OnItemRender` event fires when each item in the AutoComplete dropdown rende
305303

306304
The event handler receives as an argument an `AutoCompleteItemRenderEventArgs<TItem>` object that contains:
307305

308-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
309-
310306
| Property | Description |
311307
| --- | --- |
312308
| `Item` | The current item that renders in the AutoComplete. |

components/carousel/overview.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,6 @@ The Carousel is a generic component. Its type depends on the type of its model a
9191

9292
The table below lists the Carousel methods. Also consult the [Carousel API](/blazor-ui/api/Telerik.Blazor.Components.TelerikCarousel-1).
9393

94-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
95-
9694
| Method | Description |
9795
| --- | --- |
9896
| `Rebind` | [Refreshes the component data]({%slug carousel-refresh-data%}#rebind-method). |

components/chart/overview.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,6 @@ The following table lists Chart parameters, which are not discussed elsewhere in
145145

146146
To execute Chart methods, obtain reference to the component instance via `@ref`.
147147

148-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
149-
150148
| Method | Description |
151149
|---------|-------------|
152150
| Refresh | Use the method to programmatically re-render the Chart. |

components/checkbox/appearance.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ You can increase or decrease the size of the CheckBox by setting the `Size` attr
5757

5858
The `Rounded` attribute applies the `border-radius` CSS rule to the checkbox to achieve curving of the edges. You can set it to a member of the `Telerik.Blazor.ThemeConstants.CheckBox.Rounded` class:
5959

60-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
61-
6260
| Class member | Manual declaration |
6361
|------------|--------|
6462
|`Small` |`sm`|

components/colorpicker/events.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,6 @@ The `OnClose` event fires before the ColorPicker popup closes.
123123

124124
The event handler receives as an argument an `MultiColumnComboBoxCloseEventArgs` object that contains:
125125

126-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
127-
128126
| Property | Description |
129127
| --- | --- |
130128
| `IsCancelled` | Set the `IsCancelled` property to `true` to cancel the closing of the popup. |

components/combobox/events.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -310,8 +310,6 @@ The `OnOpen` event fires before the ComboBox popup renders.
310310

311311
The event handler receives as an argument an `ComboBoxOpenEventArgs` object that contains:
312312

313-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
314-
315313
| Property | Description |
316314
| --- | --- |
317315
| `IsCancelled` | Set the `IsCancelled` property to `true` to cancel the opening of the popup. |
@@ -353,8 +351,6 @@ The `OnClose` event fires before the ComboBox popup closes.
353351

354352
The event handler receives as an argument an `ComboBoxCloseEventArgs` object that contains:
355353

356-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
357-
358354
| Property | Description |
359355
| --- | --- |
360356
| `IsCancelled` | Set the `IsCancelled` property to `true` to cancel the closing of the popup. |
@@ -401,8 +397,6 @@ The `OnItemRender` event fires when each item in the ComboBox dropdown renders.
401397

402398
The event handler receives as an argument an `ComboBoxItemRenderEventArgs<TItem>` object that contains:
403399

404-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
405-
406400
| Property | Description |
407401
| --- | --- |
408402
| `Item` | The current item that renders in the ComboBox. |

components/dateinput/overview.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,6 @@ You can ensure that the component value is acceptable by using the built-in vali
6767

6868
The following parameters enable you to customize the appearance of the Blazor DateInput:
6969

70-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
71-
7270
| Attribute | Type and Default Value | Description |
7371
|----------|----------|----------|
7472
|`Class`| `string` |The CSS class that will be rendered on the `input` element|

components/datepicker/events.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,6 @@ The `OnClose` event fires before the DatePicker popup closes.
161161

162162
The event handler receives as an argument an `DatePickerCloseEventArgs` object that contains:
163163

164-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
165-
166164
| Property | Description |
167165
| --- | --- |
168166
| `IsCancelled` | Set the `IsCancelled` property to `true` to cancel the closing of the popup. |

0 commit comments

Comments
 (0)