-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #327 from CCDirectLink/autotiles
Added custom json configs and improved autotiles
- Loading branch information
Showing
43 changed files
with
3,329 additions
and
873 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,4 +44,4 @@ yarn-error.log | |
Thumbs.db | ||
|
||
# scripts | ||
*.bat | ||
*.bat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#!/bin/bash | ||
|
||
cd common | ||
npm install | ||
npm ci | ||
npm run build | ||
cd ../backend | ||
npm install | ||
npm ci | ||
cd ../webapp | ||
npm install | ||
npm ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<p class="version caption">{{ version }}</p> | ||
<p class="bottom-elements caption"> | ||
<p class="bottom-container version caption">{{ version }}</p> | ||
<p class="bottom-container bottom-elements"> | ||
<ng-container *ngFor="let el of uiElements"> | ||
<ng-container *ngIf="el.active"> | ||
{{el.text}} | ||
</ng-container> | ||
<span class="caption" *ngIf="el.active"> | ||
{{ el.text }} | ||
</span> | ||
</ng-container> | ||
</p> |
19 changes: 14 additions & 5 deletions
19
webapp/src/app/components/captions/captions.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,31 @@ | ||
@use '@angular/material' as mat; | ||
|
||
.caption { | ||
.bottom-container { | ||
bottom: 0; | ||
padding: 5px; | ||
color: white; | ||
|
||
z-index: 9999; | ||
position: absolute; | ||
pointer-events: none; | ||
//pointer-events: none; | ||
} | ||
|
||
.caption { | ||
padding: 5px; | ||
color: white; | ||
} | ||
|
||
.version { | ||
right: 0; | ||
} | ||
|
||
.bottom-elements { | ||
background-color: #0005; | ||
display: flex; | ||
gap: 8px; | ||
|
||
&:empty { | ||
display: none; | ||
} | ||
|
||
& .caption { | ||
background-color: #0005; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.