mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
35 lines
637 B
SCSS
35 lines
637 B
SCSS
@use '~@angular/material' as mat;
|
|
|
|
:host {
|
|
display: block;
|
|
}
|
|
|
|
div.adf-tooltip-card {
|
|
@include mat.elevation(8);
|
|
|
|
background-color: var(--theme-card-bg-color);
|
|
border: 1px solid var(--theme-primary-color);
|
|
padding: 12px;
|
|
border-radius: 6px;
|
|
|
|
p,
|
|
div {
|
|
font-size: var(--theme-caption-font-size);
|
|
color: var(--adf-tooltip-card-color);
|
|
margin: 0;
|
|
}
|
|
|
|
hr {
|
|
border: 1px solid var(--theme-primary-color);
|
|
margin: 6px 0;
|
|
}
|
|
|
|
img {
|
|
border-radius: 6px;
|
|
}
|
|
}
|
|
|
|
::ng-deep .cdk-overlay-connected-position-bounding-box {
|
|
margin-top: 10px !important;
|
|
}
|