mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
Add 'See also' sections to references.
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user