Skip to content

Commit a9a2444

Browse files
author
MatthieuLP
committed
css for tags and album popin content
1 parent 92abb00 commit a9a2444

1 file changed

Lines changed: 37 additions & 0 deletions

File tree

css/hf_base.css

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -916,6 +916,43 @@ li.path-ext-svg a img {
916916
margin: 0 0 20px 0;
917917
}
918918

919+
.tags-found-container,
920+
.albums-found-container {
921+
display: flex;
922+
flex-direction: row;
923+
flex-wrap: wrap;
924+
gap: 5px;
925+
}
926+
.albums-found-container {
927+
flex-direction: column;
928+
align-items: flex-start;
929+
width: 100%;
930+
}
931+
.tags-found-container .tag-item,
932+
.albums-found-container .album-item {
933+
background: #F4AB4F;
934+
color: #525252;
935+
padding: 3px 6px;
936+
border-radius: 5px;
937+
max-width: 150px;
938+
overflow: hidden;
939+
text-overflow: ellipsis;
940+
white-space: nowrap;
941+
cursor: default;
942+
943+
direction: rtl;
944+
text-align: left;
945+
}
946+
.albums-found-container .album-item {
947+
max-width: -moz-available;
948+
max-width: -webkit-fill-available;
949+
max-width: fill-available;
950+
}
951+
.tags-found-container .tag-item a,
952+
.albums-found-container .album-item a {
953+
color: inherit;
954+
}
955+
919956
.filter-manager-popin .filter-manager-controller-container {
920957
display: flex;
921958
flex-direction: row;

0 commit comments

Comments
 (0)