mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-17 15:39:02 +01:00
Fixed translation of TrackedAttributeChoices
This commit is contained in:
parent
a768b1dfdb
commit
ad9a72d494
18 changed files with 410 additions and 91 deletions
39
styles/less/ux/autocomplete/autocomplete.less
Normal file
39
styles/less/ux/autocomplete/autocomplete.less
Normal 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 {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1 +1,2 @@
|
|||
@import './tooltip/tooltip.less';
|
||||
@import './autocomplete/autocomplete.less';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue