render the "no specified" item in choices as italic

This commit is contained in:
Julien Fastré 2019-12-13 10:14:06 +01:00
parent 199930d23a
commit 7d5ea38ea3
2 changed files with 6 additions and 0 deletions

View File

@ -97,3 +97,4 @@ Branch CRUD-Init
================
- create an api for rendering entities
- css: render the placeholder in expanded choice item as italic (the "no specified" choice")

View File

@ -25,6 +25,11 @@ label {
abbr {
display: none;
}
// mark the label for empty placeholder
&[for$="_placeholder"] {
font-style: italic;
}
}
.inline-choice {