Skip to content

Commit 8ea375e

Browse files
Fix for list in compose-file, CSS fixes for blockquotes
1 parent dc8ac3c commit 8ea375e

File tree

2 files changed

+21
-11
lines changed

2 files changed

+21
-11
lines changed

compose/compose-file.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ This will result in an image named `webapp` and tagged `tag`, built from `./dir`
7070
> **Note**: In the [version 1 file format](compose-file.md#version-1), `build` is different in
7171
> two ways:
7272
>
73-
> - Only the string form (`build: .`) is allowed - not the object form.
74-
> - Using `build` together with `image` is not allowed. Attempting to do so
73+
> 1. Only the string form (`build: .`) is allowed - not the object form.
74+
> 2. Using `build` together with `image` is not allowed. Attempting to do so
7575
> results in an error.
7676
7777
#### context
@@ -103,13 +103,15 @@ specified.
103103

104104
> **Note**: In the [version 1 file format](compose-file.md#version-1), `dockerfile` is
105105
> different in two ways:
106-
107-
* It appears alongside `build`, not as a sub-option:
108-
109-
build: .
110-
dockerfile: Dockerfile-alternate
111-
112-
* Using `dockerfile` together with `image` is not allowed. Attempting to do so results in an error.
106+
>
107+
> 1. It appears alongside `build`, not as a sub-option:
108+
>
109+
> ```
110+
> build: .
111+
> dockerfile: Dockerfile-alternate
112+
> ```
113+
>
114+
> 2. Using `dockerfile` together with `image` is not allowed. Attempting to do so results in an error.
113115
114116
#### args
115117

css/documentation.css

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,25 @@
1616
font-size: 16px;
1717
border-left: 4px solid #6db9d1;
1818
padding: 6px;
19-
background-color: #f5f5f5;
19+
background-color: #fafafa;
20+
color: black !important;
21+
}
22+
#DocumentationText blockquote li div.highlighter-rouge {
23+
padding-left: 20px;
24+
padding-right: 20px;
2025
}
2126
#DocumentationText blockquote p {
22-
color: black;
27+
color: black !important;
2328
margin: 0;
2429
padding: 10px 20px;
2530
}
2631
#DocumentationText blockquote p strong {
2732
color: #6db9d1;
2833
/* most Note's have a non-strong ':' display: block;*/
2934
}
35+
#DocumentationText blockquote ol, #DocumentationText blockquote ul {
36+
padding-left: 20px !important;
37+
}
3038
#DocumentationText code {
3139
border-width: 0px !important;
3240
background-color: #f5f5f5 !important;

0 commit comments

Comments
 (0)