Skip to content

Commit

Permalink
Kondo fixes after further testing
Browse files Browse the repository at this point in the history
  • Loading branch information
lparrott committed Jan 14, 2025
1 parent ddd59eb commit fa3d3d9
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 21 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
.THIS .removeBtn:hover, .THIS .removeBtn:focus, .THIS .removeBtn.is-selected {
background: none;
border: none;
}
3 changes: 2 additions & 1 deletion force-app/main/default/classes/STG_Panel.cls
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ public with sharing virtual class STG_Panel {
*/
public Boolean isDisplayingRD2UpgradePage {
get {
return isDisplayingRD2UpgradePage();
return true;
// return isDisplayingRD2UpgradePage();
} private set;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,11 @@

<header id="modal-heading-01-field-mapping-ui" class="slds-modal__header">

<button class="slds-button slds-button_icon slds-modal__close slds-button_icon-inverse"
<button class="slds-button slds-button_icon slds-modal__close closeIcon"
title={customLabels.bdiBtnClose}>
<lightning-icon
icon-name="utility:close"
alternative-text={customLabels.bdiBtnClose}
variant="inverse"
size="small"
onclick={handleCloseModal}>
</lightning-icon>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,11 @@
</template>

<header class="slds-modal__header">
<button class="slds-button slds-button_icon slds-modal__close slds-button_icon-inverse"
<button class="slds-button slds-button_icon slds-modal__close closeIcon"
title={customLabels.bdiBtnClose}>
<lightning-icon
icon-name="utility:close"
alternative-text={customLabels.bdiBtnClose}
variant="inverse"
size="small"
onclick={handleCloseModal}>
</lightning-icon>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
>
</c-rd2-entry-form-schedule-section>
<div slot='footer'>
<div class='slds-theme_shade slds-p-around_small'>
<div class='slds-p-around_small'>
<lightning-layout horizontal-align="end">
<lightning-layout-item>
<lightning-button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
font-size: var(--slds-g-font-size-base, 13px);
font-weight: bold;
letter-spacing: 0;
line-height: 120px;
line-height: 20px;
min-width: 10rem;
flex: 1 0 0;
}
Expand Down
21 changes: 10 additions & 11 deletions force-app/main/default/lwc/rd2EntryForm/rd2EntryForm.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,16 @@
>
<div class="slds-modal__container">
<header class="slds-modal__header slds-clearfix">
<lightning-button-icon
class="slds-button slds-button_icon slds-modal__close closeIcon"
variant="bare"
size="large"
title={customLabels.closeButtonLabel}
icon-name="utility:close"
icon-class="slds-button_icon-inverse"
onclick={handleCancel}
onkeydown={handleClosedButtonTrapFocus}
data-id="closeButton">
</lightning-button-icon>
<button class="slds-button slds-button_icon slds-modal__close closeIcon">
<lightning-icon
title={customLabels.closeButtonLabel}
icon-name="utility:close"
size="small"
onclick={handleCancel}
onkeydown={handleClosedButtonTrapFocus}
data-id="closeButton">
</lightning-icon>
</button>
<h2
class="slds-text-heading_medium slds-hyphenate header-string slds-p-top_large slds-p-horizontal_medium" id="modal-heading-01">
<template if:false={isExperienceSite}>{headerLabel}</template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,12 @@ <h2>{alertMessage}</h2>
<template if:true={isDismissable}>
<div class="slds-notify__close">
<button
class="slds-button slds-button_icon slds-modal__close slds-button_icon-inverse slds-m-top_medium"
class="slds-button slds-button_icon slds-modal__close slds-m-top_medium"
title="Close"
onclick={hideAlert}
data-qa-locator="button close alert banner">
<lightning-icon icon-name="utility:close"
alternative-text="Close"
variant="inverse"
size="x-small">
</lightning-icon>
<span class="slds-assistive-text">Close</span>
Expand Down

0 comments on commit fa3d3d9

Please sign in to comment.