mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
* [ADF-4846] add $data-table-cell-link-color variable - move style fix needed on ACA to ADF * [ADF-4846] add $adf-permission-list-width variable - moved style fix for adf-permission-lists from ACA to ADF
51 lines
1.0 KiB
SCSS
51 lines
1.0 KiB
SCSS
@mixin adf-permission-list-theme($theme) {
|
|
$adf-permission-list-width: 70% !default;
|
|
|
|
.adf {
|
|
&-permission-label {
|
|
max-width: 130px;
|
|
min-width: 100px;
|
|
margin-left: 50px;
|
|
}
|
|
|
|
&-delete-permission {
|
|
max-width: 50px;
|
|
}
|
|
|
|
&-authorityId-label {
|
|
min-width: 100px;
|
|
}
|
|
|
|
&-key-icon {
|
|
max-width: 50px;
|
|
}
|
|
|
|
&-ellipsis-cell {
|
|
position: sticky;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
&-display-permission-container {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
flex: 1;
|
|
}
|
|
|
|
&-datatable-permission {
|
|
display: flex;
|
|
min-width: 450px;
|
|
width: $adf-permission-list-width;
|
|
}
|
|
|
|
&-locallyset-label {
|
|
padding: 4px;
|
|
}
|
|
|
|
&-inherited-label {
|
|
width: 92.13px;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
}
|