Commit f28a4114 authored by Michal Čihař's avatar Michal Čihař

Use font awesome instead of png icon

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 5607ab5b
...@@ -746,9 +746,14 @@ $(function () { ...@@ -746,9 +746,14 @@ $(function () {
titleFormat: "MM yyyy" titleFormat: "MM yyyy"
}; };
/* Override all multiple selects */ /* Override all multiple selects, use font awesome for exchange icon */
$('select[multiple]').each(function () { $('select[multiple]').each(function () {
$(this).multiSelect({ $(this).multiSelect({
afterInit: function (target) {
$(target.children()[0]).after(
'<div class="fa-multiselect"><i class="fa fa-exchange"></i></div>'
);
}
}); });
}); });
}); });
...@@ -242,3 +242,13 @@ img.engage-icon { ...@@ -242,3 +242,13 @@ img.engage-icon {
.fa-wl-social { .fa-wl-social {
padding: 7px; padding: 7px;
} }
.ms-container{
background: none !important;
}
.fa-multiselect {
height: 200px;
line-height: 200px;
float: left;
vertical-align: middle;
padding-left: 10px;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment