Skip to content

Commit 75d01c8

Browse files
committed
Update Styles
1 parent a9b3f1a commit 75d01c8

File tree

6 files changed

+19
-12
lines changed

6 files changed

+19
-12
lines changed

.github/workflows/pages.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ jobs:
3737
uses: actions/setup-node@v5
3838
with:
3939
node-version: 22
40-
cache: npm
4140

4241
- name: "Configure Pages"
4342
uses: actions/configure-pages@v5

.vitepress/theme/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ import Contributors from '@cssnr/vitepress-plugin-contributors'
1212
import '@cssnr/vitepress-plugin-contributors/style.css'
1313
import contributors from '../contributors.json'
1414

15+
// https://vitepress.dev/guide/extending-default-theme
1516
// noinspection JSUnusedGlobalSymbols
17+
/** @type {import('vitepress').Theme} */
1618
export default {
1719
...DefaultTheme,
1820

.vitepress/vars.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* 2 - 🐳 - Swarm Only
99
* 1 - 📋 - Compose Only
1010
* 0 - ❌ - Only Run, Pull, etc.
11-
* @type {Array<[string, number]>} Repo, Type
11+
* @type {[string, number|undefined][]} Repo, Type
1212
*/
1313
export const repos = [
1414
['cssnr/stack-deploy-action', 3],
@@ -33,6 +33,7 @@ export const repos = [
3333
['humbertocrispim/ssh-docker-compose-action', 1],
3434
['jacobjove/deploy-docker-ssh', 3],
3535
['5eqn/docker-compose-remote-action', 1],
36+
['rouvenschandl/stack-deploy-action-cf-tunnel', 3],
3637
['kamina7/docker-swarm-ssh-deploy-action', 2],
3738
['nightstory/setup-docker-remote'],
3839
['simbamarufu1/docker-swarm-deploy-action'],

docs/docs/inputs.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1+
---
2+
title: Inputs Documentation
3+
pageClass: inputs-page
4+
---
5+
16
# Inputs
27

38
💡 Click on the **Input Name** for more [Details](#details).
49

5-
<div class="table-inputs">
6-
710
| Input&nbsp;Name | Default&nbsp;Value | Short&nbsp;Description |
811
| :------------------------------------------- | :---------------------------------- | :------------------------------------- |
912
| [name](#name) **\*** <CB /> | - | Docker Stack/Project Name |
@@ -26,8 +29,6 @@
2629
| [registry_pass](#registry_pass) <CB /> | - | Registry Authentication Password |
2730
| [summary](#summary) <CB /> | `true` | Add Job Summary |
2831

29-
</div>
30-
3132
> **\* Required**, note [pass](#pass)/[ssh_key](#ssh_key) are mutually exclusive.
3233
> **¹ Compose Only**, view the [Compose Docs](https://docs.docker.com/reference/cli/docker/compose/up/)
3334
> **² Swarm Only**, view the [Swarm Docs](https://docs.docker.com/reference/cli/docker/stack/deploy/)
@@ -228,12 +229,12 @@ For more information see [Job Summary](../guides/features.md#job-summary).
228229
Default: `true`
229230

230231
<style>
231-
.table-inputs td {
232+
.inputs-page td {
232233
padding: 8px 10px !important;
233234
}
234235

235-
.table-inputs td:nth-child(1),
236-
.table-inputs td:nth-child(3) {
236+
.inputs-page td:nth-child(1),
237+
.inputs-page td:nth-child(3) {
237238
white-space: nowrap;
238239
}
239240
</style>

docs/guides/examples.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
pageClass: examples-page
3+
---
4+
15
# Examples
26

37
[[toc]]
@@ -70,10 +74,10 @@ For more examples, you can check out other projects using this action:
7074
https://github.com/cssnr/stack-deploy-action/network/dependents
7175

7276
<style>
73-
summary {
77+
.examples-page summary {
7478
color: var(--vp-c-brand-1);
7579
}
76-
summary:hover {
80+
.examples-page summary:hover {
7781
filter: brightness(115%);
7882
/*color: var(--vp-c-indigo-2);*/
7983
/*text-decoration: underline;*/

docs/guides/resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ None of these actions have been tested. This is an exhaustive list of published
3333
❌ - Only Run, Pull, etc.
3434
:::
3535

36+
<!-- To edit the repos list, update: .vitepress/vars.js -->
3637
<script setup>
3738
// noinspection ES6UnusedImports
3839
import { repos } from '../../.vitepress/vars.js'
3940
</script>
40-
4141
<StackTable :repos="repos" />
4242

4343
If there are any missing [features](../guides/features.md) you need,

0 commit comments

Comments
 (0)