From d93cdc12a8cb81cbccda22c6ab8877539d3fd42d Mon Sep 17 00:00:00 2001 From: Guilherme Mir Date: Thu, 18 Jul 2024 15:15:22 -0300 Subject: [PATCH 1/3] update journal style --- src/styles/journal.less | 103 +++++++++++++++++++++++++++++++++++++- src/styles/variables.less | 4 ++ 2 files changed, 106 insertions(+), 1 deletion(-) diff --git a/src/styles/journal.less b/src/styles/journal.less index d790918..7a387fc 100644 --- a/src/styles/journal.less +++ b/src/styles/journal.less @@ -10,6 +10,7 @@ padding: 0px; background-color: transparent; color: black; + border: none; .text-3xl; .font-bold; } @@ -43,6 +44,14 @@ .font-bold; } + h3 img[title='Estágio 1: Iniciante (estatísticas para 1º e 2º Níveis)'], + h3 img[title='Estágio 2: Heroico (estatísticas para 3º a 5º Níveis)'], + h3 img[title='Estágio 3: Avançado (estatísticas para 6º a 9º Níveis)'] { + display: inline; + width: 1rem; + height: 1rem; + } + h4 { margin: 0px; margin-top: 1rem; @@ -68,6 +77,19 @@ margin-bottom: 0.5rem; } + p img[title='Estágio 1: Iniciante (estatísticas para 1º e 2º Níveis)'], + p img[title='Estágio 2: Heroico (estatísticas para 3º a 5º Níveis)'], + p img[title='Estágio 3: Avançado (estatísticas para 6º a 9º Níveis)'] { + display: inline-block; + width: 1rem; + height: 1rem; + vertical-align: middle; + } + + p.inline { + display: inline; + } + a { color: @carmesim-600; text-decoration: underline; @@ -88,6 +110,19 @@ } } + .legend { + display: inline-flex; + justify-content: center; + align-items: center; + width: 1.25rem; + height: 1.25rem; + background-color: black; + color: white; + .text-sm; + .font-bold; + .font-sanssc; + } + ul { margin: 0px; margin-bottom: 0.75rem; @@ -159,6 +194,13 @@ width: 5rem; } + img.inline-icon { + display: inline; + width: 1rem; + height: 1rem; + vertical-align: middle; + } + .overflow-x-auto { overflow-x: auto; } @@ -168,7 +210,8 @@ margin-bottom: 1rem; margin-left: auto; margin-right: auto; - max-width: 400px; + min-width: 400px; + max-width: fit-content; border-top: none; background-color: transparent; @@ -203,6 +246,13 @@ padding-top: 0.25rem; padding-bottom: 0.25rem; } + + tr th img[title='Estágio 1: Iniciante (estatísticas para 1º e 2º Níveis)'], + tr th img[title='Estágio 2: Heroico (estatísticas para 3º a 5º Níveis)'], + tr th img[title='Estágio 3: Avançado (estatísticas para 6º a 9º Níveis)'] { + width: 1rem; + height: 1rem; + } } tbody { @@ -230,6 +280,57 @@ background-color: transparent; } + table.encounters { + margin-top: 1rem; + margin-bottom: 1rem; + margin-left: auto; + margin-right: auto; + min-width: fit-content; + max-width: fit-content; + + thead { + border-bottom-width: 1px; + border-color: black; + } + + thead tr th.inline-block { + display: inline-block; + } + + thead tr th.inline { + display: inline; + } + + thead tr th:first-child { + background-color: black; + color: white; + } + + thead tr th:last-child { + text-align: left; + } + + tbody { + border-bottom-width: 1px; + border-color: black; + } + + tbody tr td:first-child { + background-color: @cinza-300; + } + + tbody tr td img[title='Estágio 1: Iniciante (estatísticas para 1º e 2º Níveis)'], + tbody tr td img[title='Estágio 2: Heroico (estatísticas para 3º a 5º Níveis)'], + tbody tr td img[title='Estágio 3: Avançado (estatísticas para 6º a 9º Níveis)'] { + width: 1rem; + height: 1rem; + } + + tbody tr:nth-child(odd) { + background-color: transparent; + } + } + blockquote { margin: 0px; padding: 0px; diff --git a/src/styles/variables.less b/src/styles/variables.less index a2c4fb2..4b3faa4 100644 --- a/src/styles/variables.less +++ b/src/styles/variables.less @@ -18,6 +18,10 @@ font-weight: bold; } +.font-sanssc { + font-family: 'Alegreya Sans', sans-serif; +} + .hidden { display: none; } From f04211116b901dca6c64993bf7ee22b060cd9d43 Mon Sep 17 00:00:00 2001 From: Julio Monteiro Date: Thu, 18 Jul 2024 21:00:51 -0300 Subject: [PATCH 2/3] Atualiza o actions/cache para funcionar com ultima versao do Node --- .github/workflows/checks.yml | 6 +++--- .github/workflows/release.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 9013b0b..400e701 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -20,7 +20,7 @@ jobs: node-version: ${{ env.node_version }} - name: Cache Node.js modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .npm key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} @@ -46,7 +46,7 @@ jobs: node-version: ${{ env.node_version }} - name: Cache Node.js modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .npm key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} @@ -72,7 +72,7 @@ jobs: node-version: ${{ env.node_version }} - name: Cache Node.js modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .npm key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 94948fe..0701c84 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: node-version: ${{ env.node_version }} - name: Cache Node.js modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .npm key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} @@ -50,7 +50,7 @@ jobs: node-version: ${{ env.node_version }} - name: Cache Node.js modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .npm key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} @@ -79,7 +79,7 @@ jobs: node-version: ${{ env.node_version }} - name: Cache Node.js modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .npm key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} From bac74bea3c1607ec68b9ba2d5da8d15e9423d951 Mon Sep 17 00:00:00 2001 From: Julio Monteiro Date: Thu, 18 Jul 2024 21:07:20 -0300 Subject: [PATCH 3/3] Build com node v20 --- .github/workflows/checks.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 400e701..6d35018 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -5,7 +5,7 @@ on: - pull_request env: - node_version: 22 + node_version: 20 jobs: lint: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0701c84..36b7898 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ on: env: package_type: system - node_version: 22 + node_version: 20 fvtt_minimum: 11 fvtt_verified: 12 fvtt_dry_run: false