Skip to content

Commit

Permalink
UI修正。
Browse files Browse the repository at this point in the history
  • Loading branch information
Nanasu committed Jan 31, 2024
1 parent 71a3369 commit 20450df
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="flex-container">
<div class="flex-item no-grow">
<div>
<button style="font-size: smaller; margin-bottom: 3px" (click)="add()">ダイスボット表の追加</button>
<button style="margin: 0px 0px 2px 0px; font-size: smaller" (click)="add()">ダイスボット表の追加</button>
</div>
<select #diceRollTableSelecter style="width: 14em;" size="15" (change)="onChangeDiceRollTable(diceRollTableSelecter.value)">
<option *ngFor="let diceRollTable of diceRollTables" value="{{ diceRollTable.identifier }}" title="{{diceRollTable.name}}" [style.color]="diceRollTable.name == '' ? 'gray' : ''">{{ diceRollTable.name == '' ? '(無名のダイスボット表)' : diceRollTable.name }}</option>
Expand Down
3 changes: 2 additions & 1 deletion src/app/component/game-table/game-table.component.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<img style="visibility: hidden" [src]="backgroundImageUrl | safe: 'resourceUrl'" (load)="isBackgroundImageLoaded = true">
<img style="visibility: hidden; pointer-events: none; position: absolute" [src]="backgroundImageUrl | safe: 'resourceUrl'" (load)="isBackgroundImageLoaded = true">
<img style="visibility: hidden; pointer-events: none; position: absolute" [src]="backgroundImageUrl2 | safe: 'resourceUrl'">
<div class="background-image is-pointer-events-none" [ngClass]="[(backgroundFilterType ? 'is-filter' : ''), (isStealthMode && !isGMMode ? 'is-hide-in' : ''), backgroundFilterType]"
[style.background-image]="backgroundImageCss | safe: 'style'"></div>
<div class="component is-fill is-perspective" [ngClass]="{'is-grabbing': isPointerDragging}" #root>
Expand Down
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<meta name="google" content="notranslate">
<title>Udonarium with Fly 1.9.3a (Powered by Udonarium 1.16.0)</title>
<title>Udonarium with Fly 1.9.3b (Powered by Udonarium 1.16.0)</title>
<base href="./">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="mobile-web-app-capable" content="yes">
Expand Down

0 comments on commit 20450df

Please sign in to comment.