alfresco-ng2-components/lib/core/clipboard/clipboard.theme.scss
Denys Vuika 81f7e2af33
[ADF-5456] improved theming bundling (#7180)
* theming barrel file for core

* card-view theme

* clipboard theme

* rename core theme files

* content services themes

* process services theme

* process services cloud theme

* insights theming

* try fix flaky test
2021-07-20 15:24:37 +01:00

25 lines
609 B
SCSS

@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;
}
}
}