-
Notifications
You must be signed in to change notification settings - Fork 19
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
1 parent
c6c7a0b
commit c919609
Showing
2 changed files
with
24 additions
and
5 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
force-app/main/default/lwc/indicatorBuilder/indicatorBuilder.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 |
---|---|---|
@@ -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; | ||
} |
11 changes: 6 additions & 5 deletions
11
force-app/main/default/lwc/indicatorBuilder/indicatorBuilder.js-meta.xml
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,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> |