Skip to content

Commit

Permalink
Merge pull request #61 from burobrasil/gm/update-journal-style
Browse files Browse the repository at this point in the history
Atualização de estilo para Journal Entries
  • Loading branch information
jmonteiro authored Jul 19, 2024
2 parents aa5ca81 + bac74be commit 0565270
Show file tree
Hide file tree
Showing 4 changed files with 114 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- pull_request

env:
node_version: 22
node_version: 20

jobs:
lint:
Expand All @@ -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') }}
Expand All @@ -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') }}
Expand All @@ -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') }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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') }}
Expand All @@ -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') }}
Expand Down Expand Up @@ -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') }}
Expand Down
103 changes: 102 additions & 1 deletion src/styles/journal.less
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
padding: 0px;
background-color: transparent;
color: black;
border: none;
.text-3xl;
.font-bold;
}
Expand Down Expand Up @@ -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;
Expand All @@ -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;
Expand All @@ -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;
Expand Down Expand Up @@ -159,6 +194,13 @@
width: 5rem;
}

img.inline-icon {
display: inline;
width: 1rem;
height: 1rem;
vertical-align: middle;
}

.overflow-x-auto {
overflow-x: auto;
}
Expand All @@ -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;

Expand Down Expand Up @@ -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 {
Expand Down Expand Up @@ -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;
Expand Down
4 changes: 4 additions & 0 deletions src/styles/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
font-weight: bold;
}

.font-sanssc {
font-family: 'Alegreya Sans', sans-serif;
}

.hidden {
display: none;
}
Expand Down

0 comments on commit 0565270

Please sign in to comment.