Skip to content

Commit

Permalink
change indicator builder
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbysfdev committed Nov 13, 2024
1 parent c6c7a0b commit c919609
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
18 changes: 18 additions & 0 deletions force-app/main/default/lwc/indicatorBuilder/indicatorBuilder.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/* .slds-vertical-tabs, .slds-vertical-tabs * { */
/* overflow: visible; */
/* } */
/* , .slds-vertical-tabs__content, .slds-vertical-tabs__content * { */
.slds-vertical-tabs {
overflow: visible;
}

.deleteVariantButton {
position: absolute;
right: 0.25em;
opacity: 0;
transition: 0.15s ease-in-out;
}

.tabLink:hover .deleteVariantButton {
opacity: 1;
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>56.0</apiVersion>
<description>Indicator Builder</description>
<isExposed>false</isExposed>
<masterLabel>Indicator Builder</masterLabel>
</LightningComponentBundle>
<apiVersion>58.0</apiVersion>
<isExposed>true</isExposed>
<targets>
<target>lightning__Tab</target>
</targets>
</LightningComponentBundle>

0 comments on commit c919609

Please sign in to comment.