97399 Implemented basic working tooltip on top level community list

This commit is contained in:
Koen Pauwels
2022-12-16 11:41:09 +01:00
parent e4f483c308
commit a40d93a941
10 changed files with 154 additions and 3 deletions

View File

@@ -0,0 +1,25 @@
:host {
position: relative;
}
.ds-context-help-icon {
position: absolute;
top: 0;
}
.ds-context-help-icon-left {
left: var(--ds-context-x-offset);
color: var(--bs-info);
background-color: var(--bs-white);
font-size: (--dscontext-help-icon-size);
line-height: 1;
border-radius: 50%;
}
.ds-context-help-icon-right {
right: var(--ds-context-icon-width);
}
::ng-deep .tooltip-inner {
max-width: 300px;
}