mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
use proper triangle for multiselect dropdowns as well
This commit is contained in:
parent
59cf11c612
commit
a55f81e774
3 changed files with 4 additions and 2 deletions
|
|
@ -93,7 +93,8 @@ div.multiselect>span:first-child {
|
|||
|
||||
div.multiselect>span:last-child {
|
||||
position: absolute;
|
||||
right: 13px;
|
||||
right: 8px;
|
||||
top: 8px;
|
||||
}
|
||||
|
||||
ul.multiselectoptions input.new {
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@ select {
|
|||
appearance: none;
|
||||
background: url('../../core/img/actions/triangle-s.svg') no-repeat right 8px center rgba(240, 240, 240, 0.90);
|
||||
outline: 0;
|
||||
padding-right: 24px !important;
|
||||
}
|
||||
|
||||
select:hover {
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@
|
|||
settings.labels.push($(option).text().trim());
|
||||
}
|
||||
});
|
||||
var button=$('<div class="multiselect button"><span>'+settings.title+'</span><span>▾</span></div>');
|
||||
var button=$('<div class="multiselect button"><span>'+settings.title+'</span><span class="icon-triangle-s"></span></div>');
|
||||
var span=$('<span/>');
|
||||
span.append(button);
|
||||
button.data('id',multiSelectId);
|
||||
|
|
|
|||
Loading…
Reference in a new issue