mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [AAE-6823] Customize font * [AAE-6823] Update css variables names * [AAE-6823] Cleaning * [AAE-6823] Update css variables names * [AAE-6823] Fix lint error
64 lines
1.5 KiB
SCSS
64 lines
1.5 KiB
SCSS
@import '~@angular/material/theming';
|
|
|
|
.adf {
|
|
&-sidebar-action-menu {
|
|
& .mat-raised-button {
|
|
width: 100%;
|
|
display: block;
|
|
box-shadow: none !important;
|
|
height: 37.5px;
|
|
font-weight: bold;
|
|
background-color: var(--theme-primary-color);
|
|
color: var(--theme-primary-color-default-contrast) !important;
|
|
border-radius: 4px;
|
|
|
|
& mat-icon {
|
|
width: 24px;
|
|
height: 25px;
|
|
color: var(--theme-primary-color-default-contrast) !important;
|
|
}
|
|
}
|
|
|
|
&-text {
|
|
width: 100%;
|
|
height: 20px;
|
|
text-align: left;
|
|
}
|
|
}
|
|
|
|
&-sidebar-action-menu-icon {
|
|
margin: 18px 0 0 20px;
|
|
color: var(--theme-text-color);
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
color: var(--theme-primary-color);
|
|
}
|
|
}
|
|
|
|
&-sidebar-action-menu-options {
|
|
text-align: left;
|
|
letter-spacing: -0.4px;
|
|
|
|
.mat-menu-item {
|
|
font-size: var(--theme-body-1-font-size);
|
|
color: var(--theme-text-bold-color);
|
|
text-align: left;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.4px;
|
|
}
|
|
|
|
.mat-menu-item:hover {
|
|
color: var(--theme-primary-color);
|
|
opacity: inherit;
|
|
}
|
|
}
|
|
|
|
&-sidebar-action-menu-panel {
|
|
margin-top: 7.5px;
|
|
border-radius: 2px;
|
|
|
|
@include mat-elevation(2);
|
|
}
|
|
}
|