Skip to content

Commit

Permalink
fix(feature): #3109 budget row height & available payment question bu…
Browse files Browse the repository at this point in the history
…tton position (#3113)
  • Loading branch information
togrady01 committed May 6, 2023
1 parent 116f738 commit 69011dc
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 1 deletion.
9 changes: 9 additions & 0 deletions src/extension/features/budget/rows-height/compact.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,22 @@
height: 1.15rem !important;
}

.budget-table-cell-available {
position: relative;
}

.budget-table-cell-available-payment {
font-size: 0px;
position: absolute;
right: -15px;
top: 4px;
}

.budget-table-cell-name [title='Credit Card Payments']::before {
position: relative;
top: -2px;
}

.budget-table-row.is-master-category,
.budget-table-row.is-sub-category,
.budget-table-cell-margin,
Expand Down
9 changes: 9 additions & 0 deletions src/extension/features/budget/rows-height/large.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,22 @@
height: 2rem !important;
}

.budget-table-cell-available {
position: relative;
}

.budget-table-cell-available-payment {
font-size: 0px;
position: absolute;
right: -15px;
top: 9px;
}

.budget-table-cell-name [title='Credit Card Payments']::before {
position: relative;
top: -3px;
}

.budget-table-row.is-master-category,
.budget-table-row.is-sub-category,
.budget-table-cell-margin,
Expand Down
9 changes: 9 additions & 0 deletions src/extension/features/budget/rows-height/medium.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,22 @@
height: 1.75rem !important;
}

.budget-table-cell-available {
position: relative;
}

.budget-table-cell-available-payment {
font-size: 0px;
position: absolute;
right: -15px;
top: 7px;
}

.budget-table-cell-name [title='Credit Card Payments']::before {
position: relative;
top: -3px;
}

.budget-table-row.is-master-category,
.budget-table-row.is-sub-category,
.budget-table-cell-margin,
Expand Down
9 changes: 9 additions & 0 deletions src/extension/features/budget/rows-height/slim-fonts.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,22 @@
height: 1.3rem !important;
}

.budget-table-cell-available {
position: relative;
}

.budget-table-cell-available-payment {
font-size: 0px;
position: absolute;
right: -15px;
top: 5px;
}

.budget-table-cell-name [title='Credit Card Payments']::before {
position: relative;
top: -2px;
}

.budget-table-row.is-master-category,
.budget-table-row.is-sub-category,
.budget-table-cell-margin,
Expand Down
11 changes: 10 additions & 1 deletion src/extension/features/budget/rows-height/slim.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,20 @@
height: 1.5rem !important;
}

.budget-table-cell-available {
position: relative;
}

.budget-table-cell-available-payment {
font-size: 0px;
position: absolute;
right: -15px;
top: 5px;
top: 6px;
}

.budget-table-cell-name [title='Credit Card Payments']::before {
position: relative;
top: -3px;
}

.budget-table-row.is-master-category,
Expand Down

0 comments on commit 69011dc

Please sign in to comment.