Denys Vuika e94b2f99bd
[ADF-5406] SCSS and HTML template path fixes (#7063)
* remove useless mixin

* fix scss paths

* style fixes

* fix styles

* style fixes

* style fixes

* style fixes

* style fixes

* insights fixes

* css and template path fixes

* bug fixes
2021-06-01 09:21:00 +01:00

37 lines
883 B
SCSS

@mixin adf-tooltip-card-directive($theme) {
$primary: map-get($theme, primary);
$foreground: map-get($theme, foreground);
$background: map-get($theme, background);
:host {
display: block;
}
div.adf-tooltip-card {
@include mat-elevation(8);
background-color: mat-color($background, card);
border: 1px solid mat-color($primary);
padding: 12px;
border-radius: 6px;
p, div {
font-size: mat-font-size($alfresco-typography, caption);
color: mat-color($foreground, text, 0.75);
margin: 0;
}
hr {
border: 1px solid mat-color($primary);
margin: 6px 0;
}
img {
border-radius: 6px;
}
}
::ng-deep .cdk-overlay-connected-position-bounding-box {
margin-top: 10px !important;
}
}