Fixed translation of TrackedAttributeChoices

This commit is contained in:
WBHarry 2025-07-14 21:18:24 +02:00
parent a768b1dfdb
commit ad9a72d494
18 changed files with 410 additions and 91 deletions

View file

@ -0,0 +1,39 @@
.theme-light .autocomplete {
background-image: url('../assets/parchments/dh-parchment-dark.png');
}
.autocomplete {
padding: 2px;
border-width: 0 1px 1px 1px;
border-style: solid;
border-color: light-dark(@dark-blue, @beige);
border-radius: 6px;
color: light-dark(@beige, @dark);
background-image: url('../assets/parchments/dh-parchment-light.png');
z-index: 200;
.group {
font-weight: bold;
font-size: 14px;
padding-left: 8px;
}
div[role='option'] {
font-size: 14;
padding-left: 16px;
cursor: pointer;
display: flex;
&:hover {
background: light-dark(@beige-50, @dark-blue);
color: light-dark(@dark, @beige);
}
.matched {
font-weight: bold;
}
&.selected {
}
}
}

View file

@ -1 +1,2 @@
@import './tooltip/tooltip.less';
@import './autocomplete/autocomplete.less';