-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
70 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 3 additions & 9 deletions
12
force-app/main/default/lwc/geReviewDonations/geReviewDonations.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,6 @@ | ||
.slds-box_extension { | ||
padding: 1rem; | ||
} | ||
|
||
.slds-box_extension-2 { | ||
padding: 1rem; | ||
padding-bottom: 0.5rem; | ||
} | ||
|
||
.slds-button_margin-extension { | ||
margin-left: 1.75rem; | ||
} | ||
.slds-button_extension { | ||
border-radius: initial; | ||
} |
66 changes: 33 additions & 33 deletions
66
force-app/main/default/lwc/geReviewDonations/geReviewDonations.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,46 @@ | ||
<template> | ||
<template if:false={giftInViewHasSchedule}> | ||
<template if:true={hasPendingDonations}> | ||
<article class={reviewDonationsComputedClass}> | ||
<lightning-layout vertical-align="center" | ||
multiple-rows="true"> | ||
<lightning-layout-item size="12"> | ||
<span class="slds-text-body_regular" | ||
role="alert"> | ||
<lightning-icon class="slds-m-right_small" | ||
icon-name="utility:info" | ||
size="x-small"> | ||
</lightning-icon> | ||
{reviewDonationsMessage} | ||
<template if:true={showDonorLink}> | ||
<button class="slds-button slds-m-left_xx-small" | ||
onclick={navigateToRecord} | ||
data-qa-locator={qaLocatorSelectedDonation}> | ||
{selectedDonation.Name} | ||
</button> | ||
</template> | ||
</span> | ||
<lightning-layout vertical-align="center" | ||
multiple-rows="true"> | ||
<lightning-layout-item size="12" | ||
class="slds-scoped-notification slds-media slds-media_center slds-theme_info slds-m-bottom_small"> | ||
<div class="slds-media__figure" | ||
role="alert"> | ||
<lightning-icon icon-name="utility:info" | ||
size="x-small"> | ||
</lightning-icon> | ||
</div> | ||
<div class="slds-media__body"> | ||
{reviewDonationsMessage} | ||
<template if:true={showDonorLink}> | ||
<a class="slds-m-left_xx-small" | ||
onclick={navigateToRecord} | ||
data-qa-locator={qaLocatorSelectedDonation}> | ||
{selectedDonation.Name} | ||
</a> | ||
</template> | ||
<template if:false={hasSelectedDonation}> | ||
<span> | ||
<button class="slds-button slds-m-left_xx-small" | ||
<a class="slds-m-left_xx-small" | ||
onclick={openReviewDonationsModal} | ||
data-qa-locator={qaLocatorReviewDonations}> | ||
{CUSTOM_LABELS.geButtonMatchingReviewDonations} | ||
</button> | ||
</a> | ||
</span> | ||
</template> | ||
</lightning-layout-item> | ||
<template if:true={hasSelectedDonation}> | ||
<lightning-layout-item size="12"> | ||
<button class="slds-button slds-button_margin-extension" | ||
onclick={openReviewDonationsModal} | ||
data-qa-locator={qaLocatorDifferentSelection}> | ||
{CUSTOM_LABELS.geButtonMatchingUpdateDonationSelection} | ||
</button> | ||
</lightning-layout-item> | ||
</template> | ||
</lightning-layout> | ||
</article> | ||
<template if:true={hasSelectedDonation}> | ||
<div class="slds-p-top_small"> | ||
<a class="" | ||
onclick={openReviewDonationsModal} | ||
data-qa-locator={qaLocatorDifferentSelection}> | ||
{CUSTOM_LABELS.geButtonMatchingUpdateDonationSelection} | ||
</a> | ||
</div> | ||
</template> | ||
</div> | ||
</lightning-layout-item> | ||
</lightning-layout> | ||
</template> | ||
</template> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
.slds-card_extension_active { | ||
.slds-card.slds-card_boundary.slds-card_extension_active { | ||
border: var(--slds-g-radius-border-1, 2px) solid var(--slds-g-color-brand-base-60, #1589ee); | ||
} | ||
.slds-card.slds-card_boundary { | ||
border-color: var(--slds-g-color-border-1, var(--lwc-colorBorder, rgb(221, 219, 218))); | ||
} | ||
.slds-card__footer { | ||
display: block; | ||
} |