Changed table CSS
This commit is contained in:
parent
12b799423a
commit
a661ceba02
3 changed files with 9 additions and 2 deletions
|
@ -7,7 +7,7 @@
|
||||||
<small>This lists all purchases that have been submitted.</small>
|
<small>This lists all purchases that have been submitted.</small>
|
||||||
</div>
|
</div>
|
||||||
<div *ngIf="!noTransactionList" class="card-block">
|
<div *ngIf="!noTransactionList" class="card-block">
|
||||||
<table class="table table-hover">
|
<table class="table table-striped table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Seller</th>
|
<th>Seller</th>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<label class="col-md-3 form-control-label" for="text-input"><strong>Organisation Search Results</strong></label>
|
<label class="col-md-3 form-control-label" for="text-input"><strong>Organisation Search Results</strong></label>
|
||||||
<div class="col-md-9">
|
<div class="col-md-9">
|
||||||
<span class="help-block"><strong>Select an Organisation from the table below</strong></span>
|
<span class="help-block"><strong>Select an Organisation from the table below</strong></span>
|
||||||
<table class="table table-hover">
|
<table class="table table-striped table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Organisation Name</th>
|
<th>Organisation Name</th>
|
||||||
|
|
|
@ -2,6 +2,13 @@
|
||||||
.clickable {
|
.clickable {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.table-striped tbody tr:nth-of-type(odd) {
|
||||||
|
background-color: #d2eef7;
|
||||||
|
}
|
||||||
|
.table-hover tbody tr:hover td {
|
||||||
|
background-color: $table-bg-hover;
|
||||||
|
}
|
||||||
// white title font variant on type-2 as defined in _widgets.css
|
// white title font variant on type-2 as defined in _widgets.css
|
||||||
.horizontal-bars {
|
.horizontal-bars {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
Reference in a new issue