Implemented title wrap extension

This commit is contained in:
Joris Kinable 2019-08-13 16:22:55 +02:00
parent 9c34981d7b
commit 407c747545
6 changed files with 713 additions and 0 deletions

View file

@ -0,0 +1 @@
style.*.css

View file

@ -0,0 +1,23 @@
.horizontal-list {
display: flex;
/* uncomment to allow title to expand onto its own line */
/*flex-wrap: wrap;*/
}
.horizontal-list.bottom {
display: table;
}
.flux .item {
flex-shrink: 0;
line-height: normal;
padding: .3em 0;
}
.flux .item > a {
white-space: normal;
}
.flux:not(.current):hover .item.title {
position: relative;
max-width: inherit;
}
.flux_header .title {
flex: auto;
}