Skip to content

Commit

Permalink
More fixes for Gift Entry
Browse files Browse the repository at this point in the history
  • Loading branch information
lparrott committed Jan 7, 2025
1 parent 6e24019 commit ddd59eb
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 12 deletions.
4 changes: 4 additions & 0 deletions force-app/main/default/lwc/geListView/geListView.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,8 @@
.slds-page-header_extension {
background: none;
border-bottom: var(--slds-g-sizing-border-1, 1px) solid var(--slds-g-color-neutral-base-90, var(--lwc-colorBorderSeparatorAlt, rgb(221, 219, 218)));
}

.table-container {
border: var(--slds-g-sizing-border-1, 1px) solid var(--slds-g-color-border-1, var(--lwc-colorBorder, rgb(221, 219, 218)));
}
22 changes: 12 additions & 10 deletions force-app/main/default/lwc/geListView/geListView.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,18 @@ <h1 class="slds-lightning-button-menu_extension slds-p-top_xx-small">
</c-util-stencil>
</template>
<template if:false={isLoading}>
<lightning-datatable key-field="id"
data={recordsToDisplay}
columns={columns}
hide-checkbox-column
onrowaction={handleRowAction}
sorted-by={sortedBy}
sorted-direction={sortedDirection}
onsort={handleColumnSorting}
data-qa-locator={qaLocatorDatatable}>
</lightning-datatable>
<div class="table-container">
<lightning-datatable key-field="id"
data={recordsToDisplay}
columns={columns}
hide-checkbox-column
onrowaction={handleRowAction}
sorted-by={sortedBy}
sorted-direction={sortedDirection}
onsort={handleColumnSorting}
data-qa-locator={qaLocatorDatatable}>
</lightning-datatable>
</div>
</template>

<slot></slot>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,10 @@

.slds-icon_extension svg {
fill: var(--slds-g-color-on-accent-1, #ffffff);
}

.picker-icon {
position: absolute;
top: 3px;
left: -1px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
<lightning-icon alternative-text={CUSTOM_LABELS.geAssistiveActiveSection}
icon-name="utility:check"
variant="inverse"
class="picker-icon"
size="x-small">
</lightning-icon>
</span>
Expand Down
4 changes: 2 additions & 2 deletions force-app/main/default/lwc/geTemplates/geTemplates.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ <h1 slot="title">
<template if:false={isLoading}>
<div class="slds-grid slds-wrap slds-m-bottom_large slds-p-bottom_large">
<div class="slds-size_1-of-1 slds-p-around_medium">
<div class="slds-card slds-card_extension">
<div class="slds-card slds-card_extension slds-card_boundary">
<c-ge-list-view data-id={batchesListViewName}
list-name={batchesListViewName}
object-api-name={dataImportBatchObjectApiName}
Expand Down Expand Up @@ -81,7 +81,7 @@ <h1 slot="title">
<template if:false={isLoading}>
<div class="slds-grid slds-wrap slds-m-bottom_large slds-p-bottom_large">
<div class="slds-size_1-of-1 slds-p-around_medium">
<div class="slds-card slds-card_extension">
<div class="slds-card slds-card_extension slds-card_boundary">
<c-ge-list-view data-id={templatesListViewName}
list-name={templatesListViewName}
object-api-name={formTemplateObjectApiName}
Expand Down

0 comments on commit ddd59eb

Please sign in to comment.