Skip to content

Commit

Permalink
Merge pull request #349 from xiv-gear-planner/cosmetic-fixes
Browse files Browse the repository at this point in the history
Cosmetic fixes
  • Loading branch information
xpdota authored Oct 13, 2024
2 parents b8c9825 + f4f9ffc commit bfd2460
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 17 deletions.
46 changes: 30 additions & 16 deletions packages/common-ui/styles/common.less
Original file line number Diff line number Diff line change
Expand Up @@ -3019,6 +3019,11 @@ body.modern {
button, select {
--button-color: var(--bg-color);
}

input {
background: var(--bg-color) !important;
border: none !important;
}
}

gear-set-editor {
Expand Down Expand Up @@ -3321,24 +3326,33 @@ gear-set-issues-modal {
alt-items-modal {
.modal-content-area {
width: min-content;
max-width: 100%;
}
table tr {
td, th {
padding-left: 15px;
padding-right: 15px;
}
*[col-id="icon"] {
height: 25px;
width: 23px;
min-width: 23px;
max-width: 23px;
padding-right: 0;
img {
height: 100%;

table {
width: max-content;

tr {
td, th {
padding-left: 15px;
padding-right: 15px;
}

*[col-id="icon"] {
height: 25px;
width: 23px;
min-width: 23px;
max-width: 23px;
padding-right: 0;

img {
height: 100%;
}
}

*[col-id="itemname"] {
padding-left: 0;
}
}
*[col-id="itemname"] {
padding-left: 0;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/scripts/components/items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ export class AltItemsModal extends BaseModal {

const text = document.createElement('p');
text.textContent = `The item ${baseItem.name} can be replaced by all of the following items, which have equivalent or better effective stats:`;
this.contentArea.appendChild(text);
this.contentArea.appendChild(quickElement('div', ['alt-items-text-holder'], [text]));

const table : CustomTable<GearItem> = new CustomTable<GearItem>();
table.columns = [
Expand Down

0 comments on commit bfd2460

Please sign in to comment.