mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-27 05:37:59 +01:00
Whitespace tolerance (#237)
* Use flexbox for centering image blocks * Fix tab display * Make tag list wrappable and HTML whitespace tolerant * Make header navigation HTML whitespace tolerant
This commit is contained in:
parent
ba87c1679e
commit
b1a23292fa
5 changed files with 16 additions and 12 deletions
|
@ -124,6 +124,7 @@ a.block__header--single-item, .block__header a {
|
|||
.block__header--js-tabbed {
|
||||
@extend .block__header--light;
|
||||
background: transparent;
|
||||
display: flex;
|
||||
|
||||
border-bottom: $border;
|
||||
a {
|
||||
|
|
|
@ -23,6 +23,11 @@
|
|||
padding-left: 6px;
|
||||
}
|
||||
|
||||
.header__navigation {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
a.header__link {
|
||||
display: inline-block;
|
||||
padding: 0 $header_spacing;
|
||||
|
|
|
@ -92,12 +92,6 @@ div.image-container {
|
|||
overflow: hidden;
|
||||
/* prevent .media-box__overlay from overflowing the container */
|
||||
text-align: center;
|
||||
a::before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
height: 100%;
|
||||
vertical-align: middle;
|
||||
}
|
||||
img,
|
||||
video {
|
||||
vertical-align: middle;
|
||||
|
@ -105,12 +99,12 @@ div.image-container {
|
|||
max-height: 100%;
|
||||
}
|
||||
/* Make the link cover the whole container if the image is oblong */
|
||||
a {
|
||||
a, picture, video {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -70,7 +70,11 @@
|
|||
.tag > span {
|
||||
padding: 5px;
|
||||
display: table-cell;
|
||||
white-space: pre;
|
||||
}
|
||||
|
||||
.tag-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.tag a {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.hide-mobile
|
||||
.hide-mobile.header__navigation
|
||||
.dropdown.header__dropdown
|
||||
a.header__link href="/images"
|
||||
| Images
|
||||
|
|
Loading…
Reference in a new issue