[ADF-3614] Fix styling bug in Custom Sources Page (#3845)

This commit is contained in:
davidcanonieto 2018-10-01 19:36:12 +01:00 committed by Eugenio Romano
parent 5307c75492
commit 77a6f1e902
2 changed files with 8 additions and 2 deletions

View File

@ -40,7 +40,7 @@
fill: #00bcd4 !important; fill: #00bcd4 !important;
} }
.adf-lock-button { .adf-data-table-card .adf-lock-button {
top: -10px; top: -10px;
} }

View File

@ -411,7 +411,6 @@
.cell-value { .cell-value {
display: block; display: block;
position: absolute; position: absolute;
top: 25px;
max-width: calc(100% - 2em); max-width: calc(100% - 2em);
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
@ -419,6 +418,13 @@
line-height: 1.12em; line-height: 1.12em;
} }
/* query for Microsoft IE 11*/
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
.cell-value {
top: 100%;
}
}
/* cell stretching content */ /* cell stretching content */
& > div:after { & > div:after {
content: attr(title); content: attr(title);