Skip to content

Commit

Permalink
Merge branch 'develop' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximilian Freiherr von Künßberg committed Dec 21, 2021
2 parents 244fac8 + bac4556 commit abda0a6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@

## fulibWorkflows v0.3.2

## Breaking Changes
- Renamed public BoardGenerator methods. New Methods:
- generateBoardFromFile
- generateBoardFromString
- generateAndReturnHTMLsFromFile
- generateAndReturnHTMLsFromString

## General
- Added JavaDoc to not generated classes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ board(content) ::= <<
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
</head>
<body>
<div class="container-fluid" style="width: max-content">
<div class="container-fluid" style="min-width: 100%; width: max-content">
{content}
</div>
</body>
Expand All @@ -21,7 +21,7 @@ board(content) ::= <<
workflow(name, content) ::= <<

<div class="row">
<div class="card col-md-auto m-2 shadow-lg">
<div class="card col-md-auto m-2 shadow">
<div class="card-body">
<h1 class="card-title">
<i class="bi bi-diagram-3"></i>
Expand All @@ -35,7 +35,7 @@ workflow(name, content) ::= <<

note(name, content, color) ::= <<

<div class="card col-xs m-2 shadow-lg" style="background-color: {color}">
<div class="card col-xs m-2 shadow" style="background-color: {color}">
<div class="card-body">
<h5 class="card-title">{name}</h5>
<p class="card-text">
Expand All @@ -47,7 +47,7 @@ note(name, content, color) ::= <<

actor(color, icon, name) ::= <<

<div class="card col-md-auto m-2 shadow-lg" style="background-color: {color}; max-height: 100px">
<div class="card col-md-auto m-2 shadow" style="background-color: {color}; max-height: 100px">
<div class="card-body">
<h2 class="card-title">
<i class="bi bi-{icon}"></i>
Expand All @@ -59,13 +59,13 @@ actor(color, icon, name) ::= <<

linkedNote(color, name, content, index, description) ::= <<

<div class="card col-xs m-2 shadow-lg" style="background-color: {color}">
<div class="card col-xs m-2 shadow" style="background-color: {color}">
<div class="card-body">
<h5 class="card-title">{name}</h5>
<p class="card-text">
{content}
</p>
<a href="#" class="card-link" onclick="window.parent.setIndexFromIframe({index});">Go to {description}</a>
<a class="card-link" role="button" onclick="window.parent.setIndexFromIframe({index});">Go to {description}</a>
</div>
</div>
>>
Expand Down

0 comments on commit abda0a6

Please sign in to comment.