mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-5095] Update text color of share dialog (#5575)
This commit is contained in:
@@ -1,12 +1,15 @@
|
|||||||
@mixin adf-share-link-typography {
|
@mixin adf-share-link-typography($foreground) {
|
||||||
letter-spacing: -0.4px;
|
letter-spacing: -0.4px;
|
||||||
line-height: 2;
|
line-height: 2;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-stretch: normal;
|
font-stretch: normal;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
opacity: 0.87;
|
color: mat-color($foreground, text, 0.87);
|
||||||
}
|
}
|
||||||
|
@mixin adf-content-node-share-theme($theme) {
|
||||||
|
$foreground: map-get($theme, foreground);
|
||||||
|
|
||||||
.adf-float-label {
|
.adf-float-label {
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
}
|
}
|
||||||
@@ -19,17 +22,17 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__label {
|
&__label {
|
||||||
@include adf-share-link-typography;
|
@include adf-share-link-typography($foreground);
|
||||||
flex: 1 1 auto;
|
flex: 1 1 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__title {
|
&__title {
|
||||||
@include adf-share-link-typography;
|
@include adf-share-link-typography($foreground);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__info {
|
&__info {
|
||||||
@include adf-share-link-typography;
|
@include adf-share-link-typography($foreground);
|
||||||
opacity: 0.54;
|
color: mat-color($foreground, text, 0.54);
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -41,7 +44,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__input {
|
&__input {
|
||||||
opacity: 0.54;
|
color: mat-color($foreground, text, 0.87);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -69,3 +72,4 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
@@ -17,6 +17,7 @@
|
|||||||
@import '../dialogs/folder.dialog';
|
@import '../dialogs/folder.dialog';
|
||||||
|
|
||||||
@import '../content-node-selector/content-node-selector.component';
|
@import '../content-node-selector/content-node-selector.component';
|
||||||
|
@import '../content-node-share/content-node-share.dialog';
|
||||||
@import '../content-metadata/content-metadata.module';
|
@import '../content-metadata/content-metadata.module';
|
||||||
@import '../permission-manager/components/permission-list/permission-list.component';
|
@import '../permission-manager/components/permission-list/permission-list.component';
|
||||||
@import '../permission-manager/components/add-permission/add-permission.component';
|
@import '../permission-manager/components/add-permission/add-permission.component';
|
||||||
@@ -28,6 +29,7 @@
|
|||||||
@include adf-breadcrumb-theme($theme);
|
@include adf-breadcrumb-theme($theme);
|
||||||
@include adf-breadcrumb-dropdown-theme($theme);
|
@include adf-breadcrumb-dropdown-theme($theme);
|
||||||
@include adf-content-node-selector-theme($theme);
|
@include adf-content-node-selector-theme($theme);
|
||||||
|
@include adf-content-node-share-theme($theme);
|
||||||
@include adf-name-location-cell-theme($theme);
|
@include adf-name-location-cell-theme($theme);
|
||||||
@include adf-document-list-theme($theme) ;
|
@include adf-document-list-theme($theme) ;
|
||||||
@include adf-file-uploading-row-theme($theme);
|
@include adf-file-uploading-row-theme($theme);
|
||||||
|
Reference in New Issue
Block a user