mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-4403] ClipboardDirective - add default translation key and fix styling (#4610)
* [ADF-4403] ClipboardDirective - add default translation key and fix style on sticky header * [ADF-4403] - lint * [ADF-4403] - revert datatable style * [ADF-4403] - fix unit tests * [ADF-4403] - fix e2e tests
This commit is contained in:
committed by
Maurizio Vitale
parent
fafe80c021
commit
834c32f23f
24
lib/core/clipboard/clipboard.component.scss
Normal file
24
lib/core/clipboard/clipboard.component.scss
Normal file
@@ -0,0 +1,24 @@
|
||||
@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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user