mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
* [ADF-4122] Add sticky header config to datatable and refactor styles * [ADF-4122] Fix core unit tests * [ADF-4122] Commit requested changes * [ADF-4122] Fix e2e tests * Update docs/core/datatable.component.md Co-Authored-By: davidcanonieto <david.cano@alfresco.com>
24 lines
493 B
SCSS
24 lines
493 B
SCSS
router-outlet[name='overlay'] + * {
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 999;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
}
|
|
|
|
@media (max-width: 425px) {
|
|
adf-content-node-selector {
|
|
.adf-content-node-selector-content-list {
|
|
.adf-datatable-cell {
|
|
display: none;
|
|
}
|
|
|
|
.adf-datatable-cell:first-child,
|
|
.adf-datatable-cell:nth-child(2) {
|
|
display: table-cell;
|
|
}
|
|
}
|
|
}
|
|
}
|