display ? on unknown

This commit is contained in:
Tykayn 2024-12-22 23:39:17 +01:00 committed by tykayn
parent d2154d9120
commit 0d940850b5
7 changed files with 225 additions and 167 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.6 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

View file

@ -346,16 +346,35 @@ button {
padding: 1rem 2rem;
border-radius: 0.25rem;
}
.filter-group button:after{
position: relative;
float:right;
left: 1rem;
top: 1rem;
font-size: 0.9em;
}
.filter-group button.filter-state-hide:after{
content: "cacher";
color: grey;
}
.filter-group button.filter-state-show:after{
content: "montrer";
color: green;
}
.filter-group button.filter-state-showOnly:after{
content: "montrer uniquement";
color: orange;
}
.filter-group button.filter-state-hide{
color: #670a0a;
/*color: #670a0a;*/
background: #fff;
}
.filter-group button.filter-state-show{
color: green;
background: #96b1ea;
/*background: #96b1ea;*/
}
.filter-group button.filter-state-showOnly{
color: orange;
background: #96b1ea;
/*background: #96b1ea;*/
}