[ADF-4301] Regression - Fix accesibility issue (#4510)

This commit is contained in:
davidcanonieto 2019-03-28 12:05:08 +00:00 committed by Eugenio Romano
parent f00ee43b60
commit 55a9782960

View File

@ -268,6 +268,7 @@
cursor: pointer; cursor: pointer;
} }
padding-top: 12px; padding-top: 12px;
padding-left: 20px;
display: flex; display: flex;
align-items: center; align-items: center;
} }
@ -316,6 +317,7 @@
.adf-datatable-cell, .adf-datatable-cell-header { .adf-datatable-cell, .adf-datatable-cell-header {
flex: 1; flex: 1;
padding: 0; padding: 0;
padding-left: 10px;
align-items: center; align-items: center;
display: flex; display: flex;
min-height: inherit; min-height: inherit;
@ -332,6 +334,11 @@
text-overflow: ellipsis; text-overflow: ellipsis;
word-break: break-all; word-break: break-all;
} }
&:focus {
outline-offset: -1px;
outline: #448aff solid 1px;
}
} }
.adf-cell-value { .adf-cell-value {