mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[ADF-5095] Update text color of share dialog (#5575)
This commit is contained in:
@@ -1,16 +1,19 @@
|
|||||||
@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);
|
||||||
}
|
}
|
||||||
.adf-float-label {
|
@mixin adf-content-node-share-theme($theme) {
|
||||||
|
$foreground: map-get($theme, foreground);
|
||||||
|
|
||||||
|
.adf-float-label {
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
}
|
}
|
||||||
.adf-share-link-dialog {
|
.adf-share-link-dialog {
|
||||||
|
|
||||||
.adf-share-link {
|
.adf-share-link {
|
||||||
&__dialog-content {
|
&__dialog-content {
|
||||||
@@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -68,4 +71,5 @@
|
|||||||
.mat-form-field-flex {
|
.mat-form-field-flex {
|
||||||
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';
|
||||||
@@ -27,7 +28,8 @@
|
|||||||
@mixin adf-content-services-theme($theme) {
|
@mixin adf-content-services-theme($theme) {
|
||||||
@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);
|
||||||
@@ -37,7 +39,7 @@
|
|||||||
@include adf-search-autocomplete-theme($theme);
|
@include adf-search-autocomplete-theme($theme);
|
||||||
@include adf-search-sorting-picker-theme($theme);
|
@include adf-search-sorting-picker-theme($theme);
|
||||||
@include adf-dialog-theme($theme);
|
@include adf-dialog-theme($theme);
|
||||||
@include adf-content-node-selector-dialog-theme($theme) ;
|
@include adf-content-node-selector-dialog-theme($theme);
|
||||||
@include adf-content-metadata-module-theme($theme);
|
@include adf-content-metadata-module-theme($theme);
|
||||||
@include adf-permission-list-theme($theme);
|
@include adf-permission-list-theme($theme);
|
||||||
@include adf-add-permission-theme($theme);
|
@include adf-add-permission-theme($theme);
|
||||||
|
Reference in New Issue
Block a user