mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-06-23 18:05:09 +00:00
51 lines
909 B
SCSS
51 lines
909 B
SCSS
.empty-list {
|
|
.adf-data-table {
|
|
height: 100%;
|
|
|
|
tr:hover, tr:focus {
|
|
cursor: default;
|
|
}
|
|
}
|
|
|
|
&__block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
p {
|
|
line-height: 0;
|
|
}
|
|
}
|
|
|
|
&__title {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
&__subtitle {
|
|
font-size: 14px;
|
|
font-weight: 300;
|
|
}
|
|
|
|
&__block > mat-icon {
|
|
font-size: 52px;
|
|
height: 52px;
|
|
width: 52px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 425px) {
|
|
adf-content-node-selector {
|
|
.adf-content-node-selector-content-list {
|
|
.adf-data-table-cell {
|
|
display: none;
|
|
}
|
|
|
|
.adf-data-table-cell:first-child,
|
|
.adf-data-table-cell:nth-child(2) {
|
|
display: table-cell;
|
|
}
|
|
}
|
|
}
|
|
}
|