mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-27 12:48:49 +01:00
feat(forms): add example selects with valid styling (#286)
Add another card to the form inputs view displaying selects (single and multiple). Fix options styling. Related to issue #282
This commit is contained in:
parent
40aa2ed0ae
commit
fd09e652c8
6 changed files with 45 additions and 0 deletions
|
|
@ -58,6 +58,14 @@ select.form-control {
|
|||
padding-left: 8px;
|
||||
}
|
||||
|
||||
select.form-control:not([multiple]) option {
|
||||
color: $dropdown-text;
|
||||
}
|
||||
|
||||
select.form-control[multiple] option {
|
||||
color: $default-text;
|
||||
}
|
||||
|
||||
textarea.form-control {
|
||||
height: 96px;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue