mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ACA-3426] Move filter-menu inside search and renamed as search-header * [ACA-3426] adf-search-header removed from document-list and implemented in app-files * [ACA-3426] Allow custom header filters inside document-list * [ACA-3426] Decouple search from the document-list * [ACA-3409] NodePaging ouputed to the DL * [ACA-3426] - fixed injection for service * Dev baptiste aca 3430 (#5773) * [ACA-3430] Add style to filter and hide action buttons from facet widgets * [ACA-3430] Update eventEmitter created in the DL and create unit tests for the search-header Co-authored-by: BaptisteMahe <mahe.baptiste.19@gmail.com> * [ACA-3426] - added parent for service * [ACA-3426] - added parent for service - fixed method * [ACA-3426] Revert update EventEmitter inside DL * [ACA-3436] Use of the node input instead of nodeUpdate mehtod * [ACA-3426] Add clear behaviour to search-header * [ACA-3426] Remove useless update exposition * [ACA-3426] Update filter button styles and padding inside the filter menu * [ACA-3443] Propagate filters states through DL and datatable to avoid hiding the header * [ACA-3426] Refactor showHeader logic and use it for the filters * [ACA-3426] - fixed pagination for filter result * [ACA-3426] - fixed messed files after rebase * [ACA-3426] - added simplified config version * [ACA-3426] - enabling created by filter * [ACA-3426] Fix search-date-range apply method * [ACA-3426] Fix loading style and default showHeaderMode * [ACA-3426] Changed showHedaer default to always * [ACA-3426] - stabilised the feature and added injection token * [ACA-3426] Add unit test for showHeader new behaviour * [ACA-3426] Add documentation to search-header * [ACA-3426] - added parent filtering for special folders * [ACA-3426] - added unit test for search header * [ACA-3426] - fixed search fitler behavour * [ACA-3426] - fixed search result inject service * [ACA-3426] - fixed search result inject service for search sorting * [ACA-3426] - fixed title for matching selector * [ACA-3426] - fixed app config with missing search widget * Update search-header.component.md Co-authored-by: BaptisteMahe <mahe.baptiste.19@gmail.com> Co-authored-by: Eugenio Romano <eromano@users.noreply.github.com>
682 lines
19 KiB
SCSS
682 lines
19 KiB
SCSS
@import '~@angular/material/theming';
|
|
|
|
@mixin adf-datatable-theme($theme) {
|
|
$foreground: map-get($theme, foreground);
|
|
$background: map-get($theme, background);
|
|
$primary: map-get($theme, primary);
|
|
|
|
$data-table-font-size: 14px !default;
|
|
$data-table-header-font-size: 12px !default;
|
|
$data-table-header-sort-icon-size: 16px !default;
|
|
$data-table-header-color: mat-color($foreground, text) !default;
|
|
$data-table-header-sorted-color: mat-color($foreground, text) !default;
|
|
$data-table-header-sorted-icon-hover-color: mat-color($foreground, disabled-text) !default;
|
|
$data-table-cell-text-color: mat-color($foreground, text) !default;
|
|
$data-table-cell-link-color: mat-color($foreground, text) !default;
|
|
$data-table-cell-link-hover-color: mat-color($alfresco-ecm-blue, 500) !default;
|
|
$data-table-outline: 1px solid mat-color($alfresco-ecm-blue, A200) !default;
|
|
$data-table-divider-color: mat-color($foreground, text, 0.07) !default;
|
|
$data-table-hover-color: mat-color($background, 'hover') !default;
|
|
$data-table-selection-color: mat-color($background, 'selected-button') !default;
|
|
$data-table-dividers: 1px solid $data-table-divider-color !default;
|
|
$data-table-dividers-edge-row: $data-table-dividers !default;
|
|
$data-table-dividers-wrapper-border: $data-table-dividers !default;
|
|
$data-table-row-height: 56px !default;
|
|
$data-table-column-spacing: 36px !default;
|
|
$data-table-column-padding: $data-table-column-spacing / 2;
|
|
$data-table-card-padding: 24px !default;
|
|
$data-table-cell-top: $data-table-card-padding / 2;
|
|
$data-table-drag-border: 1px dashed mat-color($alfresco-ecm-blue, A200);
|
|
$data-table-thumbnail-width: 50px !default;
|
|
$data-table-cell-min-width: 50px !default;
|
|
$data-table-cell-min-width--no-grow: 100px !default;
|
|
$data-table-cell-min-width--fileSize: $data-table-cell-min-width !default;
|
|
|
|
.adf-datatable {
|
|
overflow-y: scroll;
|
|
height: 100%;
|
|
}
|
|
|
|
.adf-datatable-card {
|
|
border: 1px solid mat-color($foreground, divider);
|
|
|
|
.adf-datatable-body {
|
|
flex-flow: row wrap;
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
justify-content: space-evenly;
|
|
align-content: flex-start;
|
|
align-items: flex-start;
|
|
|
|
.adf-datatable-row {
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 0 1 24%;
|
|
|
|
width: 288px !important;
|
|
max-width: 288px !important;
|
|
min-width: 288px !important;
|
|
|
|
height: 200px;
|
|
|
|
overflow: hidden !important;
|
|
margin: 6px;
|
|
padding: 15px;
|
|
|
|
@include mat-elevation-transition;
|
|
@include mat-overridable-elevation(2);
|
|
}
|
|
|
|
.adf-datatable-row-empty-card {
|
|
height: 0 !important;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.adf-is-selected {
|
|
background: mat-color($primary, 100);
|
|
padding-bottom: 31px;
|
|
}
|
|
|
|
.adf-datatable-card-permission {
|
|
width: 100%;
|
|
min-height: 250px;
|
|
|
|
.adf-datatable-cell {
|
|
height: 240px !important;
|
|
}
|
|
}
|
|
|
|
.adf-datatable-card-loading {
|
|
width: 100%;
|
|
min-height: 250px;
|
|
|
|
.adf-datatable-cell {
|
|
height: 240px !important;
|
|
}
|
|
}
|
|
|
|
.adf-datatable-card-empty {
|
|
width: 100%;
|
|
min-height: 380px;
|
|
|
|
.adf-datatable-cell {
|
|
height: 370px !important;
|
|
}
|
|
}
|
|
|
|
.adf-datatable-cell--image {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.adf-datatable-cell {
|
|
text-align: left;
|
|
flex: 0 1 24%;
|
|
height: 136px !important;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
outline: none;
|
|
|
|
&::before {
|
|
margin-left: 10px;
|
|
text-align: left;
|
|
content: attr(title);
|
|
color: mat-color($foreground, text, 0.4);
|
|
float: left;
|
|
width: 140px;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.adf-datatable-cell-value {
|
|
display: block;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
|
|
.adf-datatable__actions-cell {
|
|
position: absolute;
|
|
height: 42px !important;
|
|
width: 42px !important;
|
|
right: 0;
|
|
top: 4px;
|
|
}
|
|
|
|
.adf-image-table-cell {
|
|
margin: 8px;
|
|
padding: 4px;
|
|
overflow: visible;
|
|
border-bottom: 1px solid mat-color($foreground, divider);
|
|
|
|
.adf-datatable-cell-container {
|
|
float: left;
|
|
width: 42px;
|
|
}
|
|
|
|
&::after {
|
|
margin: 2px;
|
|
content: attr(filename);
|
|
float: left;
|
|
width: 140px;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
.adf-datatable-checkbox {
|
|
margin: 8px;
|
|
}
|
|
|
|
}
|
|
|
|
.adf-datatable-header {
|
|
margin-right: 18px;
|
|
float: right;
|
|
}
|
|
|
|
}
|
|
|
|
.adf-datatable-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: mat-color($background, card);
|
|
border: $data-table-dividers-wrapper-border;
|
|
box-sizing: border-box;
|
|
|
|
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
.adf-datatable-center-size-column-ie {
|
|
padding-top: 17px;
|
|
}
|
|
|
|
.adf-datatable-center-actions-column-ie {
|
|
padding-top: 7px !important;
|
|
}
|
|
|
|
.adf-datatable-center-date-column-ie {
|
|
position: relative !important;
|
|
|
|
.adf-datatable-cell-value {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.adf-datatable-center-img-ie {
|
|
padding:0;
|
|
min-width: 0;
|
|
width: 24px;
|
|
height: 56px;
|
|
}
|
|
}
|
|
|
|
.adf-datatable-header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.adf-datatable-cell {
|
|
color: $data-table-cell-text-color;
|
|
}
|
|
|
|
.adf-datatable-row {
|
|
&:hover, &:focus {
|
|
background-color: $data-table-hover-color;
|
|
}
|
|
|
|
&:focus {
|
|
outline-offset: -1px;
|
|
outline: $data-table-outline;
|
|
}
|
|
|
|
.adf-cell-value, .adf-datatable-cell-header {
|
|
&:focus {
|
|
outline-offset: -1px;
|
|
outline: $data-table-outline;
|
|
}
|
|
}
|
|
}
|
|
|
|
.adf-datatable-body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: inherit;
|
|
|
|
.adf-datatable-row {
|
|
@include material-animation-default(0.28s);
|
|
transition-property: background-color;
|
|
border-top: $data-table-dividers;
|
|
min-height: $data-table-row-height;
|
|
cursor: pointer;
|
|
|
|
@include adf-no-select;
|
|
|
|
&.adf-is-selected, &.adf-is-selected:hover {
|
|
background-color: $data-table-selection-color;
|
|
}
|
|
|
|
&:last-child {
|
|
border-bottom: $data-table-dividers-edge-row;
|
|
}
|
|
}
|
|
}
|
|
|
|
.adf-datatable-row {
|
|
display: flex;
|
|
align-items: center;
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
|
|
.adf-datatable-checkbox {
|
|
max-width: $data-table-thumbnail-width;
|
|
width: $data-table-thumbnail-width;
|
|
}
|
|
|
|
/* query for Microsoft IE 11*/
|
|
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
.adf-datatable-checkbox {
|
|
padding-top: 15px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.adf-datatable-cell, .adf-datatable-cell-header {
|
|
text-align: left;
|
|
box-sizing: border-box;
|
|
min-width: $data-table-cell-min-width;
|
|
|
|
&--text {
|
|
text-align: left;
|
|
position: relative;
|
|
}
|
|
|
|
&--date {
|
|
text-align: left;
|
|
}
|
|
|
|
&--number {
|
|
text-align: right;
|
|
}
|
|
|
|
&--image,
|
|
&--icon {
|
|
padding-left: 24px;
|
|
padding-right: 24px;
|
|
width: $data-table-thumbnail-width;
|
|
min-width: $data-table-thumbnail-width;
|
|
text-align: left;
|
|
}
|
|
|
|
&--fileSize {
|
|
min-width: $data-table-cell-min-width--fileSize;
|
|
}
|
|
}
|
|
|
|
.adf-datatable-cell-header {
|
|
@include adf-no-select;
|
|
cursor: pointer;
|
|
position: relative;
|
|
vertical-align: bottom;
|
|
text-overflow: ellipsis;
|
|
font-weight: bold;
|
|
line-height: 24px;
|
|
letter-spacing: 0;
|
|
min-height: $data-table-row-height !important;
|
|
font-size: $data-table-header-font-size;
|
|
color: $data-table-header-color;
|
|
padding-bottom: 8px;
|
|
box-sizing: border-box;
|
|
padding-top: 12px !important;
|
|
|
|
&.adf-sortable {
|
|
@include adf-no-select;
|
|
&:hover {
|
|
cursor: pointer;
|
|
}
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
&.adf-datatable__header--sorted-asc,
|
|
&.adf-datatable__header--sorted-desc {
|
|
color: $data-table-header-sorted-color;
|
|
&::before {
|
|
@include typo-icon;
|
|
font-size: $data-table-header-sort-icon-size;
|
|
content: '\e5d8';
|
|
left: 5px;
|
|
right: 5px;
|
|
position: relative;
|
|
vertical-align: sub;
|
|
}
|
|
}
|
|
&.adf-datatable__header--sorted-desc::before {
|
|
content: '\e5db';
|
|
}
|
|
&.adf-datatable-cell--fileSize.adf-datatable__header--sorted-asc::before,
|
|
&.adf-datatable-cell--fileSize.adf-datatable__header--sorted-desc::before {
|
|
left: -3px;
|
|
right: -3px;
|
|
}
|
|
|
|
&.adf-datatable-checkbox {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
.adf-datatable-cell-header.adf-expand-cell-1, .adf-datatable-cell.adf-expand-cell-1 {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.adf-datatable-cell-header.adf-expand-cell-2, .adf-datatable-cell.adf-expand-cell-2 {
|
|
flex-grow: 2;
|
|
}
|
|
|
|
.adf-datatable-cell-header.adf-expand-cell-3, .adf-datatable-cell.adf-expand-cell-3 {
|
|
flex-grow: 3;
|
|
}
|
|
|
|
.adf-datatable-cell-header.adf-expand-cell-4, .adf-datatable-cell.adf-expand-cell-4 {
|
|
flex-grow: 4;
|
|
}
|
|
|
|
.adf-datatable-cell-header.adf-expand-cell-5, .adf-datatable-cell.adf-expand-cell-5 {
|
|
flex-grow: 5;
|
|
}
|
|
|
|
.adf-datatable-cell-header.adf-no-grow-cell, .adf-datatable-cell.adf-no-grow-cell {
|
|
flex-grow: 0;
|
|
min-width: $data-table-cell-min-width--no-grow;
|
|
}
|
|
|
|
.adf-datatable-cell, .adf-datatable-cell-header {
|
|
flex: 1;
|
|
padding: 0;
|
|
align-items: center;
|
|
display: flex;
|
|
min-height: inherit;
|
|
|
|
.adf-datatable-cell-container {
|
|
overflow: hidden;
|
|
min-height: inherit;
|
|
align-items: center;
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
|
|
.adf-datatable-cell-value {
|
|
word-break: break-word;
|
|
padding: 10px;
|
|
display: block;
|
|
|
|
@media screen and (-ms-high-contrast: active),
|
|
screen and (-ms-high-contrast: none) {
|
|
padding: 17px 10px 10px;
|
|
}
|
|
}
|
|
&--fileSize .adf-datatable-cell-value {
|
|
padding: 0 10px 0 0;
|
|
}
|
|
}
|
|
|
|
.adf-cell-value {
|
|
display: flex;
|
|
min-height: inherit;
|
|
align-items: center;
|
|
word-break: break-all;
|
|
width: 100%;
|
|
}
|
|
|
|
.adf-datatable__actions-cell, .adf-datatable-cell--image {
|
|
max-width: $data-table-thumbnail-width;
|
|
display: flex;
|
|
}
|
|
|
|
.adf-datatable-cell--image {
|
|
max-width: $data-table-thumbnail-width;
|
|
}
|
|
|
|
.adf-location-cell {
|
|
a {
|
|
text-decoration: none;
|
|
color: $data-table-cell-link-color;
|
|
|
|
&:hover {
|
|
color: $data-table-cell-link-hover-color;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* [Accessibility] For screen reader only */
|
|
.adf-sr-only {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
padding: 0;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
border: 0;
|
|
}
|
|
|
|
.adf-is-selected {
|
|
background: mat-color($primary, 100);
|
|
}
|
|
|
|
.adf-datatable-link {
|
|
text-decoration: none;
|
|
color: $data-table-cell-link-color;
|
|
|
|
&:hover {
|
|
color: $data-table-cell-link-hover-color;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.adf-dynamic-column .adf-datatable-link:hover {
|
|
text-decoration: none;
|
|
|
|
.adf-datatable-cell-value {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.adf-datatable-cell,
|
|
.adf-datatable-cell-header {
|
|
.adf-datatable-link .adf-datatable-cell-value {
|
|
padding: 0 10px;
|
|
}
|
|
}
|
|
|
|
.adf-ellipsis-cell {
|
|
position: sticky;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
padding: 0 4px;
|
|
|
|
&.adf-datatable-cell-header,
|
|
.adf-datatable-content-cell {
|
|
max-width: calc(100% - 0.1px);
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
|
|
.adf-datatable-cell-value {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
.adf-datatable-content-cell {
|
|
overflow: unset;
|
|
position: absolute;
|
|
}
|
|
|
|
/* query for Microsoft IE 11*/
|
|
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
.adf-cell-value {
|
|
top: 100%;
|
|
}
|
|
}
|
|
|
|
/* cell stretching content */
|
|
& > div::after {
|
|
content: attr(title);
|
|
overflow: hidden;
|
|
height: 0;
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
/* Empty folder */
|
|
.adf-no-content-container {
|
|
padding: 0 !important;
|
|
border: none !important;
|
|
width: 100%;
|
|
|
|
& > img {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
/* Loading folder */
|
|
.adf-loading-content-container {
|
|
padding: 0 !important;
|
|
width: 100%;
|
|
|
|
& > img {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.adf-no-permission {
|
|
&__row:hover {
|
|
cursor: default;
|
|
background-color: inherit;
|
|
}
|
|
|
|
&__cell {
|
|
padding: 0 !important;
|
|
}
|
|
}
|
|
|
|
/* Utils */
|
|
.adf-hidden {
|
|
display: none;
|
|
}
|
|
|
|
/* mobile phone */
|
|
@media all and (max-width: 768px) {
|
|
.adf-desktop-only {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
@media (max-device-width: 768px) {
|
|
.adf-desktop-only {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
/* [Accessibility] Material checkbox labels */
|
|
.adf-checkbox-sr-only .mat-checkbox-label {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
padding: 0;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
border: 0;
|
|
}
|
|
|
|
.adf-sticky-header {
|
|
border-top: 0;
|
|
height: 100%;
|
|
|
|
.adf-datatable-header {
|
|
display: block;
|
|
margin-right: 0;
|
|
border-top: $data-table-dividers;
|
|
border-bottom: $data-table-dividers;
|
|
}
|
|
|
|
.adf-datatable-body {
|
|
display: block;
|
|
flex: 1;
|
|
overflow-y: scroll;
|
|
margin-top: -1px;
|
|
}
|
|
}
|
|
|
|
.adf-upload__dragging {
|
|
& > div {
|
|
border-top: $data-table-drag-border !important;
|
|
border-bottom: $data-table-drag-border !important;
|
|
|
|
&:first-child {
|
|
border-left: $data-table-drag-border;
|
|
}
|
|
|
|
&:last-child {
|
|
border-right: $data-table-drag-border !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.adf-datatable--empty {
|
|
@include flex-column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: inherit;
|
|
|
|
.adf-datatable-body {
|
|
.adf-datatable-row {
|
|
height: 100%;
|
|
background-color: mat-color($background, card);
|
|
border: none !important;
|
|
|
|
&:hover, &:focus {
|
|
background-color: unset;
|
|
cursor: default;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.adf-datatable--empty--header-visible {
|
|
|
|
.adf-datatable-header {
|
|
border: $data-table-dividers-wrapper-border;
|
|
}
|
|
|
|
.adf-datatable-body {
|
|
@include flex-column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
.adf-datatable-row {
|
|
height: 100%;
|
|
background-color: mat-color($background, card);
|
|
border: none !important;
|
|
|
|
&:hover, &:focus {
|
|
background-color: unset;
|
|
cursor: default;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|