Skip to content
Snippets Groups Projects
Commit 1bbb4c8c authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Fix search results padding when cover images are disabled.

parent 00f714bd
No related merge requests found
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -98,6 +98,8 @@ header .container.navbar { margin-bottom: 0; } ...@@ -98,6 +98,8 @@ header .container.navbar { margin-bottom: 0; }
.media { .media {
flex: 1; flex: 1;
margin: 0; margin: 0;
padding-right: 10px;
padding-left: 10px;
} }
.media-left, .media-left,
.media-right { .media-right {
...@@ -114,13 +116,13 @@ header .container.navbar { margin-bottom: 0; } ...@@ -114,13 +116,13 @@ header .container.navbar { margin-bottom: 0; }
max-width: none; max-width: none;
} }
} }
.media-left { margin-right: 10px; }
.media-right { margin-left: 10px; }
@media (min-width: 768px) { @media (min-width: 768px) {
.media-left, .media-left,
.media-right { .media-right {
max-width: 25%; max-width: 25%;
padding-right: 10px;
padding-left: 10px;
a { a {
display: inline-block; display: inline-block;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -17,9 +17,8 @@ ...@@ -17,9 +17,8 @@
.result { .result {
margin-left: -1rem; margin-left: -1rem;
margin-right: -1rem; margin-right: -1rem;
padding-top: 1rem; padding: 1rem;
padding-left: 1rem; padding-right: 0;
padding-bottom: 1rem;
border-bottom: 1px solid @moon-gray; border-bottom: 1px solid @moon-gray;
font-size: @reduced-font-size; font-size: @reduced-font-size;
...@@ -112,7 +111,6 @@ ...@@ -112,7 +111,6 @@
.grid-result .grid-checkbox label { width: 100%; } .grid-result .grid-checkbox label { width: 100%; }
@media (min-width: 768px) { @media (min-width: 768px) {
.result { padding-right: 1rem; }
.result-body { width: 75%; } .result-body { width: 75%; }
.result-links { .result-links {
width: 25%; width: 25%;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment