[ACA-2140] get the ADF style fixes in the same place

- to be easier to move them to ADF
This commit is contained in:
suzana_dirla 2019-08-20 19:21:51 +03:00
parent a971d8c24b
commit 0c0e13e13e
3 changed files with 17 additions and 18 deletions

View File

@ -6,22 +6,6 @@
height: 400px;
}
// ADF FIXES
adf-permission-list {
.adf-display-permission-container {
flex: 1;
.adf-datatable-permission {
width: 100%;
.adf-datatable-cell--icon, // '--icon' should be replaced with '--image' as in all the other data tables
.adf-datatable-cell--image {
min-width: $data-table-thumbnail-width;
}
}
}
}
.aca-node-permissions-dialog {
.mat-dialog-title {
font-size: 20px;

View File

@ -58,7 +58,7 @@ $foreground: map-get($custom-theme, foreground);
$warn: map-get($custom-theme, warn);
@mixin custom-theme($theme) {
@include adf-document-list-theme-test($theme);
@include adf-style-fixes($theme);
@include layout-theme($theme);
@include aca-search-input-theme($theme);

View File

@ -1,6 +1,6 @@
@import 'mixins';
@mixin adf-document-list-theme-test($theme) {
@mixin adf-style-fixes($theme) {
$background: map-get($theme, background);
$foreground: map-get($theme, foreground);
$primary: map-get($theme, primary);
@ -26,4 +26,19 @@
}
}
}
adf-permission-list {
.adf-display-permission-container {
flex: 1;
.adf-datatable-permission {
width: 100%;
.adf-datatable-cell--icon, // '--icon' should be replaced with '--image' as in all the other data tables
.adf-datatable-cell--image {
min-width: $data-table-thumbnail-width;
}
}
}
}
}