forked from zaclys/searxng
set max-height on infobox's images
This commit is contained in:
parent
c9c39b3e79
commit
001eb047cd
|
@ -299,6 +299,9 @@ input[type=checkbox]:not(:checked) + .label_hide_if_checked + .label_hide_if_not
|
||||||
font-family: "DejaVu Serif", Georgia, Cambria, "Times New Roman", Times, serif !important;
|
font-family: "DejaVu Serif", Georgia, Cambria, "Times New Roman", Times, serif !important;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
.infobox img {
|
||||||
|
max-height: 250px;
|
||||||
|
}
|
||||||
.infobox .btn {
|
.infobox .btn {
|
||||||
background-color: #007ab8;
|
background-color: #007ab8;
|
||||||
border: none;
|
border: none;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -272,6 +272,9 @@ input[type=checkbox]:not(:checked) + .label_hide_if_checked + .label_hide_if_not
|
||||||
font-family: "DejaVu Serif", Georgia, Cambria, "Times New Roman", Times, serif !important;
|
font-family: "DejaVu Serif", Georgia, Cambria, "Times New Roman", Times, serif !important;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
.infobox img {
|
||||||
|
max-height: 250px;
|
||||||
|
}
|
||||||
.infobox .btn {
|
.infobox .btn {
|
||||||
background-color: #007ab8;
|
background-color: #007ab8;
|
||||||
border: none;
|
border: none;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -156,6 +156,9 @@ input[type=checkbox]:not(:checked) + .label_hide_if_checked + .label_hide_if_not
|
||||||
outline: 0 none;
|
outline: 0 none;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
.infobox img {
|
||||||
|
max-height: 250px;
|
||||||
|
}
|
||||||
.infobox .infobox_part {
|
.infobox .infobox_part {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -14,6 +14,10 @@
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
img{
|
||||||
|
max-height: "250px";
|
||||||
|
}
|
||||||
|
|
||||||
.btn{
|
.btn{
|
||||||
background-color: @dark-blue;
|
background-color: @dark-blue;
|
||||||
border: none;
|
border: none;
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
.infobox {
|
.infobox {
|
||||||
|
img{
|
||||||
|
max-height: 250px;
|
||||||
|
}
|
||||||
|
|
||||||
.infobox_part {
|
.infobox_part {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
Loading…
Reference in New Issue