Skip to content

Commit 25a2dc4

Browse files
authored
Merge branch 'master' into niliev/revamp
2 parents 9526441 + 5a208ff commit 25a2dc4

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

app/ng-ui-widgets-category/tabs/end.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
| `iosIconRenderingMode` | _"automatic"_, _"alwaysOriginal"_, _"alwaysTemplate"_ | Gets or sets the icon rendering mode on iOS. |
1717
| `isIconSizeFixed` | `boolean` | When set to `true` the icon will have fixed size following the platform-specific design guidelines. Default value: `true`. |
1818
| `items` | `Array<TabStripItem>` | Gets or sets an array of strip items of the TabStrip. |
19-
19+
| `highlightColor` | | Gets or sets the underline color of the selected TabStripItem. |
2020

2121
### TabStripItem Properties
2222

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
> **Note:** - The integration with `nativescript-theme` and the support for custom CSS is currently under development and is on its way.
22
3-
<snippet id='tabs-theming-css-ng'/>
3+
<snippet id='tabs-theming-css-ng'/>
4+
5+
> **Note:** Currently, we can set only the `backgroundColor`, `color`, `fontFamily`, `fontSize`, `fontStyle`, `fontWeight` and `textTransform` styling properties to the `Label` and `Image` components inside the TabStripItem. More about the usage of those properties can be found in the [Styling]({%slug styling%}#supported-css-properties) article.
6+
7+
> **Note:** On iOS, the TabStripItems can not be stylied individually.

app/ng-ui-widgets-category/tabs/styling/styling.component.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,7 @@ TabContentItem.third-tabcontent {
2525
background-color: blueviolet;
2626
color: antiquewhite;
2727
}
28+
Tabs TabStrip{
29+
highlight-color: red;
30+
}
2831
/* << tabs-theming-css-ng */

webpack.config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Add the `test.html`for the WebView exmaple via the following line in `webpack.config.js`
1+
Add the `test.html` for the WebView examples via the following line in `webpack.config.js`
22

33
```JS
44
new CopyWebpackPlugin([
@@ -7,4 +7,4 @@ new CopyWebpackPlugin([
77
{ from: { glob: "**/*.jpg" } },
88
{ from: { glob: "**/*.png" } },
99
]
10-
```
10+
```

0 commit comments

Comments
 (0)