Commit 0c1b6635 authored by Pieterjan Vanhoof's avatar Pieterjan Vanhoof Committed by GitHub

Merge pull request #69 from stratisproject/ui

Add Breeze button style, remove bootstrap class
parents ba11de86 c6aa2b69
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
<div *ngIf="formErrors.password" class="alert alert-danger">{{formErrors.password}}</div> <div *ngIf="formErrors.password" class="alert alert-danger">{{formErrors.password}}</div>
</div> </div>
<div class="form-group"> <div class="form-group">
<button type="submit" [disabled]="!openWalletForm.valid" class="btn btn-success">Decrypt</button> <button type="submit" [disabled]="!openWalletForm.valid" class="btn">Decrypt</button>
</div> </div>
</form> </form>
</div> </div>
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
</div> </div>
<div class="row"> <div class="row">
<div class="col"> <div class="col">
<button type="button" (click)="onCreateClicked()" class="btn btn-success">Create or restore wallet</button> <button type="button" (click)="onCreateClicked()" class="btn">Create or restore wallet</button>
</div> </div>
</div> </div>
</div> </div>
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
</select> </select>
</div> </div>
<div class="form-group"> <div class="form-group">
<button type="submit" [disabled]="!createWalletForm.valid" class="btn btn-success">Create Wallet</button> <button type="submit" [disabled]="!createWalletForm.valid" class="btn">Create Wallet</button>
</div> </div>
</form> </form>
</div> </div>
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
</div> </div>
<div class="row"> <div class="row">
<div class="col"> <div class="col">
<button type="button" class="btn btn-success" (click)="onBackClicked()">Back</button> <button type="button" class="btn" (click)="onBackClicked()">Back</button>
</div> </div>
</div> </div>
</div> </div>
...@@ -39,10 +39,10 @@ ...@@ -39,10 +39,10 @@
<material-datepicker [(date)]="creationDate"></material-datepicker> <material-datepicker [(date)]="creationDate"></material-datepicker>
</div> </div>
<div class="form-group"> <div class="form-group">
<button type="submit" [disabled]="!recoverWalletForm.valid" class="btn btn-success">Recover Wallet</button> <button type="submit" [disabled]="!recoverWalletForm.valid" class="btn">Recover Wallet</button>
</div> </div>
<div class="form-group"> <div class="form-group">
<button type="button" class="btn btn-success" (click)="onBackClicked()">Back</button> <button type="button" class="btn" (click)="onBackClicked()">Back</button>
</div> </div>
</form> </form>
</div> </div>
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
</thead> </thead>
<tr> <tr>
<td>{{ address }}</td> <td>{{ address }}</td>
<td><button class="btn" type="button" ngxClipboard [cbContent]="address" (cbOnSuccess)="isCopied1=true" [class.btn-success]= "isCopied1">Copy</button> <td><button class="btn" type="button" ngxClipboard [cbContent]="address" (cbOnSuccess)="isCopied1=true" [class.btn]= "isCopied1">Copy</button>
</tr> </tr>
</table> </table>
</div> </div>
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
<input class="form-control" formControlName="password" type="password" placeholder="Please enter your wallet password."> <input class="form-control" formControlName="password" type="password" placeholder="Please enter your wallet password.">
<div *ngIf="formErrors.password" class="alert alert-danger">{{formErrors.password}}</div> <div *ngIf="formErrors.password" class="alert alert-danger">{{formErrors.password}}</div>
</div> </div>
<button type="submit" [disabled]="!sendForm.valid" class="btn btn-success">Send</button> <button type="submit" [disabled]="!sendForm.valid" class="btn">Send</button>
<button type="button" class="btn" (click)="activeModal.close('Close click')">Close</button> <button type="button" class="btn" (click)="activeModal.close('Close click')">Close</button>
</form> </form>
</div> </div>
......
...@@ -25,6 +25,13 @@ td { ...@@ -25,6 +25,13 @@ td {
float: none; float: none;
} }
.btn {
font-family: "Lato Black";
color: white;
background-color: #20B9FF;
border-radius: 25px;
}
.row { .row {
padding: 0; padding: 0;
margin: 0; margin: 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment