This commit is contained in:
stoyanvi 2017-02-08 15:51:07 +02:00
Родитель 1233394f87
Коммит 12ef742ae0
4 изменённых файлов: 13 добавлений и 2 удалений

Просмотреть файл

@ -97,7 +97,8 @@
}
.votes-count {
font-size: 13;
font-size: 12;
color: #9d9d9d;
}
.registered-label {

Просмотреть файл

@ -68,9 +68,16 @@
background-color: rgba(0, 0, 0, .35);
}
.event-organiser >>> .user-name,
.user-name,
.group {
color: #9d9d9d;
}
.event-list-separator {
border-width: 0;
border-bottom-width: 1;
border-color: #c8c7cc;
height: 1;
}

Просмотреть файл

@ -8,11 +8,14 @@
}
.group-name {
margin-bottom: 3;
color: #000;
}
.group-subtext {
text-transform: uppercase;
font-size: 12;
color: #9d9d9d;
}
.join-btn {

Просмотреть файл

@ -2,7 +2,7 @@
<StackLayout orientation="horizontal" *ngFor="let user of users; let ind = index">
<photo-picker *ngIf="user && showImage(ind)" class="user-image" [url]="user.ImageUrl" [type]="'user'" [small]="true" [noImageIcon]="'&#x6c;'"></photo-picker>
<Label *ngIf="user && showNames" class="user-name" [text]="user.DisplayName || user.Username"></Label>
<Label *ngIf="!user" text="Unknown User"></Label>
<Label *ngIf="!user" class="user-name" text="Unknown User"></Label>
</StackLayout>
<Label class="remaining-users" *ngIf="hasRemainingLabel()" [text]="getRemainingText()"></Label>
</WrapLayout>