Suzana Dirla bfc3f30674 [ADF-4846] Move to ADF the style overrides from ACA (#5016)
* [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
2019-08-27 14:56:01 +02:00

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;
}
}
}