blob: 1427faca43268e18934aecec52da30c5d7511b96 (
plain) (
tree)
|
|
@use '_variables' as *;
@use '_mixins' as *;
.help-tooltip-button {
@include disable-outline;
cursor: pointer;
border: 0;
margin: 5px;
my-global-icon {
@include apply-svg-color(pvar(--greyForegroundColor));
width: 17px;
position: relative;
top: -1px;
}
}
::ng-deep {
.help-popover {
z-index: z(help-popover) !important;
max-width: 300px;
.popover-body {
font-family: $main-fonts;
text-align: start;
padding: 10px;
font-size: 13px;
background-color: pvar(--mainBackgroundColor);
color: pvar(--mainForegroundColor);
border-radius: 3px;
p {
margin-bottom: 0;
}
ul {
@include padding-left(20px);
margin-bottom: 0;
}
}
}
}
|