Browse Source
Merge pull request #1089 from nextcloud/fix-participants-text-not-shown-in-tab-header
Fix "Participants" text not shown in tab header
pull/1086/head
Ivan Sein
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
6 additions and
6 deletions
-
css/style.scss
-
js/app.js
|
|
|
@ -132,11 +132,11 @@ |
|
|
|
margin: 0 !important; |
|
|
|
} |
|
|
|
|
|
|
|
.icon-contacts-dark, |
|
|
|
.select2-result .icon-contacts-dark.avatar, |
|
|
|
.select2-result .icon-add.avatar, |
|
|
|
#app-navigation .icon-contacts-dark, |
|
|
|
#app-navigation .app-navigation-entry-link .icon-public, |
|
|
|
.icon-add { |
|
|
|
background-color: transparent !important; |
|
|
|
color: transparent !important; |
|
|
|
#app-navigation .icon-add { |
|
|
|
border-radius: 0; |
|
|
|
width: 32px; |
|
|
|
height: 32px; |
|
|
|
|
|
|
|
@ -133,7 +133,7 @@ |
|
|
|
}); |
|
|
|
|
|
|
|
$('#select-participants').on("click", function() { |
|
|
|
$('.select2-drop').find('.avatar').each(function () { |
|
|
|
$('.select2-drop').find('.avatar[data-user]').each(function () { |
|
|
|
var element = $(this); |
|
|
|
if (element.data('user-display-name')) { |
|
|
|
element.avatar(element.data('user'), 32, undefined, false, undefined, element.data('user-display-name')); |
|
|
|
@ -164,7 +164,7 @@ |
|
|
|
}.bind(this)); |
|
|
|
|
|
|
|
$('#select-participants').on("select2-loaded", function() { |
|
|
|
$('.select2-drop').find('.avatar').each(function () { |
|
|
|
$('.select2-drop').find('.avatar[data-user]').each(function () { |
|
|
|
var element = $(this); |
|
|
|
if (element.data('user-display-name')) { |
|
|
|
element.avatar(element.data('user'), 32, undefined, false, undefined, element.data('user-display-name')); |
|
|
|
|