2024-10-20 18:26:05 +02:00
|
|
|
.listview-add
|
2024-10-01 21:33:14 +02:00
|
|
|
{
|
2024-10-20 18:26:05 +02:00
|
|
|
/*
|
|
|
|
text-transform: capitalize;
|
|
|
|
*/
|
2024-10-01 21:33:14 +02:00
|
|
|
}
|
|
|
|
|
2024-10-20 18:26:05 +02:00
|
|
|
.listview-add-hidden
|
2024-10-01 21:33:14 +02:00
|
|
|
{
|
2024-10-20 18:26:05 +02:00
|
|
|
display: none;
|
2024-10-01 21:33:14 +02:00
|
|
|
}
|
2024-10-01 22:52:53 +02:00
|
|
|
|
|
|
|
.listview-entries
|
|
|
|
{
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listview-entry
|
|
|
|
{
|
|
|
|
background: hsl(0,0%,25%);
|
|
|
|
padding: 12px;
|
|
|
|
border-radius: 4px;
|
|
|
|
margin: 12px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listview-entry-name
|
|
|
|
{
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.25em;
|
|
|
|
}
|
2024-10-02 18:26:33 +02:00
|
|
|
|
|
|
|
.listview-entry-label
|
|
|
|
{
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listview-entry-label::before
|
|
|
|
{
|
|
|
|
content: "[";
|
|
|
|
}
|
|
|
|
|
|
|
|
.listview-entry-label::after
|
|
|
|
{
|
|
|
|
content: "] ";
|
|
|
|
}
|
|
|
|
|
2024-10-20 17:26:35 +02:00
|
|
|
.listview-entry-field-empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2024-10-02 18:26:33 +02:00
|
|
|
.listview-entry-field:not(:last-child)
|
|
|
|
{
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|