mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
* Add initial implementation with style fixes * Further style fixes * Add tests, styling fixes
14 lines
369 B
SCSS
14 lines
369 B
SCSS
@mixin adf-name-location-cell-theme($theme) {
|
|
$foreground: map-get($theme, foreground);
|
|
|
|
.adf-name-location-cell {
|
|
&-location {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
color: mat-color($foreground, base, 0.5);
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
}
|