Fix cosmetic issues

This commit is contained in:
Ben Goldsworthy 2020-10-17 18:39:59 +01:00
parent 93f8b9b53e
commit bca0e740ef
9 changed files with 31 additions and 12 deletions

View file

@ -1,6 +1,6 @@
<div class="animated fadeIn"> <div class="animated fadeIn">
<div class="row"> <div class="row">
<div class="col-lg-12"> <div class="col-lg-6 col-md-8">
<div class="card"> <div class="card">
<div class="card-header"> <div class="card-header">
<strong>Submit Transaction</strong> <strong>Submit Transaction</strong>
@ -21,7 +21,7 @@
<span class="input-group-addon"><i class="fa fa-gbp"></i></span> <span class="input-group-addon"><i class="fa fa-gbp"></i></span>
<input type="number" min="0.00" step="0.01" class="form-control" placeholder="0.00" [(ngModel)]="amount" (ngModelChange)="transactionFormValidate()"> <input type="number" min="0.00" step="0.01" class="form-control" placeholder="0.00" [(ngModel)]="amount" (ngModelChange)="transactionFormValidate()">
</div> </div>
<span class="help-block">Enter the amount spent, such as 5.35 for £5.35.</span> <span class="help-block">Enter the amount spent, such as &lsquo;5.35&rsquo; for &pound;5.35.</span>
</div> </div>
</div> </div>
@ -29,7 +29,7 @@
<label class="col-md-3 form-control-label" for="text-input">Essential Purchase</label> <label class="col-md-3 form-control-label" for="text-input">Essential Purchase</label>
<div class="col-md-9"> <div class="col-md-9">
<div class="input-group"> <div class="input-group">
<input type="checkbox" class="mr-auto" [(ngModel)]="essentialPurchase" (ngModelChange)="transactionFormValidate()"> <input type="checkbox" class="mr-1" [(ngModel)]="essentialPurchase" (ngModelChange)="transactionFormValidate()">
<span class="help-block">Tick if the purchase is deemed an essential purchase for budgeting purposes.</span> <span class="help-block">Tick if the purchase is deemed an essential purchase for budgeting purposes.</span>
</div> </div>
</div> </div>
@ -38,7 +38,7 @@
<label class="col-md-3 form-control-label" for="text-input">Recurring Purchase</label> <label class="col-md-3 form-control-label" for="text-input">Recurring Purchase</label>
<div class="col-md-9"> <div class="col-md-9">
<div class="input-group"> <div class="input-group">
<input type="checkbox" class="mr-auto" [(ngModel)]="recurringPurchase" (ngModelChange)="transactionFormValidate()"> <input type="checkbox" class="mr-1" [(ngModel)]="recurringPurchase" (ngModelChange)="transactionFormValidate()">
<span class="help-block">Tick if the purchase frequently recurs, such as monthly.</span> <span class="help-block">Tick if the purchase frequently recurs, such as monthly.</span>
</div> </div>
</div> </div>

View file

@ -1,6 +1,6 @@
<div class="animated fadeIn"> <div class="animated fadeIn">
<div class="row"> <div class="row">
<div class="col-lg-12"> <div class="col-lg-6 col-md-8">
<div class="card"> <div class="card">
<div class="card-header"> <div class="card-header">
<strong>Submit Transaction</strong> <strong>Submit Transaction</strong>

View file

@ -27,7 +27,7 @@
<table class="table table-striped table-hover"> <table class="table table-striped table-hover">
<thead> <thead>
<tr> <tr>
<th>Ward</th> <th>Type</th>
<th>Amount of Transactions</th> <th>Amount of Transactions</th>
<th>Sum of Transactions</th> <th>Sum of Transactions</th>
</tr> </tr>

View file

@ -1,6 +1,6 @@
<div class="animated fadeIn"> <div class="animated fadeIn">
<div class="row"> <div class="row">
<div class="col-lg-12"> <div class="col-lg-6 col-md-8">
<div class="card"> <div class="card">
<div class="card-header"> <div class="card-header">
<h4>Search Suppliers</h4> <h4>Search Suppliers</h4>
@ -20,7 +20,7 @@
</div> </div>
<div class="animated fadeIn"> <div class="animated fadeIn">
<div class="row"> <div class="row">
<div class="col-lg-12"> <div class="col-lg-6 col-md-8">
<div class="card"> <div class="card">
<div class="card-header"> <div class="card-header">
<h4>List of Suppliers</h4> <h4>List of Suppliers</h4>

View file

@ -11,6 +11,7 @@
position: relative; position: relative;
flex: 0 1 auto; flex: 0 1 auto;
margin-bottom: 0; margin-bottom: 0;
cursor: pointer;
// Bring the hover, focused, and "active" buttons to the fron to overlay // Bring the hover, focused, and "active" buttons to the fron to overlay
// the borders properly // the borders properly

View file

@ -32,11 +32,13 @@
@include box-shadow(none); @include box-shadow(none);
} }
:enabled {
&:active, &:active,
&.active { &.active {
background-image: none; background-image: none;
@include box-shadow($btn-focus-box-shadow, $btn-active-box-shadow); @include box-shadow($btn-focus-box-shadow, $btn-active-box-shadow);
} }
}
} }
// Future-proof disabling of clicks on `<a>` elements // Future-proof disabling of clicks on `<a>` elements

View file

@ -70,6 +70,10 @@
&:first-child { &:first-child {
@include border-radius($card-border-radius-inner $card-border-radius-inner 0 0); @include border-radius($card-border-radius-inner $card-border-radius-inner 0 0);
} }
small {
padding-left: 1em;
}
} }
.card-footer { .card-footer {

View file

@ -23,6 +23,16 @@
z-index: 3; z-index: 3;
} }
} }
input[type="radio"],
input[type="checkbox"] {
cursor: pointer;
}
}
.help-block {
font-size: 0.8em;
font-style: italic;
} }
.input-group-addon, .input-group-addon,

View file

@ -80,6 +80,8 @@
.table-hover { .table-hover {
tbody tr { tbody tr {
cursor: pointer;
@include hover { @include hover {
background-color: $table-bg-hover; background-color: $table-bg-hover;
} }