Skip to content
Snippets Groups Projects
Commit f6cce42a authored by Thorge Petersen's avatar Thorge Petersen
Browse files

No table display on mobile screens (fixes exceeding title length in resources list)

parent e09222bc
No related branches found
No related tags found
2 merge requests!41Version 2.0.0,!38Merge py3 into dev
...@@ -746,6 +746,7 @@ label.rangesearch.disabled { ...@@ -746,6 +746,7 @@ label.rangesearch.disabled {
/* following makes the secondary span (left side, facets etc.) the same height as the primary span */ /* following makes the secondary span (left side, facets etc.) the same height as the primary span */
/* see: https://scotch.io/bar-talk/different-tricks-on-how-to-make-bootstrap-columns-all-the-same-height */ /* see: https://scotch.io/bar-talk/different-tricks-on-how-to-make-bootstrap-columns-all-the-same-height */
@media (min-width: 768px) {
.is-table-row { .is-table-row {
display: table; display: table;
} }
...@@ -760,6 +761,7 @@ label.rangesearch.disabled { ...@@ -760,6 +761,7 @@ label.rangesearch.disabled {
float: none; float: none;
display: block; display: block;
} }
}
.pill { .pill {
background-color: #F6F7F9; background-color: #F6F7F9;
...@@ -1652,6 +1654,7 @@ body { ...@@ -1652,6 +1654,7 @@ body {
.resource-title { .resource-title {
float: left; float: left;
margin-left: 5px; margin-left: 5px;
margin-bottom: 10px;
text-overflow: ellipsis; text-overflow: ellipsis;
overflow: hidden; overflow: hidden;
/* width: 395px; */ /* width: 395px; */
...@@ -1687,6 +1690,7 @@ body { ...@@ -1687,6 +1690,7 @@ body {
.resource-title-container { .resource-title-container {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
flex-wrap: wrap;
width: 100%; width: 100%;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment