@pb33f/cowboy-components 0.0.8 → 0.0.9
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/dist/components/changelog/release.css.js +17 -6
- package/dist/components/render-operation-path/render-operation-path.css.js +3 -4
- package/dist/components/render-operation-path/render-operation-path.js +1 -1
- package/dist/cowboy-components.d.ts +1 -0
- package/dist/cowboy-components.js +1 -0
- package/dist/cowboy-components.umd.cjs +96 -63
- package/dist/css/pb33f-theme.css +1 -4
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -7,9 +7,13 @@ export default css `
|
|
|
7
7
|
color: var(--secondary-color);
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
+
sl-details {
|
|
11
|
+
max-width: 780px;
|
|
12
|
+
}
|
|
13
|
+
|
|
10
14
|
sl-details::part(header) {
|
|
11
15
|
padding-top: 15px;
|
|
12
|
-
height:
|
|
16
|
+
height: 15px;
|
|
13
17
|
}
|
|
14
18
|
|
|
15
19
|
sl-details::part(base) {
|
|
@@ -53,14 +57,21 @@ export default css `
|
|
|
53
57
|
text-shadow: 0 0 1rem var(--terminal-text-shadow);
|
|
54
58
|
font-size: 1.2rem;
|
|
55
59
|
}
|
|
56
|
-
|
|
60
|
+
|
|
61
|
+
|
|
57
62
|
html[theme="light"] .latest {
|
|
58
63
|
text-shadow: none;
|
|
59
64
|
}
|
|
65
|
+
|
|
66
|
+
pb33f-kv-view {
|
|
67
|
+
max-width: 500px;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
@media only screen and (max-width: 800px) {
|
|
60
71
|
|
|
61
|
-
|
|
62
|
-
;
|
|
63
|
-
|
|
64
|
-
|
|
72
|
+
sl-details {
|
|
73
|
+
max-width: 350px;
|
|
74
|
+
}
|
|
65
75
|
|
|
76
|
+
}
|
|
66
77
|
`;
|
|
@@ -7,15 +7,14 @@ export default css `
|
|
|
7
7
|
}
|
|
8
8
|
.bracket {
|
|
9
9
|
color: var(--secondary-color);
|
|
10
|
-
font-
|
|
11
|
-
font-family: var(--font-stack), monospace;
|
|
10
|
+
font-family: var(--font-stack-bold), monospace;
|
|
12
11
|
text-shadow: 0 0 10px var(--secondary-color);
|
|
13
12
|
}
|
|
14
13
|
.param {
|
|
15
14
|
color: var(--primary-color);
|
|
16
|
-
font-family: var(--font-stack), monospace;
|
|
15
|
+
font-family: var(--font-stack-bold), monospace;
|
|
17
16
|
text-shadow: 0 0 10px var(--primary-color);
|
|
18
|
-
font-weight:
|
|
17
|
+
font-weight: normal;
|
|
19
18
|
}
|
|
20
19
|
|
|
21
20
|
.param:hover {
|
|
@@ -12,3 +12,4 @@ import './components/mailing-list/mailing-list.js';
|
|
|
12
12
|
import './components/changelog/changelog.js';
|
|
13
13
|
import './components/changelog/release.js';
|
|
14
14
|
import './components/attention-box/attention-box.js';
|
|
15
|
+
import './components/render-operation-path/render-operation-path.js';
|
|
@@ -12,6 +12,7 @@ import './components/mailing-list/mailing-list.js';
|
|
|
12
12
|
import './components/changelog/changelog.js';
|
|
13
13
|
import './components/changelog/release.js';
|
|
14
14
|
import './components/attention-box/attention-box.js';
|
|
15
|
+
import './components/render-operation-path/render-operation-path.js';
|
|
15
16
|
// Set the base path to the folder you copied Shoelace's assets to
|
|
16
17
|
import { setBasePath } from '@shoelace-style/shoelace/dist/utilities/base-path.js';
|
|
17
18
|
setBasePath('/shoelace');
|