Project

General

Profile

« Previous | Next » 

Revision 58958

Fixed some small css issues and added a beta label to the logo

View differences:

countries-table.component.html
136 136
        <span *ngIf="isSortedBy && isSortedBy=='licence' && !isDescending"><img src="../../../assets/img/icons/sort-ascending.svg"></span>
137 137
        Licence
138 138
      </th>
139
      <th class="uk-text-center" width="20%" (click)="sortBy('gold')">
139
      <th *ngIf="entity==='publication'" class="uk-text-center" width="20%" (click)="sortBy('gold')">
140 140
        <span *ngIf="!isSortedBy || isSortedBy!='gold'" class="uk-margin-small-right"><img src="../../../assets/img/icons/sort.svg"></span>
141 141
        <span *ngIf="isSortedBy && isSortedBy=='gold' && isDescending"><img src="../../../assets/img/icons/sort-descending.svg"></span>
142 142
        <span *ngIf="isSortedBy && isSortedBy=='gold' && !isDescending"><img src="../../../assets/img/icons/sort-ascending.svg"></span>
143 143
        Gold
144 144
      </th>
145
      <th class="uk-text-center" width="20%" (click)="sortBy('green')">
145
      <th *ngIf="entity==='publication'" class="uk-text-center" width="20%" (click)="sortBy('green')">
146 146
        <span *ngIf="!isSortedBy || isSortedBy!='green'" class="uk-margin-small-right"><img src="../../../assets/img/icons/sort.svg"></span>
147 147
        <span *ngIf="isSortedBy && isSortedBy=='green' && isDescending"><img src="../../../assets/img/icons/sort-descending.svg"></span>
148 148
        <span *ngIf="isSortedBy && isSortedBy=='green' && !isDescending"><img src="../../../assets/img/icons/sort-ascending.svg"></span>
......
167 167
          <ng-container *ngIf="!isPercentage">{{countryOverview.licence.oa | number}}</ng-container>
168 168
        </ng-container>
169 169
      </td>
170
      <td class="uk-text-center">
170
      <td *ngIf="entity==='publication'" class="uk-text-center">
171 171
        <ng-container *ngIf="countryOverview.gold===null">--</ng-container>
172 172
        <ng-container *ngIf="countryOverview.gold!=null">
173 173
          <ng-container *ngIf="isPercentage">{{countryOverview.gold.percentage | number :'1.0-1'}}%</ng-container>
174 174
          <ng-container *ngIf="!isPercentage">{{countryOverview.gold.oa | number}}</ng-container>
175 175
        </ng-container>
176 176
      </td>
177
      <td class="uk-text-center">
177
      <td *ngIf="entity==='publication'" class="uk-text-center">
178 178
        <ng-container *ngIf="countryOverview.green===null">--</ng-container>
179 179
        <ng-container *ngIf="countryOverview.green!=null">
180 180
          <ng-container *ngIf="isPercentage">{{countryOverview.green.percentage | number :'1.0-1'}}%</ng-container>

Also available in: Unified diff