mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* type fixes * import fixes * fix typos * fix warning for private props that init in ctor only * typing fixes * typing fixes * style cleanup * fix test template
27 lines
648 B
SCSS
27 lines
648 B
SCSS
@import '~@angular/material/theming';
|
|
|
|
@mixin adf-clipboard-theme($theme) {
|
|
$primary: map-get($theme, primary);
|
|
$config: mat-typography-config();
|
|
|
|
.adf-copy-tooltip {
|
|
position: absolute;
|
|
background: mat-color($primary);
|
|
color: mat-color($primary, default-contrast) !important;
|
|
font-size: mat-font-size($config, caption);
|
|
padding: 2px 5px;
|
|
border-radius: 5px;
|
|
bottom: 93%;
|
|
left:0;
|
|
z-index: 1001;
|
|
min-height: 20px;
|
|
}
|
|
|
|
.adf-sticky-header {
|
|
.adf-copy-tooltip {
|
|
top:85% !important;
|
|
bottom:0 !important;
|
|
}
|
|
}
|
|
}
|