Android build v1.0.44
This commit is contained in:
+227
-13
@@ -2664,10 +2664,15 @@ h2 {
|
||||
|
||||
.crafting-layout {
|
||||
gap: 6px;
|
||||
grid-template-columns: minmax(134px, 0.42fr) minmax(248px, 1fr) minmax(190px, 0.72fr);
|
||||
grid-template-columns: minmax(160px, 1fr) minmax(0, 2fr);
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.crafting-available-panel {
|
||||
gap: 6px;
|
||||
grid-template-columns: minmax(0, 1.25fr) minmax(170px, 0.75fr);
|
||||
}
|
||||
|
||||
.crafting-filters {
|
||||
gap: 7px;
|
||||
}
|
||||
@@ -4154,13 +4159,14 @@ h2 {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
flex: 1;
|
||||
grid-template-columns: minmax(210px, 0.55fr) minmax(360px, 1fr) minmax(320px, 0.85fr);
|
||||
grid-template-columns: minmax(230px, 1fr) minmax(0, 2fr);
|
||||
margin-top: 13px;
|
||||
min-height: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.crafting-filters,
|
||||
.crafting-available-panel,
|
||||
.crafting-list-panel,
|
||||
.crafting-detail-panel {
|
||||
background: var(--panel-light);
|
||||
@@ -4177,10 +4183,20 @@ h2 {
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
.crafting-available-panel {
|
||||
background: transparent;
|
||||
border: 0;
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
grid-template-columns: minmax(360px, 1.05fr) minmax(280px, 0.95fr);
|
||||
outline: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.crafting-filter-grid {
|
||||
display: grid;
|
||||
gap: 7px;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
grid-template-columns: minmax(0, 1fr);
|
||||
}
|
||||
|
||||
.crafting-filter-grid button,
|
||||
@@ -6573,7 +6589,8 @@ h2 {
|
||||
|
||||
.gear-summary,
|
||||
.equipment-layout,
|
||||
.crafting-layout {
|
||||
.crafting-layout,
|
||||
.crafting-available-panel {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
@@ -7244,9 +7261,203 @@ h2 {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.admin-class-layout {
|
||||
display: grid;
|
||||
gap: 14px;
|
||||
grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
|
||||
}
|
||||
|
||||
.admin-class-list {
|
||||
background: #1c1e25;
|
||||
border: 2px solid #090a0d;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
outline: 2px solid #494754;
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.admin-class-list button {
|
||||
align-items: center;
|
||||
background: var(--panel-light);
|
||||
border: 2px solid #090a0d;
|
||||
color: var(--ink);
|
||||
cursor: pointer;
|
||||
display: grid;
|
||||
gap: 9px;
|
||||
grid-template-columns: 38px 1fr;
|
||||
min-height: 54px;
|
||||
outline: 2px solid #41404a;
|
||||
padding: 8px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.admin-class-list button.active,
|
||||
.admin-class-list button:hover {
|
||||
outline-color: var(--class-color, var(--gold));
|
||||
}
|
||||
|
||||
.admin-class-list button > span,
|
||||
.admin-class-hero > span {
|
||||
align-items: center;
|
||||
background: var(--class-color, var(--gold));
|
||||
color: #111217;
|
||||
display: flex;
|
||||
font-family: 'Press Start 2P', monospace;
|
||||
font-size: 13px;
|
||||
height: 38px;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.admin-class-list strong,
|
||||
.admin-class-list small {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.admin-class-list small {
|
||||
color: var(--muted);
|
||||
font-size: 12px;
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
.admin-class-detail {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 14px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.admin-class-hero {
|
||||
align-items: center;
|
||||
background: var(--panel-light);
|
||||
border: 2px solid #090a0d;
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
grid-template-columns: 54px minmax(180px, auto) minmax(0, 1fr);
|
||||
outline: 2px solid #494754;
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.admin-class-hero > span {
|
||||
height: 54px;
|
||||
}
|
||||
|
||||
.admin-class-hero h2 {
|
||||
font-family: 'Press Start 2P', monospace;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.admin-class-hero small,
|
||||
.admin-class-hero p {
|
||||
color: var(--muted);
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.admin-class-table {
|
||||
display: grid;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.admin-class-table-head,
|
||||
.admin-class-row {
|
||||
align-items: center;
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
grid-template-columns: minmax(230px, 1.5fr) minmax(90px, 0.7fr) minmax(110px, 0.6fr) minmax(65px, 0.45fr) minmax(80px, 0.5fr) minmax(70px, 0.45fr);
|
||||
}
|
||||
|
||||
.admin-class-table-head {
|
||||
color: var(--gold);
|
||||
font-family: 'Press Start 2P', monospace;
|
||||
font-size: 7px;
|
||||
padding: 0 10px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.admin-class-row {
|
||||
background: var(--panel-light);
|
||||
border: 2px solid #090a0d;
|
||||
outline: 2px solid #494754;
|
||||
padding: 9px 10px;
|
||||
}
|
||||
|
||||
.admin-class-row > span {
|
||||
color: var(--muted);
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.admin-class-row > span:first-child {
|
||||
align-items: center;
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
grid-template-columns: 30px minmax(0, 1fr);
|
||||
}
|
||||
|
||||
.admin-class-row i {
|
||||
color: var(--gold);
|
||||
font-style: normal;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.admin-class-row strong,
|
||||
.admin-class-row small {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.admin-class-row small {
|
||||
color: var(--muted);
|
||||
font-size: 11px;
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
.admin-class-talent-grid {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
|
||||
}
|
||||
|
||||
.admin-class-talent {
|
||||
background: var(--panel-light);
|
||||
border: 2px solid #090a0d;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 6px;
|
||||
outline: 2px solid #494754;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.admin-class-talent > div {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.admin-class-talent > div > span {
|
||||
color: var(--gold);
|
||||
font-family: 'Press Start 2P', monospace;
|
||||
width: 26px;
|
||||
}
|
||||
|
||||
.admin-class-talent small,
|
||||
.admin-class-talent p {
|
||||
color: var(--muted);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.admin-class-talent em {
|
||||
color: var(--green);
|
||||
font-family: 'Press Start 2P', monospace;
|
||||
font-size: 7px;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@media (max-width: 800px) {
|
||||
.admin-upgrade-toolbar,
|
||||
.admin-upgrade-step {
|
||||
.admin-upgrade-step,
|
||||
.admin-class-layout,
|
||||
.admin-class-hero,
|
||||
.admin-class-table-head,
|
||||
.admin-class-row {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
@@ -7678,15 +7889,18 @@ h2 {
|
||||
|
||||
.workshop-shell .crafting-layout {
|
||||
gap: 6px;
|
||||
grid-template-columns: minmax(0, 1fr);
|
||||
grid-template-rows: auto minmax(0, 1fr);
|
||||
grid-template-columns: minmax(150px, 1fr) minmax(0, 2fr);
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.workshop-shell .crafting-filters {
|
||||
display: grid;
|
||||
.workshop-shell .crafting-available-panel {
|
||||
gap: 6px;
|
||||
grid-template-columns: minmax(0, 1fr);
|
||||
}
|
||||
|
||||
.workshop-shell .crafting-filters {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
grid-template-columns: minmax(0, 1fr) auto;
|
||||
}
|
||||
|
||||
.workshop-shell .crafting-filter-grid,
|
||||
@@ -7695,7 +7909,7 @@ h2 {
|
||||
}
|
||||
|
||||
.workshop-shell .crafting-filter-grid {
|
||||
grid-template-columns: repeat(10, minmax(0, 1fr));
|
||||
grid-template-columns: minmax(0, 1fr);
|
||||
}
|
||||
|
||||
.workshop-shell .crafting-filter-grid button {
|
||||
@@ -7985,7 +8199,7 @@ h2 {
|
||||
}
|
||||
|
||||
.workshop-shell .crafting-layout {
|
||||
grid-template-columns: 110px minmax(0, 1fr) 174px;
|
||||
grid-template-columns: 110px minmax(0, 1fr);
|
||||
}
|
||||
|
||||
.workshop-shell .crafting-filter-grid {
|
||||
@@ -8189,7 +8403,7 @@ h2 {
|
||||
grid-template-columns: minmax(0, 1fr);
|
||||
}
|
||||
|
||||
.workshop-shell .crafting-filters {
|
||||
.workshop-shell .crafting-available-panel {
|
||||
grid-template-columns: minmax(0, 1fr);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user