mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-4466] Fix alignment issues - IE11 (#4772)
* [ADF-4466] Fix alignment issues - IE11 * [ADF-4466] Fix implementation from demo shell specific to generic * [ADF-4466] Remove unused query for IE11
This commit is contained in:
@@ -76,7 +76,8 @@
|
|||||||
key="archivedAt"
|
key="archivedAt"
|
||||||
title="DOCUMENT_LIST.COLUMNS.DELETED_ON">
|
title="DOCUMENT_LIST.COLUMNS.DELETED_ON">
|
||||||
<ng-template let-value="value">
|
<ng-template let-value="value">
|
||||||
<span title="{{ value | date:'medium' }}">{{ value | adfTimeAgo: currentLocale }}</span>
|
<span title="{{ value | date:'medium' }}"
|
||||||
|
class="adf-datatable-cell-value">{{ value | adfTimeAgo: currentLocale }}</span>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</data-column>
|
</data-column>
|
||||||
|
|
||||||
|
@@ -177,6 +177,7 @@
|
|||||||
.adf-datatable-center-actions-column-ie {
|
.adf-datatable-center-actions-column-ie {
|
||||||
padding-top: 7px !important;
|
padding-top: 7px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.adf-datatable-center-date-column-ie {
|
.adf-datatable-center-date-column-ie {
|
||||||
position: relative !important;
|
position: relative !important;
|
||||||
|
|
||||||
@@ -236,6 +237,13 @@
|
|||||||
max-width: $data-table-thumbnail-width;
|
max-width: $data-table-thumbnail-width;
|
||||||
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 {
|
.adf-datatable-cell, .adf-datatable-cell-header {
|
||||||
|
@@ -17,6 +17,13 @@
|
|||||||
width: inherit;
|
width: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* query for Microsoft IE 11*/
|
||||||
|
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
||||||
|
.adf-container-full-width {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.adf-sidenav--hidden {
|
.adf-sidenav--hidden {
|
||||||
visibility: hidden !important;
|
visibility: hidden !important;
|
||||||
width: 0 !important;
|
width: 0 !important;
|
||||||
|
Reference in New Issue
Block a user