Merge pull request #1136 from nextcloud/fix-16041

Modified overflow in multiselector
This commit is contained in:
Joas Schilling 2016-08-29 15:57:33 +02:00 committed by GitHub
commit 402feb9e13
1 changed files with 2 additions and 0 deletions

View File

@ -42,6 +42,8 @@ ul.multiselectoptions > li input[type='checkbox']+label {
width: 100%; width: 100%;
padding: 5px 27px; padding: 5px 27px;
margin-left: -27px; /* to have area around checkbox clickable as well */ margin-left: -27px; /* to have area around checkbox clickable as well */
text-overflow: ellipsis;
overflow: hidden;
} }
ul.multiselectoptions > li input[type='checkbox']:checked+label { ul.multiselectoptions > li input[type='checkbox']:checked+label {
font-weight: bold; font-weight: bold;