mirror of
https://github.com/umap-project/umap.git
synced 2025-04-28 11:32:38 +02:00
chore: better CSS for tags in maps list
Co-authored-by: David Larlet <david@larlet.fr>
This commit is contained in:
parent
80a969917a
commit
8c90535105
1 changed files with 13 additions and 1 deletions
|
@ -186,13 +186,25 @@ h2.tabs a:hover {
|
|||
.tag-list {
|
||||
margin-top: var(--text-margin);
|
||||
margin-bottom: var(--text-margin);
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: calc(var(--gutter) / 2 );
|
||||
justify-content: center;
|
||||
}
|
||||
.tag-list li {
|
||||
border: 1px solid var(--color-darkCyan);
|
||||
border: 1px solid var(--color-darkBlue);
|
||||
border-radius: 3vmin;
|
||||
display: inline-block;
|
||||
padding: var(--button-padding-small);
|
||||
}
|
||||
.tag-list li a {
|
||||
color: var(--color-darkBlue);
|
||||
max-width: 125px;
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/* **************************** */
|
||||
|
|
Loading…
Reference in a new issue