Project

General

Profile

« Previous | Next » 

Revision 58397

made some css changes in registration wizard and the registration forms

View differences:

register-datasource-select-existing.component.html
16 16
      </div>
17 17
      <div class="uk-margin-medium-top">
18 18
        <div class="md-input-wrapper md-input-filled">
19
          <label class="">Select repository's country</label>
19
          <label style="top: -16px;" class="">Select country</label>
20 20
          <select class="md-input" (change)="getReposInCountry($event.target.value)">
21 21
            <option value="" disabled>-- none selected --</option>
22 22
            <option *ngFor="let country of countries; let i = index" value="{{ i }}">{{ country.name ? country.name :
......
25 25
          </select>
26 26
          <span class="md-input-bar"></span>
27 27
        </div>
28
        <div class="md-input-wrapper uk-margin-top">
29
          <label class="">Start typing in the name of your repository to narrow down the view</label>
30
          <input #searchInput id="searchInput" class="md-input" type="text"
31
                 [disabled]="(!hasSelectedCountry)" (keyup)="searchTerm($event)"/>
32
          <span class="md-input-bar"></span>
33
        </div>
28

  
34 29
      </div>
35 30
      <div *ngIf="selectedCountry">
36 31
        <div>
......
47 42
        <div class="uk-alert uk-alert-warning" *ngIf="noRepositories">{{ noRepositories }}</div>
48 43
        <div class="radioButtonForm" *ngIf="countryRepos && !loadingMessage">
49 44

  
45

  
46
          <div class="md-input-wrapper md-input-filled uk-margin-medium-top uk-margin-bottom">
47
            <label class="">Name of repository</label>
48
            <input #searchInput id="searchInput" class="md-input" type="text"
49
                   [disabled]="(!hasSelectedCountry)" (keyup)="searchTerm($event)"/>
50
            <span class="md-input-bar"></span>
51
          </div>
52

  
53

  
50 54
          <div class="form-group"
51 55
               *ngFor="let repo of countryRepos | repoFilter: searchBox">
52 56
            <label for="{{ repo.id }}"

Also available in: Unified diff