Add 'See also' sections to references.

This commit is contained in:
Rodrigo Girão Serrão
2023-01-09 15:25:47 +00:00
parent 8bf211b898
commit e81779f97c
43 changed files with 216 additions and 5 deletions

View File

@@ -43,3 +43,10 @@ scrollbar-backround: blue;
```py
widget.styles.scrollbar_background = "blue"
```
## See also
- [`scrollbar-bakcground-active`](./scrollbar_color_active.md) to set the scrollbar bakcground color when the scrollbar is being dragged.
- [`scrollbar-bakcground-hover`](./scrollbar_color_hover.md) to set the scrollbar bakcground color when the mouse pointer is over it.
- [`scrollbar-color`](./scrollbar_color.md) to set the color of scrollbars.
- [`scrollbar-corner-color`](./scrollbar_corner_color.md) to set the color of the corner where horizontal and vertical scrollbars meet.

View File

@@ -44,3 +44,9 @@ scrollbar-backround-active: red;
```py
widget.styles.scrollbar_background_active = "red"
```
## See also
- [`scrollbar-background`](./scrollbar_background.md) to set the background color of scrollbars.
- [`scrollbar-bakcground-hover`](./scrollbar_color_hover.md) to set the scrollbar bakcground color when the mouse pointer is over it.
- [`scrollbar-color-active`](./scrollbar_color_active.md) to set the scrollbar color when the scrollbar is being dragged.

View File

@@ -44,3 +44,11 @@ scrollbar-background-hover: purple;
```py
widget.styles.scrollbar_background_hover = "purple"
```
## See also
## See also
- [`scrollbar-background`](./scrollbar_background.md) to set the background color of scrollbars.
- [`scrollbar-bakcground-active`](./scrollbar_color_active.md) to set the scrollbar bakcground color when the scrollbar is being dragged.
- [`scrollbar-color-hover`](./scrollbar_color_hover.md) to set the scrollbar color when the mouse pointer is over it.

View File

@@ -44,3 +44,10 @@ scrollbar-color: cyan;
```py
widget.styles.scrollbar_color = "cyan"
```
## See also
- [`scrollbar-background`](./scrollbar_background.md) to set the background color of scrollbars.
- [`scrollbar-color-active`](./scrollbar_color_active.md) to set the scrollbar color when the scrollbar is being dragged.
- [`scrollbar-color-hover`](./scrollbar_color_hover.md) to set the scrollbar color when the mouse pointer is over it.
- [`scrollbar-corner-color`](./scrollbar_corner_color.md) to set the color of the corner where horizontal and vertical scrollbars meet.

View File

@@ -44,3 +44,9 @@ scrollbar-color-active: yellow;
```py
widget.styles.scrollbar_color_active = "yellow"
```
## See also
- [`scrollbar-bakcground-active`](./scrollbar_color_active.md) to set the scrollbar bakcground color when the scrollbar is being dragged.
- [`scrollbar-color`](./scrollbar_color.md) to set the color of scrollbars.
- [`scrollbar-color-hover`](./scrollbar_color_hover.md) to set the scrollbar color when the mouse pointer is over it.

View File

@@ -44,3 +44,9 @@ scrollbar-color-hover: pink;
```py
widget.styles.scrollbar_color_hover = "pink"
```
## See also
- [`scrollbar-bakcground-hover`](./scrollbar_color_hover.md) to set the scrollbar bakcground color when the mouse pointer is over it.
- [`scrollbar-color`](./scrollbar_color.md) to set the color of scrollbars.
- [`scrollbar-color-active`](./scrollbar_color_active.md) to set the scrollbar color when the scrollbar is being dragged.

View File

@@ -42,3 +42,8 @@ scrollbar-corner-color: white;
```py
widget.styles.scrollbar_corner_color = "white"
```
## See also
- [`scrollbar-background`](./scrollbar_background.md) to set the background color of scrollbars.
- [`scrollbar-color`](./scrollbar_color.md) to set the color of scrollbars.