diff --git a/force-app/main/default/lwc/geDonationMatchingOpportunityCard/geDonationMatchingOpportunityCard.css b/force-app/main/default/lwc/geDonationMatchingOpportunityCard/geDonationMatchingOpportunityCard.css index 90e148d659e..2c1ebf99492 100644 --- a/force-app/main/default/lwc/geDonationMatchingOpportunityCard/geDonationMatchingOpportunityCard.css +++ b/force-app/main/default/lwc/geDonationMatchingOpportunityCard/geDonationMatchingOpportunityCard.css @@ -40,16 +40,12 @@ width: 100%; padding: 0; margin: 0; - border-radius: none; padding-top: 0.25rem; padding-bottom: 0.25rem; - border: none; - border-radius: var(--slds-g-radius-border-2, 0.25rem); } .slds-border_extension-bottom { border-bottom: var(--slds-g-sizing-border-1, 1px) solid var(--slds-g-color-border-1, var(--lwc-colorBorder, rgb(221, 219, 218))); - border-radius: none; } .slds-button:disabled { diff --git a/force-app/main/default/lwc/geDonationMatchingPaymentCard/geDonationMatchingPaymentCard.css b/force-app/main/default/lwc/geDonationMatchingPaymentCard/geDonationMatchingPaymentCard.css index 5065384b2e9..2f71190b677 100644 --- a/force-app/main/default/lwc/geDonationMatchingPaymentCard/geDonationMatchingPaymentCard.css +++ b/force-app/main/default/lwc/geDonationMatchingPaymentCard/geDonationMatchingPaymentCard.css @@ -40,7 +40,6 @@ width: 100%; padding: 0; margin: 0; - border-radius: none; padding-top: 0.25rem; padding-bottom: 0.25rem; border: none; @@ -49,5 +48,4 @@ .slds-border_extension-bottom { border-bottom: var(--slds-g-sizing-border-1, 1px) solid var(--slds-g-color-border-1, var(--lwc-colorBorder, rgb(221, 219, 218))); - border-radius: none; } \ No newline at end of file diff --git a/force-app/main/default/lwc/geListView/geListView.css b/force-app/main/default/lwc/geListView/geListView.css index 6a6037184c3..bf1eb5f8902 100644 --- a/force-app/main/default/lwc/geListView/geListView.css +++ b/force-app/main/default/lwc/geListView/geListView.css @@ -6,8 +6,6 @@ } .slds-page-header_extension { - background: var(--slds-g-color-surface-container-1, var(--lwc-colorBackgroundAlt, rgb(255, 255, 255))); + 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))); - border-bottom-left-radius: none; - border-bottom-right-radius: none; } \ No newline at end of file diff --git a/force-app/main/default/lwc/geListView/geListView.js b/force-app/main/default/lwc/geListView/geListView.js index 9503a6086ad..0128c509dd4 100755 --- a/force-app/main/default/lwc/geListView/geListView.js +++ b/force-app/main/default/lwc/geListView/geListView.js @@ -286,6 +286,15 @@ export default class geListView extends LightningElement { }); this.isLoading = false; + + console.log('Test 1'); + let style = document.createElement('style'); + style.innerText = '.slds-table_header-fixed_container{border: 1px solid red;}'; + let dt = this.template.querySelector('lightning-datatable'); + if(dt) { + dt.appendChild(style); + } + console.log('Test 2'); } /******************************************************************************* diff --git a/force-app/main/default/lwc/geModalPrompt/geModalPrompt.css b/force-app/main/default/lwc/geModalPrompt/geModalPrompt.css index b4b11223b6e..1164a841092 100644 --- a/force-app/main/default/lwc/geModalPrompt/geModalPrompt.css +++ b/force-app/main/default/lwc/geModalPrompt/geModalPrompt.css @@ -1,4 +1,3 @@ .slds-box_extension { border: none; - border-radius: none; } \ No newline at end of file diff --git a/force-app/main/default/lwc/geModalRecurringDonation/geModalRecurringDonation.css b/force-app/main/default/lwc/geModalRecurringDonation/geModalRecurringDonation.css index b4b11223b6e..1164a841092 100644 --- a/force-app/main/default/lwc/geModalRecurringDonation/geModalRecurringDonation.css +++ b/force-app/main/default/lwc/geModalRecurringDonation/geModalRecurringDonation.css @@ -1,4 +1,3 @@ .slds-box_extension { border: none; - border-radius: none; } \ No newline at end of file diff --git a/force-app/main/default/lwc/geTemplateBuilderFormField/geTemplateBuilderFormField.css b/force-app/main/default/lwc/geTemplateBuilderFormField/geTemplateBuilderFormField.css index 2624df6ff29..1d28d620cde 100644 --- a/force-app/main/default/lwc/geTemplateBuilderFormField/geTemplateBuilderFormField.css +++ b/force-app/main/default/lwc/geTemplateBuilderFormField/geTemplateBuilderFormField.css @@ -1,12 +1,11 @@ -.slds-card_extension { - box-shadow: none var(--slds-g-sizing-border-2, 2px) var(--slds-g-sizing-border-2, 2px) none var(--slds-g-color-neutral-base-90, #ddd); - border: var(--slds-g-sizing-border-1, 1px) solid var(--slds-g-color-neutral-base-90, rgb(221, 219, 218)); -} - .slds-card_extension-widget { background-color: var(--slds-g-color-surface-3, #ECEBEA); } .vertical-align-center { margin: auto 0; +} + +.input-padding { + padding: 0 4px 4px 4px; } \ No newline at end of file diff --git a/force-app/main/default/lwc/geTemplateBuilderFormField/geTemplateBuilderFormField.html b/force-app/main/default/lwc/geTemplateBuilderFormField/geTemplateBuilderFormField.html index a61b2c1d872..e95320fe238 100644 --- a/force-app/main/default/lwc/geTemplateBuilderFormField/geTemplateBuilderFormField.html +++ b/force-app/main/default/lwc/geTemplateBuilderFormField/geTemplateBuilderFormField.html @@ -4,7 +4,7 @@