Android build v1.1.23

This commit is contained in:
Warren H
2026-07-05 22:48:56 -04:00
parent 956c9e32f9
commit 9708ba9e40
106 changed files with 4294 additions and 458 deletions
+673 -11
View File
@@ -111,6 +111,106 @@
margin: 0;
}
.iwt2-menu-screen {
align-items: center;
background: var(--panel);
border: 3px solid #0c0d11;
box-shadow: 7px 7px 0 #08090c;
display: flex;
flex: 1;
margin-top: 12px;
outline: 2px solid var(--edge);
padding: 28px;
}
.iwt2-menu-screen .iwt2-menu-grid {
display: grid;
gap: 10px;
grid-template-columns: repeat(2, minmax(0, 1fr));
grid-template-rows: repeat(4, minmax(0, 1fr));
height: min(100%, 388px);
margin: 0 auto;
max-width: 900px;
width: 100%;
}
.iwt2-menu-screen .iwt2-menu-card {
align-items: center;
background: var(--panel-light);
border: 2px solid #090a0d;
color: var(--ink);
cursor: pointer;
display: flex;
gap: 12px;
justify-content: flex-start;
min-height: 0;
outline: 2px solid #42414c;
padding: 12px;
text-align: left;
}
.iwt2-menu-screen .iwt2-menu-card > span {
align-items: center;
background: #13141a;
border: 2px solid var(--gold);
color: var(--gold);
display: flex;
flex: 0 0 48px;
font-family: var(--pixel-font);
font-size: 16px;
height: 48px;
justify-content: center;
}
.iwt2-menu-screen .iwt2-menu-card strong {
display: block;
font-family: var(--pixel-font);
font-size: 10px;
margin-bottom: 5px;
}
.iwt2-menu-screen .iwt2-menu-card small {
color: var(--muted);
display: block;
font-size: 14px;
line-height: 1.05;
}
.iwt2-menu-screen .iwt2-menu-card.game-selected > span {
background: var(--gold);
color: #13141a;
}
@media (max-height: 620px) {
.iwt2-menu-screen {
margin-top: 8px;
padding: 14px;
}
.iwt2-menu-screen .iwt2-menu-grid {
gap: 8px;
}
.iwt2-menu-screen .iwt2-menu-card {
min-height: 72px;
padding: 10px;
}
.iwt2-menu-screen .iwt2-menu-card > span {
flex-basis: 44px;
font-size: 14px;
height: 44px;
}
.iwt2-menu-screen .iwt2-menu-card strong {
margin-bottom: 4px;
}
.iwt2-menu-screen .iwt2-menu-card small {
font-size: 15px;
}
}
.iwt2-arena-layout {
height: 100vh;
overflow: hidden;
@@ -259,7 +359,7 @@
cursor: pointer;
display: grid;
gap: 8px;
grid-template-columns: 24px minmax(0, 1fr);
grid-template-columns: 28px minmax(0, 1fr);
height: 86px;
min-height: 86px;
outline: 2px solid transparent;
@@ -269,27 +369,38 @@
}
.iwt2-party-row.has-target-binding {
grid-template-columns: 28px 24px minmax(0, 1fr);
grid-template-columns: 28px 28px minmax(0, 1fr);
}
.iwt2-party-row > span {
.iwt2-party-row > .iwt2-party-portrait {
align-items: center;
border: 2px solid #050608;
color: #fff7df;
display: inline-flex;
font-weight: 900;
height: 24px;
height: 28px;
justify-content: center;
width: 24px;
overflow: hidden;
width: 28px;
}
.iwt2-party-portrait img {
display: block;
height: 100%;
object-fit: contain;
width: 100%;
}
.iwt2-party-row .iwt2-party-target-key {
align-items: center;
background: #050608;
border-color: #0b0d12;
color: var(--muted);
display: inline-flex;
font-family: var(--pixel-font);
font-size: 0.52rem;
height: 24px;
justify-content: center;
min-width: 24px;
padding: 0 2px;
width: auto;
@@ -591,6 +702,55 @@
padding: 0 14px;
}
.iwt2-pvp-queue-overlay {
align-items: center;
background: rgba(5, 5, 8, 0.86);
display: flex;
inset: 0;
justify-content: center;
padding: 16px;
position: fixed;
z-index: 11;
}
.iwt2-pvp-queue-panel {
align-items: center;
background: var(--panel);
border: 3px solid #0b0c0f;
box-shadow: 8px 8px 0 #050507;
display: flex;
flex-direction: column;
gap: 12px;
max-width: 440px;
outline: 2px solid var(--gold);
padding: 28px;
text-align: center;
width: min(100%, 440px);
}
.iwt2-pvp-queue-panel .placeholder-runes {
font-size: 34px;
margin-bottom: 0;
}
.iwt2-pvp-queue-panel h2 {
color: var(--ink);
font-size: 1.8rem;
line-height: 1.1;
margin: 0;
}
.iwt2-pvp-queue-panel small {
color: var(--muted);
font-size: 0.9rem;
line-height: 1.35;
}
.iwt2-pvp-queue-panel .iwt2-result-button {
margin-top: 6px;
min-width: 150px;
}
.iwt2-result-button.is-primary {
background: #263448;
color: #fff4a8;
@@ -658,6 +818,68 @@
font-size: 0.75rem;
}
.iwt2-name-editor {
display: grid;
gap: 14px;
max-width: 640px;
}
.iwt2-name-editor label {
display: grid;
gap: 8px;
}
.iwt2-name-editor label span {
color: var(--muted);
font-size: 0.72rem;
text-transform: uppercase;
}
.iwt2-name-editor input {
background: #10141b;
border: 2px solid #090a0d;
color: var(--ink);
font-family: var(--pixel-font);
font-size: 1rem;
min-height: 48px;
outline: 2px solid #34343d;
padding: 10px 12px;
}
.iwt2-name-editor input:focus {
outline-color: #e5b95f;
}
.iwt2-name-grid {
display: grid;
gap: 8px;
grid-template-columns: repeat(6, minmax(0, 1fr));
}
.iwt2-name-grid button {
background: #10141b;
border: 2px solid #090a0d;
color: var(--ink);
cursor: pointer;
font-family: var(--pixel-font);
font-size: 0.72rem;
min-height: 42px;
outline: 2px solid #34343d;
padding: 8px 6px;
}
.iwt2-name-grid button.selected {
background: #1c2633;
outline-color: #e5b95f;
}
.iwt2-screen-note {
color: var(--muted);
font-size: 0.8rem;
line-height: 1.45;
margin: 0;
}
.iwt2-action-list,
.iwt2-info-list {
display: grid;
@@ -725,6 +947,98 @@
outline-color: #e5b95f;
}
.iwt2-header-title {
color: #f2c96d;
font-size: 1rem;
margin-left: 10px;
margin-right: auto;
white-space: nowrap;
}
.iwt2-header-back {
margin-left: 10px;
min-height: 32px;
padding: 6px 12px;
}
.iwt2-heading-actions {
align-items: center;
display: flex;
gap: 8px;
}
.iwt2-pager-button {
background: #1a1b22;
border: 2px solid #0a0b0f;
color: var(--ink);
cursor: pointer;
font-family: var(--pixel-font);
font-size: 8px;
min-height: 30px;
outline: 2px solid #4d4b59;
padding: 5px 9px;
}
.iwt2-pager-button:disabled {
color: var(--muted);
cursor: not-allowed;
opacity: 0.55;
}
.iwt2-page-counter {
color: var(--muted);
font-family: var(--pixel-font);
font-size: 8px;
white-space: nowrap;
}
.iwt2-difficulty-strip {
display: grid;
gap: 8px;
grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
margin-bottom: 10px;
}
.iwt2-difficulty-strip > button {
background: #151922;
border: 2px solid #08090d;
color: var(--ink);
cursor: pointer;
display: grid;
gap: 3px;
min-height: 44px;
outline: 2px solid #34343d;
padding: 7px 9px;
text-align: left;
}
.iwt2-difficulty-strip > button.active,
.iwt2-difficulty-strip > button.game-selected {
background: #1c2633;
outline-color: #e5b95f;
}
.iwt2-difficulty-strip > button:disabled {
color: var(--muted);
cursor: not-allowed;
opacity: 0.58;
}
.iwt2-difficulty-strip strong,
.iwt2-difficulty-strip small {
display: block;
line-height: 1.1;
}
.iwt2-difficulty-strip strong {
font-size: 0.72rem;
}
.iwt2-difficulty-strip small {
color: var(--muted);
font-size: 0.58rem;
}
.iwt2-dungeon-list {
min-height: 0;
overflow: hidden;
@@ -740,6 +1054,206 @@
padding: 10px 12px;
}
.iwt2-gear-layout {
display: grid;
gap: 14px;
grid-template-columns: 0.8fr 1fr 1.35fr;
min-height: 0;
}
.iwt2-gear-column {
background: #10141b;
border: 2px solid #090a0d;
display: grid;
gap: 10px;
min-height: 0;
outline: 2px solid #34343d;
padding: 12px;
}
.iwt2-gear-screen {
padding-top: 14px;
}
.iwt2-gear-column h2 {
color: #f2c96d;
font-size: 0.82rem;
line-height: 1.1;
margin: 0;
}
.iwt2-gear-class-list,
.iwt2-gear-slot-list,
.iwt2-infusion-list,
.iwt2-gear-cost-list {
display: grid;
gap: 8px;
min-height: 0;
}
.iwt2-gear-class-list,
.iwt2-infusion-list {
overflow-y: auto;
}
.iwt2-gear-class,
.iwt2-gear-slot,
.iwt2-infusion-row,
.iwt2-gear-upgrade-button {
background: #151922;
border: 2px solid #08090d;
color: var(--ink);
cursor: pointer;
font-family: var(--body-font);
outline: 2px solid #34343d;
text-align: left;
}
.iwt2-gear-class {
align-items: center;
display: grid;
gap: 8px;
grid-template-columns: 34px minmax(0, 1fr);
min-height: 54px;
padding: 8px;
}
.iwt2-gear-class > span {
align-items: center;
background: color-mix(in srgb, var(--class-color) 25%, #10141b);
border: 2px solid color-mix(in srgb, var(--class-color) 60%, #090a0d);
display: inline-flex;
height: 32px;
justify-content: center;
width: 32px;
}
.iwt2-gear-class > div,
.iwt2-infusion-row > div {
min-width: 0;
}
.iwt2-gear-class strong,
.iwt2-gear-slot strong,
.iwt2-infusion-row strong,
.iwt2-gear-detail strong {
display: block;
font-size: 0.78rem;
line-height: 1.15;
}
.iwt2-gear-class small,
.iwt2-gear-slot small,
.iwt2-infusion-row small,
.iwt2-gear-detail small {
color: var(--muted);
display: block;
font-size: 0.62rem;
line-height: 1.25;
margin-top: 2px;
}
.iwt2-gear-slot {
align-items: center;
display: grid;
gap: 10px;
grid-template-columns: minmax(0, 1fr) auto;
min-height: 56px;
padding: 9px 10px;
}
.iwt2-gear-slot em {
color: #fff4a8;
font-size: 0.9rem;
font-style: normal;
}
.iwt2-gear-class.active,
.iwt2-gear-slot.active,
.iwt2-infusion-row.active {
background: #1a2330;
}
.iwt2-gear-class.game-selected,
.iwt2-gear-slot.game-selected,
.iwt2-infusion-row.game-selected,
.iwt2-gear-upgrade-button.game-selected {
outline-color: #e5b95f;
}
.iwt2-gear-upgrade-button {
min-height: 44px;
padding: 10px 12px;
text-align: center;
}
.iwt2-gear-upgrade-button:disabled,
.iwt2-infusion-row:disabled {
color: var(--muted);
cursor: default;
opacity: 0.62;
}
.iwt2-gear-detail-panel {
grid-template-rows: auto auto auto minmax(0, 1fr) auto;
}
.iwt2-gear-detail {
background: #151922;
border: 2px solid #08090d;
display: grid;
gap: 10px;
padding: 10px;
}
.iwt2-gear-detail p {
margin: 0;
}
.iwt2-gear-cost-list span {
background: #0d1118;
border: 1px solid #29313d;
color: var(--muted);
font-size: 0.62rem;
line-height: 1.2;
padding: 6px 8px;
}
.iwt2-gear-cost-list span.met {
color: #9ef0bd;
}
.iwt2-gear-cost-list span.missing {
color: #ff9c9c;
}
.iwt2-infusion-row {
align-items: center;
display: grid;
gap: 10px;
grid-template-columns: 34px minmax(0, 1fr);
min-height: 74px;
padding: 8px;
}
.iwt2-infusion-row > span {
align-items: center;
background: #202938;
border: 2px solid #08090d;
color: #f2c96d;
display: inline-flex;
height: 32px;
justify-content: center;
width: 32px;
}
.iwt2-gear-message {
color: #fff4a8;
font-size: 0.68rem;
line-height: 1.3;
min-height: 18px;
}
.iwt2-controller-preview {
align-content: center;
background: #141922;
@@ -768,11 +1282,21 @@
}
.iwt2-bottom-display .dual-control-chip {
align-items: center;
background: var(--panel-light);
border: 2px solid #090a0d;
display: inline-flex;
gap: 6px;
outline: 2px solid #494756;
}
.iwt2-bottom-target-icon {
flex: 0 0 auto;
height: 22px;
object-fit: contain;
width: 22px;
}
@media (max-width: 760px) {
.game-version-grid,
@@ -871,6 +1395,7 @@
.iwt2-shell .character-summary {
gap: 7px;
margin-left: auto;
}
.iwt2-shell .character-summary strong {
@@ -881,6 +1406,16 @@
font-size: 6px;
}
.iwt2-header-title {
font-size: 12px;
margin-left: 6px;
}
.iwt2-header-back {
min-height: 30px;
padding: 5px 9px;
}
.iwt2-menu-screen {
flex: 1;
gap: 10px;
@@ -939,6 +1474,11 @@
padding: 10px 12px;
}
.iwt2-gear-screen {
margin-top: 6px;
padding-top: 6px;
}
.iwt2-screen-shell .screen-heading {
padding-bottom: 8px;
}
@@ -958,6 +1498,39 @@
padding: 5px 9px;
}
.iwt2-heading-actions {
gap: 7px;
}
.iwt2-pager-button {
font-size: 8px;
min-height: 30px;
padding: 5px 9px;
}
.iwt2-page-counter {
font-size: 8px;
}
.iwt2-difficulty-strip {
gap: 6px;
grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
margin-bottom: 7px;
}
.iwt2-difficulty-strip > button {
min-height: 38px;
padding: 6px 8px;
}
.iwt2-difficulty-strip strong {
font-size: 0.62rem;
}
.iwt2-difficulty-strip small {
font-size: 0.52rem;
}
.iwt2-action-list,
.iwt2-info-list {
gap: 7px;
@@ -979,8 +1552,86 @@
}
.iwt2-dungeon-list .iwt2-action-row {
min-height: 58px;
padding: 8px 10px;
}
.iwt2-gear-layout {
gap: 8px;
grid-template-columns: 0.78fr 0.92fr 1.3fr;
min-height: 0;
overflow: hidden;
}
.iwt2-gear-column {
gap: 7px;
overflow: hidden;
padding: 8px;
}
.iwt2-gear-column h2 {
font-size: 0.68rem;
}
.iwt2-gear-class-list,
.iwt2-gear-slot-list,
.iwt2-infusion-list,
.iwt2-gear-cost-list {
gap: 5px;
}
.iwt2-gear-class {
gap: 6px;
grid-template-columns: 28px minmax(0, 1fr);
min-height: 42px;
padding: 6px 9px;
padding: 5px;
}
.iwt2-gear-class > span,
.iwt2-infusion-row > span {
height: 26px;
width: 26px;
}
.iwt2-gear-class strong,
.iwt2-gear-slot strong,
.iwt2-infusion-row strong,
.iwt2-gear-detail strong {
font-size: 0.64rem;
}
.iwt2-gear-class small,
.iwt2-gear-slot small,
.iwt2-infusion-row small,
.iwt2-gear-detail small,
.iwt2-gear-cost-list span {
font-size: 0.52rem;
}
.iwt2-gear-slot {
min-height: 45px;
padding: 6px 8px;
}
.iwt2-gear-upgrade-button {
min-height: 34px;
padding: 7px 9px;
}
.iwt2-gear-detail {
gap: 6px;
padding: 7px;
}
.iwt2-infusion-row {
gap: 7px;
grid-template-columns: 28px minmax(0, 1fr);
min-height: 58px;
padding: 6px;
}
.iwt2-gear-message {
font-size: 0.54rem;
}
.iwt2-action-row strong,
@@ -1060,21 +1711,21 @@
.iwt2-party-row {
gap: 5px;
grid-template-columns: 20px minmax(0, 1fr);
grid-template-columns: 22px minmax(0, 1fr);
height: 62px;
min-height: 62px;
padding: 4px;
}
.iwt2-party-row.has-target-binding {
grid-template-columns: 24px 20px minmax(0, 1fr);
grid-template-columns: 24px 22px minmax(0, 1fr);
}
.iwt2-party-row > span,
.iwt2-party-row > .iwt2-party-portrait,
.iwt2-party-row .iwt2-party-target-key {
height: 20px;
height: 22px;
min-width: 20px;
width: 20px;
width: 22px;
}
.iwt2-party-row .iwt2-party-target-key .controller-face-icon {
@@ -11980,6 +12631,17 @@ h2 {
flex: 1 1 auto;
}
.iwt2-difficulty-strip {
gap: 4px;
grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
margin-bottom: 5px;
}
.iwt2-difficulty-strip > button {
min-height: 34px;
padding: 5px 7px;
}
.iwt2-action-row:not(:has(small)),
.iwt2-info-row:not(:has(small)) {
min-height: 32px;