@ansible/ansible-ui-framework 0.0.323 → 0.0.325
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/GettingStarted.md +1 -1
- package/docs/_config.yml +2 -8
- package/docs/assets/css/style.scss +13 -33
- package/package.json +1 -1
package/docs/GettingStarted.md
CHANGED
|
@@ -14,7 +14,7 @@ There is an [Ansible UI Framework Demo](https://github.com/jamestalton/ansible-u
|
|
|
14
14
|
npm install @ansible/ansible-ui-framework
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
## Add the
|
|
17
|
+
## Add the PageFramework to your application
|
|
18
18
|
|
|
19
19
|
Near the top of your application add the [PageFramework](https://github.com/ansible/ansible-ui/blob/main/framework/docs/PageFramework.md) component.
|
|
20
20
|
|
package/docs/_config.yml
CHANGED
|
@@ -1,8 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
# baseurl: /ansible-ui/
|
|
4
|
-
# name: ''
|
|
5
|
-
# title: null
|
|
6
|
-
# remote_theme: pages-themes/midnight
|
|
7
|
-
# plugins:
|
|
8
|
-
# - jekyll-remote-theme # add this line to the plugins list if you already have one
|
|
1
|
+
name: ''
|
|
2
|
+
title: null
|
|
@@ -4,19 +4,16 @@
|
|
|
4
4
|
@import "{{ site.theme }}";
|
|
5
5
|
|
|
6
6
|
body {
|
|
7
|
-
color:
|
|
8
|
-
|
|
9
|
-
background-color: rgb(27,29,33);
|
|
10
|
-
background: unset;
|
|
11
|
-
font-size: medium;
|
|
7
|
+
color: #FFFD;
|
|
8
|
+
background-color: #101216;
|
|
12
9
|
}
|
|
13
10
|
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
.markdown-body h1 {
|
|
12
|
+
border-bottom: 1px solid #FFF2;
|
|
16
13
|
}
|
|
17
14
|
|
|
18
|
-
|
|
19
|
-
|
|
15
|
+
.markdown-body .highlight pre, .markdown-body pre {
|
|
16
|
+
background-color: #08090b;
|
|
20
17
|
}
|
|
21
18
|
|
|
22
19
|
a {
|
|
@@ -26,39 +23,22 @@ a {
|
|
|
26
23
|
a:hover {
|
|
27
24
|
color: #73bcf7;
|
|
28
25
|
}
|
|
29
|
-
|
|
30
|
-
li {
|
|
31
|
-
padding-bottom: 4px;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.wrapper {
|
|
35
|
-
max-width: 1024px;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
section {
|
|
39
|
-
padding: unset;
|
|
40
|
-
margin: 24px;
|
|
41
|
-
max-width: 1024px;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
26
|
h1 {
|
|
45
|
-
|
|
27
|
+
color: white;
|
|
46
28
|
}
|
|
47
29
|
|
|
48
30
|
h2 {
|
|
49
|
-
|
|
50
|
-
padding-bottom: 8px;
|
|
31
|
+
color: white;
|
|
51
32
|
}
|
|
52
33
|
|
|
53
|
-
|
|
54
|
-
|
|
34
|
+
h3 {
|
|
35
|
+
color: white;
|
|
55
36
|
}
|
|
56
37
|
|
|
57
|
-
|
|
58
|
-
|
|
38
|
+
h4 {
|
|
39
|
+
color: white;
|
|
59
40
|
}
|
|
60
41
|
|
|
61
42
|
.err {
|
|
62
|
-
|
|
63
|
-
color: unset;
|
|
43
|
+
color: #800;
|
|
64
44
|
}
|