AAE-11714 changed max-width for cropped image (#8054)

This commit is contained in:
tomasz hanaj 2022-12-16 17:50:21 +01:00 committed by GitHub
parent 02578dcdc5
commit d5592b9e01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
/* stylelint-disable no-descending-specificity */
$content-node-selector-thumbnail-width: 35px !default;
$content-node-selector-thumbnail-max-width: 40px !default;
h2.adf-search-results-label {
flex: 1;
@ -128,7 +129,7 @@ h2.adf-search-results-label {
&--image {
min-width: $content-node-selector-thumbnail-width;
width: $content-node-selector-thumbnail-width;
max-width: $content-node-selector-thumbnail-width;
max-width: $content-node-selector-thumbnail-max-width;
}
&:nth-child(2) {
@ -152,7 +153,8 @@ h2.adf-search-results-label {
.adf-datatable-body .adf-datatable-row {
min-height: 40px;
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
@media screen and (-ms-high-contrast: active),
screen and (-ms-high-contrast: none) {
padding-top: 15px;
}