forked from sakaiproject/sakai
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request sakaiproject#685 from whumph/SAK-29540
SAK-29540 Improve discoverability of To and BCC name lookup in Messages tool
- Loading branch information
Showing
11 changed files
with
463 additions
and
634 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/*Add pointer cursor to multi-select box when nothing is selected | ||
https://github.com/select2/select2/issues/167 | ||
*/ | ||
.select2-container--default .select2-selection--multiple:before { | ||
content: ' '; | ||
display: block; | ||
position: absolute; | ||
border-color: #888 transparent transparent transparent; | ||
border-style: solid;border-width: 5px 4px 0 4px; | ||
height: 0; | ||
right: 6px; | ||
margin-left: -4px; | ||
margin-top: -2px; | ||
top: 50%; | ||
width: 0; | ||
cursor: pointer | ||
} |
Oops, something went wrong.