mirror of
https://github.com/ansible/awx.git
synced 2026-04-04 17:55:06 -02:30
Merge pull request #6050 from gconsidine/fix/dropdown-text-truncation
Add dropdown li truncation with ellipsis
This commit is contained in:
@@ -343,7 +343,6 @@
|
|||||||
|
|
||||||
.select2-results__option{
|
.select2-results__option{
|
||||||
color: @field-label !important;
|
color: @field-label !important;
|
||||||
height: 30px!important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.select2-container--default .select2-results__option--highlighted[aria-selected]{
|
.select2-container--default .select2-results__option--highlighted[aria-selected]{
|
||||||
@@ -630,3 +629,15 @@ input[type='radio']:checked:before {
|
|||||||
.alert-info--noTextTransform {
|
.alert-info--noTextTransform {
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.select2-results__option {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.select2-results__option:hover {
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
white-space: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user