Skip to content

Commit

Permalink
Merge pull request #1089 from nextcloud/fix-participants-text-not-sho…
Browse files Browse the repository at this point in the history
…wn-in-tab-header

Fix "Participants" text not shown in tab header
  • Loading branch information
Ivansss authored Jul 31, 2018
2 parents d5abbcc + a396191 commit fe64e04
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'));
Expand Down Expand Up @@ -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'));
Expand Down

0 comments on commit fe64e04

Please sign in to comment.