Skip to content

Commit c93d096

Browse files
fix: Relative url to css docs fixed.
1 parent 1154b56 commit c93d096

22 files changed

+44
-44
lines changed

docs/styles/grid/column_span.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The `column-span` style specifies how many columns a widget will span in a grid
99
## Syntax
1010

1111
--8<-- "docs/snippets/syntax_block_start.md"
12-
column-span: <a href="../../css_types/integer">&lt;integer&gt;</a>;
12+
column-span: <a href="../../../css_types/integer">&lt;integer&gt;</a>;
1313
--8<-- "docs/snippets/syntax_block_end.md"
1414

1515
The `column-span` style accepts a single non-negative [`<integer>`](../../css_types/integer.md) that quantifies how many columns the given widget spans.

docs/styles/grid/grid_columns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The `grid-columns` style allows to define the width of the columns of the grid.
99
## Syntax
1010

1111
--8<-- "docs/snippets/syntax_block_start.md"
12-
grid-columns: <a href="../../css_types/scalar">&lt;scalar&gt;</a>+;
12+
grid-columns: <a href="../../../css_types/scalar">&lt;scalar&gt;</a>+;
1313
--8<-- "docs/snippets/syntax_block_end.md"
1414

1515
The `grid-columns` style takes one or more [`<scalar>`](../../css_types/scalar.md) that specify the length of the columns of the grid.

docs/styles/grid/grid_gutter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ No spacing is added between the edges of the cells and the edges of the containe
1313
## Syntax
1414

1515
--8<-- "docs/snippets/syntax_block_start.md"
16-
grid-gutter: <a href="../../css_types/integer">&lt;integer&gt;</a> [<a href="../../css_types/integer">&lt;integer&gt;</a>];
16+
grid-gutter: <a href="../../../css_types/integer">&lt;integer&gt;</a> [<a href="../../../css_types/integer">&lt;integer&gt;</a>];
1717
--8<-- "docs/snippets/syntax_block_end.md"
1818

1919
The `grid-gutter` style takes one or two [`<integer>`](../../css_types/integer.md) that set the length of the gutter along the vertical and horizontal axes.

docs/styles/grid/grid_rows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The `grid-rows` style allows to define the height of the rows of the grid.
99
## Syntax
1010

1111
--8<-- "docs/snippets/syntax_block_start.md"
12-
grid-rows: <a href="../../css_types/scalar">&lt;scalar&gt;</a>+;
12+
grid-rows: <a href="../../../css_types/scalar">&lt;scalar&gt;</a>+;
1313
--8<-- "docs/snippets/syntax_block_end.md"
1414

1515
The `grid-rows` style takes one or more [`<scalar>`](../../css_types/scalar.md) that specify the length of the rows of the grid.

docs/styles/grid/grid_size.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The number of rows can be left unspecified and it will be computed automatically
1111
## Syntax
1212

1313
--8<-- "docs/snippets/syntax_block_start.md"
14-
grid-size: <a href="../../css_types/integer">&lt;integer&gt;</a> [<a href="../../css_types/integer">&lt;integer&gt;</a>];
14+
grid-size: <a href="../../../css_types/integer">&lt;integer&gt;</a> [<a href="../../../css_types/integer">&lt;integer&gt;</a>];
1515
--8<-- "docs/snippets/syntax_block_end.md"
1616

1717
The `grid-size` style takes one or two non-negative [`<integer>`](../../css_types/integer.md).

docs/styles/grid/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ For an in-depth look at the grid layout, visit the grid [guide](../../guide/layo
1616
## Syntax
1717

1818
--8<-- "docs/snippets/syntax_block_start.md"
19-
<a href="./column_span.md">column-span</a>: <a href="../../css_types/integer">&lt;integer&gt;</a>;
19+
<a href="./column_span.md">column-span</a>: <a href="../../../css_types/integer">&lt;integer&gt;</a>;
2020

21-
<a href="./grid_columns.md">grid-columns</a>: <a href="../../css_types/scalar">&lt;scalar&gt;</a>+;
21+
<a href="./grid_columns.md">grid-columns</a>: <a href="../../../css_types/scalar">&lt;scalar&gt;</a>+;
2222

23-
<a href="./grid_gutter.md">grid-gutter</a>: <a href="../../css_types/scalar">&lt;scalar&gt;</a> [<a href="../../css_types/scalar">&lt;scalar&gt;</a>];
23+
<a href="./grid_gutter.md">grid-gutter</a>: <a href="../../../css_types/scalar">&lt;scalar&gt;</a> [<a href="../../../css_types/scalar">&lt;scalar&gt;</a>];
2424

25-
<a href="./grid_rows.md">grid-rows</a>: <a href="../../css_types/scalar">&lt;scalar&gt;</a>+;
25+
<a href="./grid_rows.md">grid-rows</a>: <a href="../../../css_types/scalar">&lt;scalar&gt;</a>+;
2626

27-
<a href="./grid_size.md">grid-size</a>: <a href="../../css_types/integer">&lt;integer&gt;</a> [<a href="../../css_types/integer">&lt;integer&gt;</a>];
27+
<a href="./grid_size.md">grid-size</a>: <a href="../../../css_types/integer">&lt;integer&gt;</a> [<a href="../../../css_types/integer">&lt;integer&gt;</a>];
2828

29-
<a href="./row_span.md">row-span</a>: <a href="../../css_types/integer">&lt;integer&gt;</a>;
29+
<a href="./row_span.md">row-span</a>: <a href="../../../css_types/integer">&lt;integer&gt;</a>;
3030
--8<-- "docs/snippets/syntax_block_end.md"
3131

3232
Visit each style's reference page to learn more about how the values are used.

docs/styles/grid/row_span.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The `row-span` style specifies how many rows a widget will span in a grid layout
99
## Syntax
1010

1111
--8<-- "docs/snippets/syntax_block_start.md"
12-
row-span: <a href="../../css_types/integer">&lt;integer&gt;</a>;
12+
row-span: <a href="../../../css_types/integer">&lt;integer&gt;</a>;
1313
--8<-- "docs/snippets/syntax_block_end.md"
1414

1515
The `row-span` style accepts a single non-negative [`<integer>`](../../css_types/integer.md) that quantifies how many rows the given widget spans.

docs/styles/links/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ There are a number of styles which influence the appearance of these links withi
1919
## Syntax
2020

2121
--8<-- "docs/snippets/syntax_block_start.md"
22-
<a href="./link_background">link-background</a>: <a href="../../css_types/color">&lt;color&gt;</a> [<a href="../../css_types/percentage">&lt;percentage&gt;</a>];
22+
<a href="./link_background">link-background</a>: <a href="../../../css_types/color">&lt;color&gt;</a> [<a href="../../../css_types/percentage">&lt;percentage&gt;</a>];
2323

24-
<a href="./link_color">link-color</a>: <a href="../../css_types/color">&lt;color&gt;</a> [<a href="../../css_types/percentage">&lt;percentage&gt;</a>];
24+
<a href="./link_color">link-color</a>: <a href="../../../css_types/color">&lt;color&gt;</a> [<a href="../../../css_types/percentage">&lt;percentage&gt;</a>];
2525

26-
<a href="./link_style">link-style</a>: <a href="../../css_types/text_style">&lt;text-style&gt;</a>;
26+
<a href="./link_style">link-style</a>: <a href="../../../css_types/text_style">&lt;text-style&gt;</a>;
2727

28-
<a href="./link_background_hover">link-background-hover</a>: <a href="../../css_types/color">&lt;color&gt;</a> [<a href="../../css_types/percentage">&lt;percentage&gt;</a>];
28+
<a href="./link_background_hover">link-background-hover</a>: <a href="../../../css_types/color">&lt;color&gt;</a> [<a href="../../../css_types/percentage">&lt;percentage&gt;</a>];
2929

30-
<a href="./link_color_hover">link-color-hover</a>: <a href="../../css_types/color">&lt;color&gt;</a> [<a href="../../css_types/percentage">&lt;percentage&gt;</a>];
30+
<a href="./link_color_hover">link-color-hover</a>: <a href="../../../css_types/color">&lt;color&gt;</a> [<a href="../../../css_types/percentage">&lt;percentage&gt;</a>];
3131

32-
<a href="./link_style_hover">link-style-hover</a>: <a href="../../css_types/text_style">&lt;text-style&gt;</a>;
32+
<a href="./link_style_hover">link-style-hover</a>: <a href="../../../css_types/text_style">&lt;text-style&gt;</a>;
3333
--8<-- "docs/snippets/syntax_block_end.md"
3434

3535
Visit each style's reference page to learn more about how the values are used.

docs/styles/links/link_background.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The `link-background` style sets the background color of the link.
99
## Syntax
1010

1111
--8<-- "docs/snippets/syntax_block_start.md"
12-
link-background: <a href="../../css_types/color">&lt;color&gt;</a> [<a href="../../css_types/percentage">&lt;percentage&gt;</a>];
12+
link-background: <a href="../../../css_types/color">&lt;color&gt;</a> [<a href="../../../css_types/percentage">&lt;percentage&gt;</a>];
1313
--8<-- "docs/snippets/syntax_block_end.md"
1414

1515
`link-background` accepts a [`<color>`](../../css_types/color.md) (with an optional opacity level defined by a [`<percentage>`](../../css_types/percentage.md)) that is used to define the background color of text enclosed in Textual action links.

docs/styles/links/link_background_hover.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The `link-background-hover` style sets the background color of the link when the
99
## Syntax
1010

1111
--8<-- "docs/snippets/syntax_block_start.md"
12-
link-background-hover: <a href="../../css_types/color">&lt;color&gt;</a> [<a href="../../css_types/percentage">&lt;percentage&gt;</a>];
12+
link-background-hover: <a href="../../../css_types/color">&lt;color&gt;</a> [<a href="../../../css_types/percentage">&lt;percentage&gt;</a>];
1313
--8<-- "docs/snippets/syntax_block_end.md"
1414

1515
`link-background-hover` accepts a [`<color>`](../../css_types/color.md) (with an optional opacity level defined by a [`<percentage>`](../../css_types/percentage.md)) that is used to define the background color of text enclosed in Textual action links when the mouse pointer is over it.

0 commit comments

Comments
 (0)