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,71 +1,75 @@
|
|||||||
@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) {
|
||||||
padding-top: 20px;
|
$foreground: map-get($theme, foreground);
|
||||||
}
|
|
||||||
.adf-share-link-dialog {
|
|
||||||
|
|
||||||
.adf-share-link {
|
.adf-float-label {
|
||||||
&__dialog-content {
|
padding-top: 20px;
|
||||||
display: flex;
|
}
|
||||||
flex-direction: column;
|
.adf-share-link-dialog {
|
||||||
|
|
||||||
|
.adf-share-link {
|
||||||
|
&__dialog-content {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__label {
|
||||||
|
@include adf-share-link-typography($foreground);
|
||||||
|
flex: 1 1 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__title {
|
||||||
|
@include adf-share-link-typography($foreground);
|
||||||
|
}
|
||||||
|
|
||||||
|
&__info {
|
||||||
|
@include adf-share-link-typography($foreground);
|
||||||
|
color: mat-color($foreground, text, 0.54);
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&--row {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__input {
|
||||||
|
color: mat-color($foreground, text, 0.87);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__label {
|
.adf-input-action {
|
||||||
@include adf-share-link-typography;
|
cursor: pointer;
|
||||||
flex: 1 1 auto;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&__title {
|
.adf-full-width {
|
||||||
@include adf-share-link-typography;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__info {
|
.mat-form-field-infix {
|
||||||
@include adf-share-link-typography;
|
border-top: unset;
|
||||||
opacity: 0.54;
|
|
||||||
font-size: 13px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&--row {
|
.mat-dialog-actions {
|
||||||
display: flex;
|
justify-content: flex-end;
|
||||||
flex-direction: row;
|
|
||||||
flex-wrap: wrap;
|
& > button {
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.mat-form-field-flex {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__input {
|
|
||||||
opacity: 0.54;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.adf-input-action {
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.adf-full-width {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mat-form-field-infix {
|
|
||||||
border-top: unset;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mat-dialog-actions {
|
|
||||||
justify-content: flex-end;
|
|
||||||
|
|
||||||
& > button {
|
|
||||||
text-transform: uppercase;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.mat-form-field-flex {
|
|
||||||
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